More Info
Private Name Tags
ContractCreator
TokenTracker
Sponsored
Latest 25 from a total of 1,949 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 89984383 | 12 days ago | IN | 0 FTM | 0.00021071 | ||||
Set Approval For... | 89788710 | 14 days ago | IN | 0 FTM | 0.00015803 | ||||
Set Approval For... | 85842265 | 53 days ago | IN | 0 FTM | 0.00039508 | ||||
Safe Transfer Fr... | 80505055 | 125 days ago | IN | 0 FTM | 0.00228237 | ||||
Set Approval For... | 80104957 | 133 days ago | IN | 0 FTM | 0.00018437 | ||||
Approve | 80102397 | 133 days ago | IN | 0 FTM | 0.00031218 | ||||
Approve | 78831062 | 155 days ago | IN | 0 FTM | 0.00813257 | ||||
Set Approval For... | 78829329 | 155 days ago | IN | 0 FTM | 0.00632136 | ||||
Set Approval For... | 78829042 | 155 days ago | IN | 0 FTM | 0.00632136 | ||||
Set Approval For... | 78689384 | 157 days ago | IN | 0 FTM | 0.00052678 | ||||
Approve | 78570519 | 160 days ago | IN | 0 FTM | 0.00359756 | ||||
Set Approval For... | 78468676 | 162 days ago | IN | 0 FTM | 0.00292362 | ||||
Approve | 78148911 | 166 days ago | IN | 0 FTM | 0.00243227 | ||||
Approve | 77694402 | 172 days ago | IN | 0 FTM | 0.00534508 | ||||
Set Approval For... | 77689988 | 172 days ago | IN | 0 FTM | 0.00671644 | ||||
Approve | 77406537 | 176 days ago | IN | 0 FTM | 0.00541339 | ||||
Approve | 77013447 | 183 days ago | IN | 0 FTM | 0.0016558 | ||||
Approve | 76857013 | 185 days ago | IN | 0 FTM | 0.00402285 | ||||
Set Approval For... | 76178049 | 197 days ago | IN | 0 FTM | 0.00059164 | ||||
Approve | 73839110 | 244 days ago | IN | 0 FTM | 0.00201873 | ||||
Approve | 73554088 | 250 days ago | IN | 0 FTM | 0.00169911 | ||||
Approve | 73159883 | 257 days ago | IN | 0 FTM | 0.00221425 | ||||
Transfer From | 73096311 | 258 days ago | IN | 0 FTM | 0.00541266 | ||||
Set Approval For... | 72306154 | 273 days ago | IN | 0 FTM | 0.00395868 | ||||
Set Approval For... | 72306137 | 273 days ago | IN | 0 FTM | 0.0039688 |
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
24007595 | 1008 days ago | 1,190 FTM | ||||
24007015 | 1008 days ago | 3,010 FTM | ||||
24001532 | 1008 days ago | 2,590 FTM | ||||
23994908 | 1008 days ago | 2,310 FTM | ||||
23990589 | 1008 days ago | 2,345 FTM | ||||
23981425 | 1008 days ago | 2,450 FTM | ||||
23953633 | 1008 days ago | 3,745 FTM | ||||
23923716 | 1009 days ago | 350 FTM | ||||
23922206 | 1009 days ago | 1,085 FTM | ||||
23919311 | 1009 days ago | 1,015 FTM | ||||
23916367 | 1009 days ago | 455 FTM | ||||
23913853 | 1009 days ago | 735 FTM | ||||
23910402 | 1009 days ago | 735 FTM | ||||
23909957 | 1009 days ago | 525 FTM | ||||
23908452 | 1009 days ago | 525 FTM | ||||
23906126 | 1009 days ago | 455 FTM | ||||
23904836 | 1009 days ago | 735 FTM | ||||
23904006 | 1009 days ago | 980 FTM | ||||
23903179 | 1009 days ago | 455 FTM | ||||
23901715 | 1009 days ago | 735 FTM | ||||
23900623 | 1009 days ago | 1,155 FTM | ||||
23899432 | 1009 days ago | 525 FTM | ||||
23899101 | 1009 days ago | 1,120 FTM | ||||
23898746 | 1009 days ago | 980 FTM | ||||
23898402 | 1009 days ago | 1,050 FTM |
Loading...
Loading
Contract Name:
BabyChimpGang
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at ftmscan.com on 2021-12-03 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; 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); } } } } pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { 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 {} } pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // pragma solidity ^0.8.0; /** * @dev ERC721 token with storage based token URI management. */ abstract contract ERC721URIStorage is ERC721 { using Strings for uint256; // Optional mapping for token URIs mapping(uint256 => string) private _tokenURIs; /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token"); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = _baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } return super.tokenURI(tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual override { super._burn(tokenId); if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } } } // pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; } pragma solidity ^0.8.0; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role, _msgSender()); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } function _grantRole(bytes32 role, address account) private { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } function _revokeRole(bytes32 role, address account) private { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } } pragma solidity ^0.8.0; /** * @title ERC721 Burnable Token * @dev ERC721 Token that can be irreversibly burned (destroyed). */ abstract contract ERC721Burnable is Context, ERC721 { /** * @dev Burns `tokenId`. See {ERC721-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved"); _burn(tokenId); } } pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } pragma solidity ^0.8.2; // set contract name contract BabyChimpGang is ERC721, ERC721Enumerable, ERC721URIStorage, Pausable, AccessControl, ERC721Burnable { using Counters for Counters.Counter; bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE"); bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); Counters.Counter private _tokenIdCounter; bool private mintable = false; uint256 public constant MAX_CHIMPS = 1112; //set 1112 uint256 public constant MINT_PRICE = 35 ether; //set 35 constructor() ERC721("BabyChimpGang", "BCG") { //set name _setupRole(DEFAULT_ADMIN_ROLE, msg.sender); _setupRole(PAUSER_ROLE, msg.sender); _setupRole(MINTER_ROLE, msg.sender); } function _baseURI() internal pure override returns (string memory) { //ToDo set folder jsons return "ipfs://QmdSxQuzgDf3Bo7hgW4V41at1N11dfdjoo2fiV7CsjLPFp/"; } function tokensOfOwner(address _owner) external view returns (uint256[] memory) { uint256 tokenCount = balanceOf(_owner); if (tokenCount == 0) { // Return an empty array return new uint256[](0); } uint256[] memory result = new uint256[](tokenCount); uint256 index; for (index = 0; index < tokenCount; index++) { result[index] = tokenOfOwnerByIndex(_owner, index); } return result; } function pause() public onlyRole(PAUSER_ROLE) { _pause(); } function unpause() public onlyRole(PAUSER_ROLE) { _unpause(); } function safeMint(address to,string memory tokenURI_) public onlyRole(MINTER_ROLE) { require(_tokenIdCounter.current() < MAX_CHIMPS, 'All the BabyChimps are minted.'); _safeMint(to, _tokenIdCounter.current()); _setTokenURI(_tokenIdCounter.current(), tokenURI_); _tokenIdCounter.increment(); } function MintChimp() public payable { require(mintable, 'BabyChimps are not mintable yet.'); require(_tokenIdCounter.current() < MAX_CHIMPS, 'All the BabyChimps are minted.'); require(msg.value >= MINT_PRICE, 'Not the right payment.'); _safeMint(msg.sender, _tokenIdCounter.current()); _tokenIdCounter.increment(); } function MintThreeChimps() public payable { require(mintable, 'BabyChimps are not mintable yet.'); require(_tokenIdCounter.current() + 2 < MAX_CHIMPS, 'All the BabyChimps are minted.'); require(msg.value >= MINT_PRICE * 3, 'Not the right payment.'); uint256 index; for (index = 0; index < 3; index++) { _safeMint(msg.sender, _tokenIdCounter.current()); _tokenIdCounter.increment(); } } function MintFiveChimps() public payable { require(mintable, 'BabyChimps are not mintable yet.'); require(_tokenIdCounter.current() + 4 < MAX_CHIMPS, 'All the BabyChimps are minted.'); require(msg.value >= MINT_PRICE * 5, 'Not the right payment.'); uint256 index; for (index = 0; index < 5; index++) { _safeMint(msg.sender, _tokenIdCounter.current()); _tokenIdCounter.increment(); } } ///Set the mintable state function enableMinting() public onlyRole(PAUSER_ROLE) { mintable = true; } function disableMinting() public onlyRole(PAUSER_ROLE) { mintable = false; } function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal whenNotPaused override(ERC721, ERC721Enumerable) { super._beforeTokenTransfer(from, to, tokenId); } // The following functions are overrides required by Solidity. function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) { super._burn(tokenId); } function tokenURI(uint256 tokenId) public view override(ERC721, ERC721URIStorage) returns (string memory) { return super.tokenURI(tokenId); } function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable, AccessControl) returns (bool) { return super.supportsInterface(interfaceId); } //withdraw functions function withdraw() public onlyRole(PAUSER_ROLE) { payable(msg.sender).transfer(address(this).balance); } function backup_withdraw() public onlyRole(DEFAULT_ADMIN_ROLE) { payable(msg.sender).transfer(address(this).balance); } }
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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_CHIMPS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MintChimp","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"MintFiveChimps","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"MintThreeChimps","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":[],"name":"backup_withdraw","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":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"string","name":"tokenURI_","type":"string"}],"name":"safeMint","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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600e60006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b506040518060400160405280600d81526020017f426162794368696d7047616e67000000000000000000000000000000000000008152506040518060400160405280600381526020017f42434700000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000b1929190620002e2565b508060019080519060200190620000ca929190620002e2565b5050506000600b60006101000a81548160ff021916908315150217905550620000fd6000801b336200016760201b60201c565b6200012f7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a336200016760201b60201c565b620001617f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6336200016760201b60201c565b620003f7565b6200017982826200017d60201b60201c565b5050565b6200018f82826200026f60201b60201c565b6200026b576001600c600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062000210620002da60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000600c600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b828054620002f09062000392565b90600052602060002090601f01602090048101928262000314576000855562000360565b82601f106200032f57805160ff191683800117855562000360565b8280016001018555821562000360579182015b828111156200035f57825182559160200191906001019062000342565b5b5090506200036f919062000373565b5090565b5b808211156200038e57600081600090555060010162000374565b5090565b60006002820490506001821680620003ab57607f821691505b60208210811415620003c257620003c1620003c8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61516280620004076000396000f3fe6080604052600436106102305760003560e01c80636352211e1161012e578063b88d4fde116100ab578063d547741f1161006f578063d547741f146107c6578063e27f0f62146107ef578063e63ab1e91461081a578063e797ec1b14610845578063e985e9c51461085c57610230565b8063b88d4fde146106e1578063c002d23d1461070a578063c87b56dd14610735578063d204c45e14610772578063d53913931461079b57610230565b806391d14854116100f257806391d148541461061b57806395d89b4114610658578063a217fddf14610683578063a22cb465146106ae578063b4f10171146106d757610230565b80636352211e1461053657806370a08231146105735780637e5cd5c1146105b05780638456cb59146105c75780638462151c146105de57610230565b806336568abe116101bc5780634682ed3f116101805780634682ed3f146104a35780634f661b9d146104ba5780634f6ccce7146104c45780635c975abb146105015780635d992f661461052c57610230565b806336568abe146103fa5780633ccfd60b146104235780633f4ba83a1461043a57806342842e0e1461045157806342966c681461047a57610230565b806318160ddd1161020357806318160ddd1461030357806323b872dd1461032e578063248a9ca3146103575780632f2ff15d146103945780632f745c59146103bd57610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613a0a565b610899565b60405161026991906140b0565b60405180910390f35b34801561027e57600080fd5b506102876108ab565b60405161029491906140e6565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf9190613a64565b61093d565b6040516102d19190614027565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc919061395d565b6109c2565b005b34801561030f57600080fd5b50610318610ada565b6040516103259190614448565b60405180910390f35b34801561033a57600080fd5b50610355600480360381019061035091906137eb565b610ae7565b005b34801561036357600080fd5b5061037e6004803603810190610379919061399d565b610b47565b60405161038b91906140cb565b60405180910390f35b3480156103a057600080fd5b506103bb60048036038101906103b691906139ca565b610b67565b005b3480156103c957600080fd5b506103e460048036038101906103df919061395d565b610b90565b6040516103f19190614448565b60405180910390f35b34801561040657600080fd5b50610421600480360381019061041c91906139ca565b610c35565b005b34801561042f57600080fd5b50610438610cb8565b005b34801561044657600080fd5b5061044f610d34565b005b34801561045d57600080fd5b50610478600480360381019061047391906137eb565b610d71565b005b34801561048657600080fd5b506104a1600480360381019061049c9190613a64565b610d91565b005b3480156104af57600080fd5b506104b8610ded565b005b6104c2610e4c565b005b3480156104d057600080fd5b506104eb60048036038101906104e69190613a64565b610f8b565b6040516104f89190614448565b60405180910390f35b34801561050d57600080fd5b50610516610ffc565b60405161052391906140b0565b60405180910390f35b610534611013565b005b34801561054257600080fd5b5061055d60048036038101906105589190613a64565b61111a565b60405161056a9190614027565b60405180910390f35b34801561057f57600080fd5b5061059a6004803603810190610595919061377e565b6111cc565b6040516105a79190614448565b60405180910390f35b3480156105bc57600080fd5b506105c5611284565b005b3480156105d357600080fd5b506105dc6112d4565b005b3480156105ea57600080fd5b506106056004803603810190610600919061377e565b611311565b604051610612919061408e565b60405180910390f35b34801561062757600080fd5b50610642600480360381019061063d91906139ca565b61141b565b60405161064f91906140b0565b60405180910390f35b34801561066457600080fd5b5061066d611486565b60405161067a91906140e6565b60405180910390f35b34801561068f57600080fd5b50610698611518565b6040516106a591906140cb565b60405180910390f35b3480156106ba57600080fd5b506106d560048036038101906106d091906138c1565b61151f565b005b6106df6116a0565b005b3480156106ed57600080fd5b506107086004803603810190610703919061383e565b6117df565b005b34801561071657600080fd5b5061071f611841565b60405161072c9190614448565b60405180910390f35b34801561074157600080fd5b5061075c60048036038101906107579190613a64565b61184e565b60405161076991906140e6565b60405180910390f35b34801561077e57600080fd5b5061079960048036038101906107949190613901565b611860565b005b3480156107a757600080fd5b506107b0611914565b6040516107bd91906140cb565b60405180910390f35b3480156107d257600080fd5b506107ed60048036038101906107e891906139ca565b611938565b005b3480156107fb57600080fd5b50610804611961565b6040516108119190614448565b60405180910390f35b34801561082657600080fd5b5061082f611967565b60405161083c91906140cb565b60405180910390f35b34801561085157600080fd5b5061085a61198b565b005b34801561086857600080fd5b50610883600480360381019061087e91906137ab565b6119db565b60405161089091906140b0565b60405180910390f35b60006108a482611a6f565b9050919050565b6060600080546108ba90614765565b80601f01602080910402602001604051908101604052809291908181526020018280546108e690614765565b80156109335780601f1061090857610100808354040283529160200191610933565b820191906000526020600020905b81548152906001019060200180831161091657829003601f168201915b5050505050905090565b600061094882611ae9565b610987576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097e90614328565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109cd8261111a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a35906143a8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a5d611b55565b73ffffffffffffffffffffffffffffffffffffffff161480610a8c5750610a8b81610a86611b55565b6119db565b5b610acb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac290614228565b60405180910390fd5b610ad58383611b5d565b505050565b6000600880549050905090565b610af8610af2611b55565b82611c16565b610b37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2e906143c8565b60405180910390fd5b610b42838383611cf4565b505050565b6000600c6000838152602001908152602001600020600101549050919050565b610b7082610b47565b610b8181610b7c611b55565b611f50565b610b8b8383611fed565b505050565b6000610b9b836111cc565b8210610bdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd390614148565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610c3d611b55565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610caa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca190614428565b60405180910390fd5b610cb482826120ce565b5050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610cea81610ce5611b55565b611f50565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610d30573d6000803e3d6000fd5b5050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610d6681610d61611b55565b611f50565b610d6e6121b0565b50565b610d8c838383604051806020016040528060008152506117df565b505050565b610da2610d9c611b55565b82611c16565b610de1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd890614408565b60405180910390fd5b610dea81612252565b50565b6000801b610e0281610dfd611b55565b611f50565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610e48573d6000803e3d6000fd5b5050565b600e60009054906101000a900460ff16610e9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e92906142c8565b60405180910390fd5b6104586002610eaa600d61225e565b610eb49190614566565b10610ef4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eeb906142a8565b60405180910390fd5b60036801e5b8fa8fe2ac0000610f0a91906145ed565b341015610f4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4390614388565b60405180910390fd5b60005b6003811015610f8857610f6b33610f66600d61225e565b61226c565b610f75600d61228a565b8080610f80906147c8565b915050610f4f565b50565b6000610f95610ada565b8210610fd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcd906143e8565b60405180910390fd5b60088281548110610fea57610fe96148fe565b5b90600052602060002001549050919050565b6000600b60009054906101000a900460ff16905090565b600e60009054906101000a900460ff16611062576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611059906142c8565b60405180910390fd5b61045861106f600d61225e565b106110af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a6906142a8565b60405180910390fd5b6801e5b8fa8fe2ac00003410156110fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f290614388565b60405180910390fd5b61110e33611109600d61225e565b61226c565b611118600d61228a565b565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ba90614268565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561123d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123490614248565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a6112b6816112b1611b55565b611f50565b6000600e60006101000a81548160ff02191690831515021790555050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a61130681611301611b55565b611f50565b61130e6122a0565b50565b6060600061131e836111cc565b9050600081141561137b57600067ffffffffffffffff8111156113445761134361492d565b5b6040519080825280602002602001820160405280156113725781602001602082028036833780820191505090505b50915050611416565b60008167ffffffffffffffff8111156113975761139661492d565b5b6040519080825280602002602001820160405280156113c55781602001602082028036833780820191505090505b50905060005b8281101561140f576113dd8582610b90565b8282815181106113f0576113ef6148fe565b5b6020026020010181815250508080611407906147c8565b9150506113cb565b8193505050505b919050565b6000600c600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60606001805461149590614765565b80601f01602080910402602001604051908101604052809291908181526020018280546114c190614765565b801561150e5780601f106114e35761010080835404028352916020019161150e565b820191906000526020600020905b8154815290600101906020018083116114f157829003601f168201915b5050505050905090565b6000801b81565b611527611b55565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611595576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158c906141c8565b60405180910390fd5b80600560006115a2611b55565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661164f611b55565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161169491906140b0565b60405180910390a35050565b600e60009054906101000a900460ff166116ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e6906142c8565b60405180910390fd5b61045860046116fe600d61225e565b6117089190614566565b10611748576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173f906142a8565b60405180910390fd5b60056801e5b8fa8fe2ac000061175e91906145ed565b3410156117a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179790614388565b60405180910390fd5b60005b60058110156117dc576117bf336117ba600d61225e565b61226c565b6117c9600d61228a565b80806117d4906147c8565b9150506117a3565b50565b6117f06117ea611b55565b83611c16565b61182f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611826906143c8565b60405180910390fd5b61183b84848484612343565b50505050565b6801e5b8fa8fe2ac000081565b60606118598261239f565b9050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66118928161188d611b55565b611f50565b61045861189f600d61225e565b106118df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d6906142a8565b60405180910390fd5b6118f2836118ed600d61225e565b61226c565b6119056118ff600d61225e565b836124f1565b61190f600d61228a565b505050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61194182610b47565b6119528161194d611b55565b611f50565b61195c83836120ce565b505050565b61045881565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a6119bd816119b8611b55565b611f50565b6001600e60006101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611ae25750611ae182612565565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611bd08361111a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611c2182611ae9565b611c60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c57906141e8565b60405180910390fd5b6000611c6b8361111a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611cda57508373ffffffffffffffffffffffffffffffffffffffff16611cc28461093d565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ceb5750611cea81856119db565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611d148261111a565b73ffffffffffffffffffffffffffffffffffffffff1614611d6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6190614348565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd1906141a8565b60405180910390fd5b611de58383836125df565b611df0600082611b5d565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e409190614647565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e979190614566565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611f5a828261141b565b611fe957611f7f8173ffffffffffffffffffffffffffffffffffffffff166014612637565b611f8d8360001c6020612637565b604051602001611f9e929190613fed565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe091906140e6565b60405180910390fd5b5050565b611ff7828261141b565b6120ca576001600c600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061206f611b55565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6120d8828261141b565b156121ac576000600c600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612151611b55565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6121b8610ffc565b6121f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ee90614128565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61223b611b55565b6040516122489190614027565b60405180910390a1565b61225b81612873565b50565b600081600001549050919050565b6122868282604051806020016040528060008152506128c6565b5050565b6001816000016000828254019250508190555050565b6122a8610ffc565b156122e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122df90614208565b60405180910390fd5b6001600b60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861232c611b55565b6040516123399190614027565b60405180910390a1565b61234e848484611cf4565b61235a84848484612921565b612399576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239090614168565b60405180910390fd5b50505050565b60606123aa82611ae9565b6123e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e090614308565b60405180910390fd5b6000600a6000848152602001908152602001600020805461240990614765565b80601f016020809104026020016040519081016040528092919081815260200182805461243590614765565b80156124825780601f1061245757610100808354040283529160200191612482565b820191906000526020600020905b81548152906001019060200180831161246557829003601f168201915b505050505090506000612493612ab8565b90506000815114156124a95781925050506124ec565b6000825111156124de5780826040516020016124c6929190613fc9565b604051602081830303815290604052925050506124ec565b6124e784612ad8565b925050505b919050565b6124fa82611ae9565b612539576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253090614288565b60405180910390fd5b80600a6000848152602001908152602001600020908051906020019061256092919061353d565b505050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806125d857506125d782612b7f565b5b9050919050565b6125e7610ffc565b15612627576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261e90614208565b60405180910390fd5b612632838383612c61565b505050565b60606000600283600261264a91906145ed565b6126549190614566565b67ffffffffffffffff81111561266d5761266c61492d565b5b6040519080825280601f01601f19166020018201604052801561269f5781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106126d7576126d66148fe565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061273b5761273a6148fe565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600261277b91906145ed565b6127859190614566565b90505b6001811115612825577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106127c7576127c66148fe565b5b1a60f81b8282815181106127de576127dd6148fe565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061281e9061473b565b9050612788565b5060008414612869576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286090614108565b60405180910390fd5b8091505092915050565b61287c81612d75565b6000600a6000838152602001908152602001600020805461289c90614765565b9050146128c357600a600082815260200190815260200160002060006128c291906135c3565b5b50565b6128d08383612e86565b6128dd6000848484612921565b61291c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291390614168565b60405180910390fd5b505050565b60006129428473ffffffffffffffffffffffffffffffffffffffff16613054565b15612aab578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261296b611b55565b8786866040518563ffffffff1660e01b815260040161298d9493929190614042565b602060405180830381600087803b1580156129a757600080fd5b505af19250505080156129d857506040513d601f19601f820116820180604052508101906129d59190613a37565b60015b612a5b573d8060008114612a08576040519150601f19603f3d011682016040523d82523d6000602084013e612a0d565b606091505b50600081511415612a53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4a90614168565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ab0565b600190505b949350505050565b60606040518060600160405280603681526020016150f760369139905090565b6060612ae382611ae9565b612b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1990614368565b60405180910390fd5b6000612b2c612ab8565b90506000815111612b4c5760405180602001604052806000815250612b77565b80612b5684613067565b604051602001612b67929190613fc9565b6040516020818303038152906040525b915050919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612c4a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612c5a5750612c59826131c8565b5b9050919050565b612c6c838383613232565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612caf57612caa81613237565b612cee565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612ced57612cec8382613280565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d3157612d2c816133ed565b612d70565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612d6f57612d6e82826134be565b5b5b505050565b6000612d808261111a565b9050612d8e816000846125df565b612d99600083611b5d565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612de99190614647565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ef6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eed906142e8565b60405180910390fd5b612eff81611ae9565b15612f3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3690614188565b60405180910390fd5b612f4b600083836125df565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f9b9190614566565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b606060008214156130af576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506131c3565b600082905060005b600082146130e15780806130ca906147c8565b915050600a826130da91906145bc565b91506130b7565b60008167ffffffffffffffff8111156130fd576130fc61492d565b5b6040519080825280601f01601f19166020018201604052801561312f5781602001600182028036833780820191505090505b5090505b600085146131bc576001826131489190614647565b9150600a856131579190614811565b60306131639190614566565b60f81b818381518110613179576131786148fe565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856131b591906145bc565b9450613133565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161328d846111cc565b6132979190614647565b905060006007600084815260200190815260200160002054905081811461337c576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506134019190614647565b9050600060096000848152602001908152602001600020549050600060088381548110613431576134306148fe565b5b906000526020600020015490508060088381548110613453576134526148fe565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806134a2576134a16148cf565b5b6001900381819060005260206000200160009055905550505050565b60006134c9836111cc565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b82805461354990614765565b90600052602060002090601f01602090048101928261356b57600085556135b2565b82601f1061358457805160ff19168380011785556135b2565b828001600101855582156135b2579182015b828111156135b1578251825591602001919060010190613596565b5b5090506135bf9190613603565b5090565b5080546135cf90614765565b6000825580601f106135e15750613600565b601f0160209004906000526020600020908101906135ff9190613603565b5b50565b5b8082111561361c576000816000905550600101613604565b5090565b600061363361362e84614488565b614463565b90508281526020810184848401111561364f5761364e614961565b5b61365a8482856146f9565b509392505050565b6000613675613670846144b9565b614463565b90508281526020810184848401111561369157613690614961565b5b61369c8482856146f9565b509392505050565b6000813590506136b381615083565b92915050565b6000813590506136c88161509a565b92915050565b6000813590506136dd816150b1565b92915050565b6000813590506136f2816150c8565b92915050565b600081519050613707816150c8565b92915050565b600082601f8301126137225761372161495c565b5b8135613732848260208601613620565b91505092915050565b600082601f8301126137505761374f61495c565b5b8135613760848260208601613662565b91505092915050565b600081359050613778816150df565b92915050565b6000602082840312156137945761379361496b565b5b60006137a2848285016136a4565b91505092915050565b600080604083850312156137c2576137c161496b565b5b60006137d0858286016136a4565b92505060206137e1858286016136a4565b9150509250929050565b6000806000606084860312156138045761380361496b565b5b6000613812868287016136a4565b9350506020613823868287016136a4565b925050604061383486828701613769565b9150509250925092565b600080600080608085870312156138585761385761496b565b5b6000613866878288016136a4565b9450506020613877878288016136a4565b935050604061388887828801613769565b925050606085013567ffffffffffffffff8111156138a9576138a8614966565b5b6138b58782880161370d565b91505092959194509250565b600080604083850312156138d8576138d761496b565b5b60006138e6858286016136a4565b92505060206138f7858286016136b9565b9150509250929050565b600080604083850312156139185761391761496b565b5b6000613926858286016136a4565b925050602083013567ffffffffffffffff81111561394757613946614966565b5b6139538582860161373b565b9150509250929050565b600080604083850312156139745761397361496b565b5b6000613982858286016136a4565b925050602061399385828601613769565b9150509250929050565b6000602082840312156139b3576139b261496b565b5b60006139c1848285016136ce565b91505092915050565b600080604083850312156139e1576139e061496b565b5b60006139ef858286016136ce565b9250506020613a00858286016136a4565b9150509250929050565b600060208284031215613a2057613a1f61496b565b5b6000613a2e848285016136e3565b91505092915050565b600060208284031215613a4d57613a4c61496b565b5b6000613a5b848285016136f8565b91505092915050565b600060208284031215613a7a57613a7961496b565b5b6000613a8884828501613769565b91505092915050565b6000613a9d8383613fab565b60208301905092915050565b613ab28161467b565b82525050565b6000613ac3826144fa565b613acd8185614528565b9350613ad8836144ea565b8060005b83811015613b09578151613af08882613a91565b9750613afb8361451b565b925050600181019050613adc565b5085935050505092915050565b613b1f8161468d565b82525050565b613b2e81614699565b82525050565b6000613b3f82614505565b613b498185614539565b9350613b59818560208601614708565b613b6281614970565b840191505092915050565b6000613b7882614510565b613b82818561454a565b9350613b92818560208601614708565b613b9b81614970565b840191505092915050565b6000613bb182614510565b613bbb818561455b565b9350613bcb818560208601614708565b80840191505092915050565b6000613be460208361454a565b9150613bef82614981565b602082019050919050565b6000613c0760148361454a565b9150613c12826149aa565b602082019050919050565b6000613c2a602b8361454a565b9150613c35826149d3565b604082019050919050565b6000613c4d60328361454a565b9150613c5882614a22565b604082019050919050565b6000613c70601c8361454a565b9150613c7b82614a71565b602082019050919050565b6000613c9360248361454a565b9150613c9e82614a9a565b604082019050919050565b6000613cb660198361454a565b9150613cc182614ae9565b602082019050919050565b6000613cd9602c8361454a565b9150613ce482614b12565b604082019050919050565b6000613cfc60108361454a565b9150613d0782614b61565b602082019050919050565b6000613d1f60388361454a565b9150613d2a82614b8a565b604082019050919050565b6000613d42602a8361454a565b9150613d4d82614bd9565b604082019050919050565b6000613d6560298361454a565b9150613d7082614c28565b604082019050919050565b6000613d88602e8361454a565b9150613d9382614c77565b604082019050919050565b6000613dab601e8361454a565b9150613db682614cc6565b602082019050919050565b6000613dce60208361454a565b9150613dd982614cef565b602082019050919050565b6000613df160208361454a565b9150613dfc82614d18565b602082019050919050565b6000613e1460318361454a565b9150613e1f82614d41565b604082019050919050565b6000613e37602c8361454a565b9150613e4282614d90565b604082019050919050565b6000613e5a60298361454a565b9150613e6582614ddf565b604082019050919050565b6000613e7d602f8361454a565b9150613e8882614e2e565b604082019050919050565b6000613ea060168361454a565b9150613eab82614e7d565b602082019050919050565b6000613ec360218361454a565b9150613ece82614ea6565b604082019050919050565b6000613ee660318361454a565b9150613ef182614ef5565b604082019050919050565b6000613f09602c8361454a565b9150613f1482614f44565b604082019050919050565b6000613f2c60178361455b565b9150613f3782614f93565b601782019050919050565b6000613f4f60308361454a565b9150613f5a82614fbc565b604082019050919050565b6000613f7260118361455b565b9150613f7d8261500b565b601182019050919050565b6000613f95602f8361454a565b9150613fa082615034565b604082019050919050565b613fb4816146ef565b82525050565b613fc3816146ef565b82525050565b6000613fd58285613ba6565b9150613fe18284613ba6565b91508190509392505050565b6000613ff882613f1f565b91506140048285613ba6565b915061400f82613f65565b915061401b8284613ba6565b91508190509392505050565b600060208201905061403c6000830184613aa9565b92915050565b60006080820190506140576000830187613aa9565b6140646020830186613aa9565b6140716040830185613fba565b81810360608301526140838184613b34565b905095945050505050565b600060208201905081810360008301526140a88184613ab8565b905092915050565b60006020820190506140c56000830184613b16565b92915050565b60006020820190506140e06000830184613b25565b92915050565b600060208201905081810360008301526141008184613b6d565b905092915050565b6000602082019050818103600083015261412181613bd7565b9050919050565b6000602082019050818103600083015261414181613bfa565b9050919050565b6000602082019050818103600083015261416181613c1d565b9050919050565b6000602082019050818103600083015261418181613c40565b9050919050565b600060208201905081810360008301526141a181613c63565b9050919050565b600060208201905081810360008301526141c181613c86565b9050919050565b600060208201905081810360008301526141e181613ca9565b9050919050565b6000602082019050818103600083015261420181613ccc565b9050919050565b6000602082019050818103600083015261422181613cef565b9050919050565b6000602082019050818103600083015261424181613d12565b9050919050565b6000602082019050818103600083015261426181613d35565b9050919050565b6000602082019050818103600083015261428181613d58565b9050919050565b600060208201905081810360008301526142a181613d7b565b9050919050565b600060208201905081810360008301526142c181613d9e565b9050919050565b600060208201905081810360008301526142e181613dc1565b9050919050565b6000602082019050818103600083015261430181613de4565b9050919050565b6000602082019050818103600083015261432181613e07565b9050919050565b6000602082019050818103600083015261434181613e2a565b9050919050565b6000602082019050818103600083015261436181613e4d565b9050919050565b6000602082019050818103600083015261438181613e70565b9050919050565b600060208201905081810360008301526143a181613e93565b9050919050565b600060208201905081810360008301526143c181613eb6565b9050919050565b600060208201905081810360008301526143e181613ed9565b9050919050565b6000602082019050818103600083015261440181613efc565b9050919050565b6000602082019050818103600083015261442181613f42565b9050919050565b6000602082019050818103600083015261444181613f88565b9050919050565b600060208201905061445d6000830184613fba565b92915050565b600061446d61447e565b90506144798282614797565b919050565b6000604051905090565b600067ffffffffffffffff8211156144a3576144a261492d565b5b6144ac82614970565b9050602081019050919050565b600067ffffffffffffffff8211156144d4576144d361492d565b5b6144dd82614970565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614571826146ef565b915061457c836146ef565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156145b1576145b0614842565b5b828201905092915050565b60006145c7826146ef565b91506145d2836146ef565b9250826145e2576145e1614871565b5b828204905092915050565b60006145f8826146ef565b9150614603836146ef565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561463c5761463b614842565b5b828202905092915050565b6000614652826146ef565b915061465d836146ef565b9250828210156146705761466f614842565b5b828203905092915050565b6000614686826146cf565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561472657808201518184015260208101905061470b565b83811115614735576000848401525b50505050565b6000614746826146ef565b9150600082141561475a57614759614842565b5b600182039050919050565b6000600282049050600182168061477d57607f821691505b60208210811415614791576147906148a0565b5b50919050565b6147a082614970565b810181811067ffffffffffffffff821117156147bf576147be61492d565b5b80604052505050565b60006147d3826146ef565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561480657614805614842565b5b600182019050919050565b600061481c826146ef565b9150614827836146ef565b92508261483757614836614871565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f416c6c2074686520426162794368696d707320617265206d696e7465642e0000600082015250565b7f426162794368696d707320617265206e6f74206d696e7461626c65207965742e600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4e6f7420746865207269676874207061796d656e742e00000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b61508c8161467b565b811461509757600080fd5b50565b6150a38161468d565b81146150ae57600080fd5b50565b6150ba81614699565b81146150c557600080fd5b50565b6150d1816146a3565b81146150dc57600080fd5b50565b6150e8816146ef565b81146150f357600080fd5b5056fe697066733a2f2f516d64537851757a67446633426f37686757345634316174314e31316466646a6f6f326669563743736a4c5046702fa2646970667358221220048fc7c59e5629a4f916bdbe108b49d03c90fc8aaace48c610d9591ed51adf5764736f6c63430008070033
Deployed Bytecode
0x6080604052600436106102305760003560e01c80636352211e1161012e578063b88d4fde116100ab578063d547741f1161006f578063d547741f146107c6578063e27f0f62146107ef578063e63ab1e91461081a578063e797ec1b14610845578063e985e9c51461085c57610230565b8063b88d4fde146106e1578063c002d23d1461070a578063c87b56dd14610735578063d204c45e14610772578063d53913931461079b57610230565b806391d14854116100f257806391d148541461061b57806395d89b4114610658578063a217fddf14610683578063a22cb465146106ae578063b4f10171146106d757610230565b80636352211e1461053657806370a08231146105735780637e5cd5c1146105b05780638456cb59146105c75780638462151c146105de57610230565b806336568abe116101bc5780634682ed3f116101805780634682ed3f146104a35780634f661b9d146104ba5780634f6ccce7146104c45780635c975abb146105015780635d992f661461052c57610230565b806336568abe146103fa5780633ccfd60b146104235780633f4ba83a1461043a57806342842e0e1461045157806342966c681461047a57610230565b806318160ddd1161020357806318160ddd1461030357806323b872dd1461032e578063248a9ca3146103575780632f2ff15d146103945780632f745c59146103bd57610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613a0a565b610899565b60405161026991906140b0565b60405180910390f35b34801561027e57600080fd5b506102876108ab565b60405161029491906140e6565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf9190613a64565b61093d565b6040516102d19190614027565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc919061395d565b6109c2565b005b34801561030f57600080fd5b50610318610ada565b6040516103259190614448565b60405180910390f35b34801561033a57600080fd5b50610355600480360381019061035091906137eb565b610ae7565b005b34801561036357600080fd5b5061037e6004803603810190610379919061399d565b610b47565b60405161038b91906140cb565b60405180910390f35b3480156103a057600080fd5b506103bb60048036038101906103b691906139ca565b610b67565b005b3480156103c957600080fd5b506103e460048036038101906103df919061395d565b610b90565b6040516103f19190614448565b60405180910390f35b34801561040657600080fd5b50610421600480360381019061041c91906139ca565b610c35565b005b34801561042f57600080fd5b50610438610cb8565b005b34801561044657600080fd5b5061044f610d34565b005b34801561045d57600080fd5b50610478600480360381019061047391906137eb565b610d71565b005b34801561048657600080fd5b506104a1600480360381019061049c9190613a64565b610d91565b005b3480156104af57600080fd5b506104b8610ded565b005b6104c2610e4c565b005b3480156104d057600080fd5b506104eb60048036038101906104e69190613a64565b610f8b565b6040516104f89190614448565b60405180910390f35b34801561050d57600080fd5b50610516610ffc565b60405161052391906140b0565b60405180910390f35b610534611013565b005b34801561054257600080fd5b5061055d60048036038101906105589190613a64565b61111a565b60405161056a9190614027565b60405180910390f35b34801561057f57600080fd5b5061059a6004803603810190610595919061377e565b6111cc565b6040516105a79190614448565b60405180910390f35b3480156105bc57600080fd5b506105c5611284565b005b3480156105d357600080fd5b506105dc6112d4565b005b3480156105ea57600080fd5b506106056004803603810190610600919061377e565b611311565b604051610612919061408e565b60405180910390f35b34801561062757600080fd5b50610642600480360381019061063d91906139ca565b61141b565b60405161064f91906140b0565b60405180910390f35b34801561066457600080fd5b5061066d611486565b60405161067a91906140e6565b60405180910390f35b34801561068f57600080fd5b50610698611518565b6040516106a591906140cb565b60405180910390f35b3480156106ba57600080fd5b506106d560048036038101906106d091906138c1565b61151f565b005b6106df6116a0565b005b3480156106ed57600080fd5b506107086004803603810190610703919061383e565b6117df565b005b34801561071657600080fd5b5061071f611841565b60405161072c9190614448565b60405180910390f35b34801561074157600080fd5b5061075c60048036038101906107579190613a64565b61184e565b60405161076991906140e6565b60405180910390f35b34801561077e57600080fd5b5061079960048036038101906107949190613901565b611860565b005b3480156107a757600080fd5b506107b0611914565b6040516107bd91906140cb565b60405180910390f35b3480156107d257600080fd5b506107ed60048036038101906107e891906139ca565b611938565b005b3480156107fb57600080fd5b50610804611961565b6040516108119190614448565b60405180910390f35b34801561082657600080fd5b5061082f611967565b60405161083c91906140cb565b60405180910390f35b34801561085157600080fd5b5061085a61198b565b005b34801561086857600080fd5b50610883600480360381019061087e91906137ab565b6119db565b60405161089091906140b0565b60405180910390f35b60006108a482611a6f565b9050919050565b6060600080546108ba90614765565b80601f01602080910402602001604051908101604052809291908181526020018280546108e690614765565b80156109335780601f1061090857610100808354040283529160200191610933565b820191906000526020600020905b81548152906001019060200180831161091657829003601f168201915b5050505050905090565b600061094882611ae9565b610987576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097e90614328565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109cd8261111a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a35906143a8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a5d611b55565b73ffffffffffffffffffffffffffffffffffffffff161480610a8c5750610a8b81610a86611b55565b6119db565b5b610acb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac290614228565b60405180910390fd5b610ad58383611b5d565b505050565b6000600880549050905090565b610af8610af2611b55565b82611c16565b610b37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2e906143c8565b60405180910390fd5b610b42838383611cf4565b505050565b6000600c6000838152602001908152602001600020600101549050919050565b610b7082610b47565b610b8181610b7c611b55565b611f50565b610b8b8383611fed565b505050565b6000610b9b836111cc565b8210610bdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd390614148565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610c3d611b55565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610caa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca190614428565b60405180910390fd5b610cb482826120ce565b5050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610cea81610ce5611b55565b611f50565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610d30573d6000803e3d6000fd5b5050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610d6681610d61611b55565b611f50565b610d6e6121b0565b50565b610d8c838383604051806020016040528060008152506117df565b505050565b610da2610d9c611b55565b82611c16565b610de1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd890614408565b60405180910390fd5b610dea81612252565b50565b6000801b610e0281610dfd611b55565b611f50565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610e48573d6000803e3d6000fd5b5050565b600e60009054906101000a900460ff16610e9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e92906142c8565b60405180910390fd5b6104586002610eaa600d61225e565b610eb49190614566565b10610ef4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eeb906142a8565b60405180910390fd5b60036801e5b8fa8fe2ac0000610f0a91906145ed565b341015610f4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4390614388565b60405180910390fd5b60005b6003811015610f8857610f6b33610f66600d61225e565b61226c565b610f75600d61228a565b8080610f80906147c8565b915050610f4f565b50565b6000610f95610ada565b8210610fd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcd906143e8565b60405180910390fd5b60088281548110610fea57610fe96148fe565b5b90600052602060002001549050919050565b6000600b60009054906101000a900460ff16905090565b600e60009054906101000a900460ff16611062576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611059906142c8565b60405180910390fd5b61045861106f600d61225e565b106110af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a6906142a8565b60405180910390fd5b6801e5b8fa8fe2ac00003410156110fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f290614388565b60405180910390fd5b61110e33611109600d61225e565b61226c565b611118600d61228a565b565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ba90614268565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561123d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123490614248565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a6112b6816112b1611b55565b611f50565b6000600e60006101000a81548160ff02191690831515021790555050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a61130681611301611b55565b611f50565b61130e6122a0565b50565b6060600061131e836111cc565b9050600081141561137b57600067ffffffffffffffff8111156113445761134361492d565b5b6040519080825280602002602001820160405280156113725781602001602082028036833780820191505090505b50915050611416565b60008167ffffffffffffffff8111156113975761139661492d565b5b6040519080825280602002602001820160405280156113c55781602001602082028036833780820191505090505b50905060005b8281101561140f576113dd8582610b90565b8282815181106113f0576113ef6148fe565b5b6020026020010181815250508080611407906147c8565b9150506113cb565b8193505050505b919050565b6000600c600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60606001805461149590614765565b80601f01602080910402602001604051908101604052809291908181526020018280546114c190614765565b801561150e5780601f106114e35761010080835404028352916020019161150e565b820191906000526020600020905b8154815290600101906020018083116114f157829003601f168201915b5050505050905090565b6000801b81565b611527611b55565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611595576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158c906141c8565b60405180910390fd5b80600560006115a2611b55565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661164f611b55565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161169491906140b0565b60405180910390a35050565b600e60009054906101000a900460ff166116ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e6906142c8565b60405180910390fd5b61045860046116fe600d61225e565b6117089190614566565b10611748576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173f906142a8565b60405180910390fd5b60056801e5b8fa8fe2ac000061175e91906145ed565b3410156117a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179790614388565b60405180910390fd5b60005b60058110156117dc576117bf336117ba600d61225e565b61226c565b6117c9600d61228a565b80806117d4906147c8565b9150506117a3565b50565b6117f06117ea611b55565b83611c16565b61182f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611826906143c8565b60405180910390fd5b61183b84848484612343565b50505050565b6801e5b8fa8fe2ac000081565b60606118598261239f565b9050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66118928161188d611b55565b611f50565b61045861189f600d61225e565b106118df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d6906142a8565b60405180910390fd5b6118f2836118ed600d61225e565b61226c565b6119056118ff600d61225e565b836124f1565b61190f600d61228a565b505050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61194182610b47565b6119528161194d611b55565b611f50565b61195c83836120ce565b505050565b61045881565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a6119bd816119b8611b55565b611f50565b6001600e60006101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611ae25750611ae182612565565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611bd08361111a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611c2182611ae9565b611c60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c57906141e8565b60405180910390fd5b6000611c6b8361111a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611cda57508373ffffffffffffffffffffffffffffffffffffffff16611cc28461093d565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ceb5750611cea81856119db565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611d148261111a565b73ffffffffffffffffffffffffffffffffffffffff1614611d6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6190614348565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd1906141a8565b60405180910390fd5b611de58383836125df565b611df0600082611b5d565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e409190614647565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e979190614566565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611f5a828261141b565b611fe957611f7f8173ffffffffffffffffffffffffffffffffffffffff166014612637565b611f8d8360001c6020612637565b604051602001611f9e929190613fed565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe091906140e6565b60405180910390fd5b5050565b611ff7828261141b565b6120ca576001600c600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061206f611b55565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6120d8828261141b565b156121ac576000600c600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612151611b55565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6121b8610ffc565b6121f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ee90614128565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61223b611b55565b6040516122489190614027565b60405180910390a1565b61225b81612873565b50565b600081600001549050919050565b6122868282604051806020016040528060008152506128c6565b5050565b6001816000016000828254019250508190555050565b6122a8610ffc565b156122e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122df90614208565b60405180910390fd5b6001600b60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861232c611b55565b6040516123399190614027565b60405180910390a1565b61234e848484611cf4565b61235a84848484612921565b612399576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239090614168565b60405180910390fd5b50505050565b60606123aa82611ae9565b6123e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e090614308565b60405180910390fd5b6000600a6000848152602001908152602001600020805461240990614765565b80601f016020809104026020016040519081016040528092919081815260200182805461243590614765565b80156124825780601f1061245757610100808354040283529160200191612482565b820191906000526020600020905b81548152906001019060200180831161246557829003601f168201915b505050505090506000612493612ab8565b90506000815114156124a95781925050506124ec565b6000825111156124de5780826040516020016124c6929190613fc9565b604051602081830303815290604052925050506124ec565b6124e784612ad8565b925050505b919050565b6124fa82611ae9565b612539576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253090614288565b60405180910390fd5b80600a6000848152602001908152602001600020908051906020019061256092919061353d565b505050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806125d857506125d782612b7f565b5b9050919050565b6125e7610ffc565b15612627576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261e90614208565b60405180910390fd5b612632838383612c61565b505050565b60606000600283600261264a91906145ed565b6126549190614566565b67ffffffffffffffff81111561266d5761266c61492d565b5b6040519080825280601f01601f19166020018201604052801561269f5781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106126d7576126d66148fe565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061273b5761273a6148fe565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600261277b91906145ed565b6127859190614566565b90505b6001811115612825577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106127c7576127c66148fe565b5b1a60f81b8282815181106127de576127dd6148fe565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061281e9061473b565b9050612788565b5060008414612869576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286090614108565b60405180910390fd5b8091505092915050565b61287c81612d75565b6000600a6000838152602001908152602001600020805461289c90614765565b9050146128c357600a600082815260200190815260200160002060006128c291906135c3565b5b50565b6128d08383612e86565b6128dd6000848484612921565b61291c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291390614168565b60405180910390fd5b505050565b60006129428473ffffffffffffffffffffffffffffffffffffffff16613054565b15612aab578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261296b611b55565b8786866040518563ffffffff1660e01b815260040161298d9493929190614042565b602060405180830381600087803b1580156129a757600080fd5b505af19250505080156129d857506040513d601f19601f820116820180604052508101906129d59190613a37565b60015b612a5b573d8060008114612a08576040519150601f19603f3d011682016040523d82523d6000602084013e612a0d565b606091505b50600081511415612a53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4a90614168565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ab0565b600190505b949350505050565b60606040518060600160405280603681526020016150f760369139905090565b6060612ae382611ae9565b612b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1990614368565b60405180910390fd5b6000612b2c612ab8565b90506000815111612b4c5760405180602001604052806000815250612b77565b80612b5684613067565b604051602001612b67929190613fc9565b6040516020818303038152906040525b915050919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612c4a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612c5a5750612c59826131c8565b5b9050919050565b612c6c838383613232565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612caf57612caa81613237565b612cee565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612ced57612cec8382613280565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d3157612d2c816133ed565b612d70565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612d6f57612d6e82826134be565b5b5b505050565b6000612d808261111a565b9050612d8e816000846125df565b612d99600083611b5d565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612de99190614647565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ef6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eed906142e8565b60405180910390fd5b612eff81611ae9565b15612f3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3690614188565b60405180910390fd5b612f4b600083836125df565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f9b9190614566565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b606060008214156130af576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506131c3565b600082905060005b600082146130e15780806130ca906147c8565b915050600a826130da91906145bc565b91506130b7565b60008167ffffffffffffffff8111156130fd576130fc61492d565b5b6040519080825280601f01601f19166020018201604052801561312f5781602001600182028036833780820191505090505b5090505b600085146131bc576001826131489190614647565b9150600a856131579190614811565b60306131639190614566565b60f81b818381518110613179576131786148fe565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856131b591906145bc565b9450613133565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161328d846111cc565b6132979190614647565b905060006007600084815260200190815260200160002054905081811461337c576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506134019190614647565b9050600060096000848152602001908152602001600020549050600060088381548110613431576134306148fe565b5b906000526020600020015490508060088381548110613453576134526148fe565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806134a2576134a16148cf565b5b6001900381819060005260206000200160009055905550505050565b60006134c9836111cc565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b82805461354990614765565b90600052602060002090601f01602090048101928261356b57600085556135b2565b82601f1061358457805160ff19168380011785556135b2565b828001600101855582156135b2579182015b828111156135b1578251825591602001919060010190613596565b5b5090506135bf9190613603565b5090565b5080546135cf90614765565b6000825580601f106135e15750613600565b601f0160209004906000526020600020908101906135ff9190613603565b5b50565b5b8082111561361c576000816000905550600101613604565b5090565b600061363361362e84614488565b614463565b90508281526020810184848401111561364f5761364e614961565b5b61365a8482856146f9565b509392505050565b6000613675613670846144b9565b614463565b90508281526020810184848401111561369157613690614961565b5b61369c8482856146f9565b509392505050565b6000813590506136b381615083565b92915050565b6000813590506136c88161509a565b92915050565b6000813590506136dd816150b1565b92915050565b6000813590506136f2816150c8565b92915050565b600081519050613707816150c8565b92915050565b600082601f8301126137225761372161495c565b5b8135613732848260208601613620565b91505092915050565b600082601f8301126137505761374f61495c565b5b8135613760848260208601613662565b91505092915050565b600081359050613778816150df565b92915050565b6000602082840312156137945761379361496b565b5b60006137a2848285016136a4565b91505092915050565b600080604083850312156137c2576137c161496b565b5b60006137d0858286016136a4565b92505060206137e1858286016136a4565b9150509250929050565b6000806000606084860312156138045761380361496b565b5b6000613812868287016136a4565b9350506020613823868287016136a4565b925050604061383486828701613769565b9150509250925092565b600080600080608085870312156138585761385761496b565b5b6000613866878288016136a4565b9450506020613877878288016136a4565b935050604061388887828801613769565b925050606085013567ffffffffffffffff8111156138a9576138a8614966565b5b6138b58782880161370d565b91505092959194509250565b600080604083850312156138d8576138d761496b565b5b60006138e6858286016136a4565b92505060206138f7858286016136b9565b9150509250929050565b600080604083850312156139185761391761496b565b5b6000613926858286016136a4565b925050602083013567ffffffffffffffff81111561394757613946614966565b5b6139538582860161373b565b9150509250929050565b600080604083850312156139745761397361496b565b5b6000613982858286016136a4565b925050602061399385828601613769565b9150509250929050565b6000602082840312156139b3576139b261496b565b5b60006139c1848285016136ce565b91505092915050565b600080604083850312156139e1576139e061496b565b5b60006139ef858286016136ce565b9250506020613a00858286016136a4565b9150509250929050565b600060208284031215613a2057613a1f61496b565b5b6000613a2e848285016136e3565b91505092915050565b600060208284031215613a4d57613a4c61496b565b5b6000613a5b848285016136f8565b91505092915050565b600060208284031215613a7a57613a7961496b565b5b6000613a8884828501613769565b91505092915050565b6000613a9d8383613fab565b60208301905092915050565b613ab28161467b565b82525050565b6000613ac3826144fa565b613acd8185614528565b9350613ad8836144ea565b8060005b83811015613b09578151613af08882613a91565b9750613afb8361451b565b925050600181019050613adc565b5085935050505092915050565b613b1f8161468d565b82525050565b613b2e81614699565b82525050565b6000613b3f82614505565b613b498185614539565b9350613b59818560208601614708565b613b6281614970565b840191505092915050565b6000613b7882614510565b613b82818561454a565b9350613b92818560208601614708565b613b9b81614970565b840191505092915050565b6000613bb182614510565b613bbb818561455b565b9350613bcb818560208601614708565b80840191505092915050565b6000613be460208361454a565b9150613bef82614981565b602082019050919050565b6000613c0760148361454a565b9150613c12826149aa565b602082019050919050565b6000613c2a602b8361454a565b9150613c35826149d3565b604082019050919050565b6000613c4d60328361454a565b9150613c5882614a22565b604082019050919050565b6000613c70601c8361454a565b9150613c7b82614a71565b602082019050919050565b6000613c9360248361454a565b9150613c9e82614a9a565b604082019050919050565b6000613cb660198361454a565b9150613cc182614ae9565b602082019050919050565b6000613cd9602c8361454a565b9150613ce482614b12565b604082019050919050565b6000613cfc60108361454a565b9150613d0782614b61565b602082019050919050565b6000613d1f60388361454a565b9150613d2a82614b8a565b604082019050919050565b6000613d42602a8361454a565b9150613d4d82614bd9565b604082019050919050565b6000613d6560298361454a565b9150613d7082614c28565b604082019050919050565b6000613d88602e8361454a565b9150613d9382614c77565b604082019050919050565b6000613dab601e8361454a565b9150613db682614cc6565b602082019050919050565b6000613dce60208361454a565b9150613dd982614cef565b602082019050919050565b6000613df160208361454a565b9150613dfc82614d18565b602082019050919050565b6000613e1460318361454a565b9150613e1f82614d41565b604082019050919050565b6000613e37602c8361454a565b9150613e4282614d90565b604082019050919050565b6000613e5a60298361454a565b9150613e6582614ddf565b604082019050919050565b6000613e7d602f8361454a565b9150613e8882614e2e565b604082019050919050565b6000613ea060168361454a565b9150613eab82614e7d565b602082019050919050565b6000613ec360218361454a565b9150613ece82614ea6565b604082019050919050565b6000613ee660318361454a565b9150613ef182614ef5565b604082019050919050565b6000613f09602c8361454a565b9150613f1482614f44565b604082019050919050565b6000613f2c60178361455b565b9150613f3782614f93565b601782019050919050565b6000613f4f60308361454a565b9150613f5a82614fbc565b604082019050919050565b6000613f7260118361455b565b9150613f7d8261500b565b601182019050919050565b6000613f95602f8361454a565b9150613fa082615034565b604082019050919050565b613fb4816146ef565b82525050565b613fc3816146ef565b82525050565b6000613fd58285613ba6565b9150613fe18284613ba6565b91508190509392505050565b6000613ff882613f1f565b91506140048285613ba6565b915061400f82613f65565b915061401b8284613ba6565b91508190509392505050565b600060208201905061403c6000830184613aa9565b92915050565b60006080820190506140576000830187613aa9565b6140646020830186613aa9565b6140716040830185613fba565b81810360608301526140838184613b34565b905095945050505050565b600060208201905081810360008301526140a88184613ab8565b905092915050565b60006020820190506140c56000830184613b16565b92915050565b60006020820190506140e06000830184613b25565b92915050565b600060208201905081810360008301526141008184613b6d565b905092915050565b6000602082019050818103600083015261412181613bd7565b9050919050565b6000602082019050818103600083015261414181613bfa565b9050919050565b6000602082019050818103600083015261416181613c1d565b9050919050565b6000602082019050818103600083015261418181613c40565b9050919050565b600060208201905081810360008301526141a181613c63565b9050919050565b600060208201905081810360008301526141c181613c86565b9050919050565b600060208201905081810360008301526141e181613ca9565b9050919050565b6000602082019050818103600083015261420181613ccc565b9050919050565b6000602082019050818103600083015261422181613cef565b9050919050565b6000602082019050818103600083015261424181613d12565b9050919050565b6000602082019050818103600083015261426181613d35565b9050919050565b6000602082019050818103600083015261428181613d58565b9050919050565b600060208201905081810360008301526142a181613d7b565b9050919050565b600060208201905081810360008301526142c181613d9e565b9050919050565b600060208201905081810360008301526142e181613dc1565b9050919050565b6000602082019050818103600083015261430181613de4565b9050919050565b6000602082019050818103600083015261432181613e07565b9050919050565b6000602082019050818103600083015261434181613e2a565b9050919050565b6000602082019050818103600083015261436181613e4d565b9050919050565b6000602082019050818103600083015261438181613e70565b9050919050565b600060208201905081810360008301526143a181613e93565b9050919050565b600060208201905081810360008301526143c181613eb6565b9050919050565b600060208201905081810360008301526143e181613ed9565b9050919050565b6000602082019050818103600083015261440181613efc565b9050919050565b6000602082019050818103600083015261442181613f42565b9050919050565b6000602082019050818103600083015261444181613f88565b9050919050565b600060208201905061445d6000830184613fba565b92915050565b600061446d61447e565b90506144798282614797565b919050565b6000604051905090565b600067ffffffffffffffff8211156144a3576144a261492d565b5b6144ac82614970565b9050602081019050919050565b600067ffffffffffffffff8211156144d4576144d361492d565b5b6144dd82614970565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614571826146ef565b915061457c836146ef565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156145b1576145b0614842565b5b828201905092915050565b60006145c7826146ef565b91506145d2836146ef565b9250826145e2576145e1614871565b5b828204905092915050565b60006145f8826146ef565b9150614603836146ef565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561463c5761463b614842565b5b828202905092915050565b6000614652826146ef565b915061465d836146ef565b9250828210156146705761466f614842565b5b828203905092915050565b6000614686826146cf565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561472657808201518184015260208101905061470b565b83811115614735576000848401525b50505050565b6000614746826146ef565b9150600082141561475a57614759614842565b5b600182039050919050565b6000600282049050600182168061477d57607f821691505b60208210811415614791576147906148a0565b5b50919050565b6147a082614970565b810181811067ffffffffffffffff821117156147bf576147be61492d565b5b80604052505050565b60006147d3826146ef565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561480657614805614842565b5b600182019050919050565b600061481c826146ef565b9150614827836146ef565b92508261483757614836614871565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f416c6c2074686520426162794368696d707320617265206d696e7465642e0000600082015250565b7f426162794368696d707320617265206e6f74206d696e7461626c65207965742e600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4e6f7420746865207269676874207061796d656e742e00000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b61508c8161467b565b811461509757600080fd5b50565b6150a38161468d565b81146150ae57600080fd5b50565b6150ba81614699565b81146150c557600080fd5b50565b6150d1816146a3565b81146150dc57600080fd5b50565b6150e8816146ef565b81146150f357600080fd5b5056fe697066733a2f2f516d64537851757a67446633426f37686757345634316174314e31316466646a6f6f326669563743736a4c5046702fa2646970667358221220048fc7c59e5629a4f916bdbe108b49d03c90fc8aaace48c610d9591ed51adf5764736f6c63430008070033
Deployed Bytecode Sourcemap
56186:4635:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60297:227;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21028:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22587:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22110:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34604:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23477:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50943:123;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51328:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34272:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52376:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60558:119;;;;;;;;;;;;;:::i;:::-;;57691:77;;;;;;;;;;;;;:::i;:::-;;23887:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54528:245;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60685:133;;;;;;;;;;;;;:::i;:::-;;58491:468;;;:::i;:::-;;34794:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42975:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58117:366;;;:::i;:::-;;20722:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20452:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59567:90;;;;;;;;;;;;;:::i;:::-;;57610:73;;;;;;;;;;;;;:::i;:::-;;57104:498;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49828:139;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21197:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48919:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22880:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58967:465;;;:::i;:::-;;24143:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56631:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60093:196;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57776:333;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56416:62;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51720:149;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56570:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56347:62;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59471:88;;;;;;;;;;;;;:::i;:::-;;23246:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60297:227;60451:4;60480:36;60504:11;60480:23;:36::i;:::-;60473:43;;60297:227;;;:::o;21028:100::-;21082:13;21115:5;21108:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21028:100;:::o;22587:221::-;22663:7;22691:16;22699:7;22691;:16::i;:::-;22683:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22776:15;:24;22792:7;22776:24;;;;;;;;;;;;;;;;;;;;;22769:31;;22587:221;;;:::o;22110:411::-;22191:13;22207:23;22222:7;22207:14;:23::i;:::-;22191:39;;22255:5;22249:11;;:2;:11;;;;22241:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;22349:5;22333:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;22358:37;22375:5;22382:12;:10;:12::i;:::-;22358:16;:37::i;:::-;22333:62;22311:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;22492:21;22501:2;22505:7;22492:8;:21::i;:::-;22180:341;22110:411;;:::o;34604:113::-;34665:7;34692:10;:17;;;;34685:24;;34604:113;:::o;23477:339::-;23672:41;23691:12;:10;:12::i;:::-;23705:7;23672:18;:41::i;:::-;23664:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;23780:28;23790:4;23796:2;23800:7;23780:9;:28::i;:::-;23477:339;;;:::o;50943:123::-;51009:7;51036:6;:12;51043:4;51036:12;;;;;;;;;;;:22;;;51029:29;;50943:123;;;:::o;51328:147::-;51411:18;51424:4;51411:12;:18::i;:::-;49410:30;49421:4;49427:12;:10;:12::i;:::-;49410:10;:30::i;:::-;51442:25:::1;51453:4;51459:7;51442:10;:25::i;:::-;51328:147:::0;;;:::o;34272:256::-;34369:7;34405:23;34422:5;34405:16;:23::i;:::-;34397:5;:31;34389:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;34494:12;:19;34507:5;34494:19;;;;;;;;;;;;;;;:26;34514:5;34494:26;;;;;;;;;;;;34487:33;;34272:256;;;;:::o;52376:218::-;52483:12;:10;:12::i;:::-;52472:23;;:7;:23;;;52464:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;52560:26;52572:4;52578:7;52560:11;:26::i;:::-;52376:218;;:::o;60558:119::-;56385:24;49410:30;49421:4;49427:12;:10;:12::i;:::-;49410:10;:30::i;:::-;60626:10:::1;60618:28;;:51;60647:21;60618:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;60558:119:::0;:::o;57691:77::-;56385:24;49410:30;49421:4;49427:12;:10;:12::i;:::-;49410:10;:30::i;:::-;57750:10:::1;:8;:10::i;:::-;57691:77:::0;:::o;23887:185::-;24025:39;24042:4;24048:2;24052:7;24025:39;;;;;;;;;;;;:16;:39::i;:::-;23887:185;;;:::o;54528:245::-;54646:41;54665:12;:10;:12::i;:::-;54679:7;54646:18;:41::i;:::-;54638:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;54751:14;54757:7;54751:5;:14::i;:::-;54528:245;:::o;60685:133::-;48964:4;60728:18;;49410:30;49421:4;49427:12;:10;:12::i;:::-;49410:10;:30::i;:::-;60767:10:::1;60759:28;;:51;60788:21;60759:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;60685:133:::0;:::o;58491:468::-;58552:8;;;;;;;;;;;58544:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;56607:4;58644:1;58616:25;:15;:23;:25::i;:::-;:29;;;;:::i;:::-;:42;58608:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;58738:1;56668:8;58725:14;;;;:::i;:::-;58712:9;:27;;58704:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;58777:13;58801:149;58825:1;58817:5;:9;58801:149;;;58850:48;58860:10;58872:25;:15;:23;:25::i;:::-;58850:9;:48::i;:::-;58911:27;:15;:25;:27::i;:::-;58828:7;;;;;:::i;:::-;;;;58801:149;;;58533:426;58491:468::o;34794:233::-;34869:7;34905:30;:28;:30::i;:::-;34897:5;:38;34889:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;35002:10;35013:5;35002:17;;;;;;;;:::i;:::-;;;;;;;;;;34995:24;;34794:233;;;:::o;42975:86::-;43022:4;43046:7;;;;;;;;;;;43039:14;;42975:86;:::o;58117:366::-;58172:8;;;;;;;;;;;58164:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;56607:4;58236:25;:15;:23;:25::i;:::-;:38;58228:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;56668:8;58328:9;:23;;58320:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;58389:48;58399:10;58411:25;:15;:23;:25::i;:::-;58389:9;:48::i;:::-;58448:27;:15;:25;:27::i;:::-;58117:366::o;20722:239::-;20794:7;20814:13;20830:7;:16;20838:7;20830:16;;;;;;;;;;;;;;;;;;;;;20814:32;;20882:1;20865:19;;:5;:19;;;;20857:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;20948:5;20941:12;;;20722:239;;;:::o;20452:208::-;20524:7;20569:1;20552:19;;:5;:19;;;;20544:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;20636:9;:16;20646:5;20636:16;;;;;;;;;;;;;;;;20629:23;;20452:208;;;:::o;59567:90::-;56385:24;49410:30;49421:4;49427:12;:10;:12::i;:::-;49410:10;:30::i;:::-;59644:5:::1;59633:8;;:16;;;;;;;;;;;;;;;;;;59567:90:::0;:::o;57610:73::-;56385:24;49410:30;49421:4;49427:12;:10;:12::i;:::-;49410:10;:30::i;:::-;57667:8:::1;:6;:8::i;:::-;57610:73:::0;:::o;57104:498::-;57166:16;57195:18;57216:17;57226:6;57216:9;:17::i;:::-;57195:38;;57262:1;57248:10;:15;57244:109;;;57339:1;57325:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57318:23;;;;;57244:109;57363:23;57403:10;57389:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57363:51;;57425:13;57449:122;57473:10;57465:5;:18;57449:122;;;57525:34;57545:6;57553:5;57525:19;:34::i;:::-;57509:6;57516:5;57509:13;;;;;;;;:::i;:::-;;;;;;;:50;;;;;57485:7;;;;;:::i;:::-;;;;57449:122;;;57588:6;57581:13;;;;;57104:498;;;;:::o;49828:139::-;49906:4;49930:6;:12;49937:4;49930:12;;;;;;;;;;;:20;;:29;49951:7;49930:29;;;;;;;;;;;;;;;;;;;;;;;;;49923:36;;49828:139;;;;:::o;21197:104::-;21253:13;21286:7;21279:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21197:104;:::o;48919:49::-;48964:4;48919:49;;;:::o;22880:295::-;22995:12;:10;:12::i;:::-;22983:24;;:8;:24;;;;22975:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;23095:8;23050:18;:32;23069:12;:10;:12::i;:::-;23050:32;;;;;;;;;;;;;;;:42;23083:8;23050:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;23148:8;23119:48;;23134:12;:10;:12::i;:::-;23119:48;;;23158:8;23119:48;;;;;;:::i;:::-;;;;;;;;22880:295;;:::o;58967:465::-;59027:8;;;;;;;;;;;59019:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;56607:4;59119:1;59091:25;:15;:23;:25::i;:::-;:29;;;;:::i;:::-;:42;59083:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;59213:1;56668:8;59200:14;;;;:::i;:::-;59187:9;:27;;59179:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;59252:13;59276:149;59300:1;59292:5;:9;59276:149;;;59325:48;59335:10;59347:25;:15;:23;:25::i;:::-;59325:9;:48::i;:::-;59386:27;:15;:25;:27::i;:::-;59303:7;;;;;:::i;:::-;;;;59276:149;;;59008:424;58967:465::o;24143:328::-;24318:41;24337:12;:10;:12::i;:::-;24351:7;24318:18;:41::i;:::-;24310:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24424:39;24438:4;24444:2;24448:7;24457:5;24424:13;:39::i;:::-;24143:328;;;;:::o;56631:45::-;56668:8;56631:45;:::o;60093:196::-;60220:13;60258:23;60273:7;60258:14;:23::i;:::-;60251:30;;60093:196;;;:::o;57776:333::-;56454:24;49410:30;49421:4;49427:12;:10;:12::i;:::-;49410:10;:30::i;:::-;56607:4:::1;57878:25;:15;:23;:25::i;:::-;:38;57870:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;57962:40;57972:2;57976:25;:15;:23;:25::i;:::-;57962:9;:40::i;:::-;58013:50;58026:25;:15;:23;:25::i;:::-;58053:9;58013:12;:50::i;:::-;58074:27;:15;:25;:27::i;:::-;57776:333:::0;;;:::o;56416:62::-;56454:24;56416:62;:::o;51720:149::-;51804:18;51817:4;51804:12;:18::i;:::-;49410:30;49421:4;49427:12;:10;:12::i;:::-;49410:10;:30::i;:::-;51835:26:::1;51847:4;51853:7;51835:11;:26::i;:::-;51720:149:::0;;;:::o;56570:41::-;56607:4;56570:41;:::o;56347:62::-;56385:24;56347:62;:::o;59471:88::-;56385:24;49410:30;49421:4;49427:12;:10;:12::i;:::-;49410:10;:30::i;:::-;59547:4:::1;59536:8;;:15;;;;;;;;;;;;;;;;;;59471:88:::0;:::o;23246:164::-;23343:4;23367:18;:25;23386:5;23367:25;;;;;;;;;;;;;;;:35;23393:8;23367:35;;;;;;;;;;;;;;;;;;;;;;;;;23360:42;;23246:164;;;;:::o;49532:204::-;49617:4;49656:32;49641:47;;;:11;:47;;;;:87;;;;49692:36;49716:11;49692:23;:36::i;:::-;49641:87;49634:94;;49532:204;;;:::o;25981:127::-;26046:4;26098:1;26070:30;;:7;:16;26078:7;26070:16;;;;;;;;;;;;;;;;;;;;;:30;;;;26063:37;;25981:127;;;:::o;15706:98::-;15759:7;15786:10;15779:17;;15706:98;:::o;29963:174::-;30065:2;30038:15;:24;30054:7;30038:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30121:7;30117:2;30083:46;;30092:23;30107:7;30092:14;:23::i;:::-;30083:46;;;;;;;;;;;;29963:174;;:::o;26275:348::-;26368:4;26393:16;26401:7;26393;:16::i;:::-;26385:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26469:13;26485:23;26500:7;26485:14;:23::i;:::-;26469:39;;26538:5;26527:16;;:7;:16;;;:51;;;;26571:7;26547:31;;:20;26559:7;26547:11;:20::i;:::-;:31;;;26527:51;:87;;;;26582:32;26599:5;26606:7;26582:16;:32::i;:::-;26527:87;26519:96;;;26275:348;;;;:::o;29267:578::-;29426:4;29399:31;;:23;29414:7;29399:14;:23::i;:::-;:31;;;29391:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;29509:1;29495:16;;:2;:16;;;;29487:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;29565:39;29586:4;29592:2;29596:7;29565:20;:39::i;:::-;29669:29;29686:1;29690:7;29669:8;:29::i;:::-;29730:1;29711:9;:15;29721:4;29711:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;29759:1;29742:9;:13;29752:2;29742:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29790:2;29771:7;:16;29779:7;29771:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29829:7;29825:2;29810:27;;29819:4;29810:27;;;;;;;;;;;;29267:578;;;:::o;50257:497::-;50338:22;50346:4;50352:7;50338;:22::i;:::-;50333:414;;50526:41;50554:7;50526:41;;50564:2;50526:19;:41::i;:::-;50640:38;50668:4;50660:13;;50675:2;50640:19;:38::i;:::-;50431:270;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50377:358;;;;;;;;;;;:::i;:::-;;;;;;;;50333:414;50257:497;;:::o;53680:229::-;53755:22;53763:4;53769:7;53755;:22::i;:::-;53750:152;;53826:4;53794:6;:12;53801:4;53794:12;;;;;;;;;;;:20;;:29;53815:7;53794:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;53877:12;:10;:12::i;:::-;53850:40;;53868:7;53850:40;;53862:4;53850:40;;;;;;;;;;53750:152;53680:229;;:::o;53917:230::-;53992:22;54000:4;54006:7;53992;:22::i;:::-;53988:152;;;54063:5;54031:6;:12;54038:4;54031:12;;;;;;;;;;;:20;;:29;54052:7;54031:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;54115:12;:10;:12::i;:::-;54088:40;;54106:7;54088:40;;54100:4;54088:40;;;;;;;;;;53988:152;53917:230;;:::o;44034:120::-;43578:8;:6;:8::i;:::-;43570:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;44103:5:::1;44093:7;;:15;;;;;;;;;;;;;;;;;;44124:22;44133:12;:10;:12::i;:::-;44124:22;;;;;;:::i;:::-;;;;;;;;44034:120::o:0;59970:115::-;60057:20;60069:7;60057:11;:20::i;:::-;59970:115;:::o;55538:114::-;55603:7;55630;:14;;;55623:21;;55538:114;;;:::o;26965:110::-;27041:26;27051:2;27055:7;27041:26;;;;;;;;;;;;:9;:26::i;:::-;26965:110;;:::o;55660:127::-;55767:1;55749:7;:14;;;:19;;;;;;;;;;;55660:127;:::o;43775:118::-;43301:8;:6;:8::i;:::-;43300:9;43292:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;43845:4:::1;43835:7;;:14;;;;;;;;;;;;;;;;;;43865:20;43872:12;:10;:12::i;:::-;43865:20;;;;;;:::i;:::-;;;;;;;;43775:118::o:0;25353:315::-;25510:28;25520:4;25526:2;25530:7;25510:9;:28::i;:::-;25557:48;25580:4;25586:2;25590:7;25599:5;25557:22;:48::i;:::-;25549:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;25353:315;;;;:::o;40463:679::-;40536:13;40570:16;40578:7;40570;:16::i;:::-;40562:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;40653:23;40679:10;:19;40690:7;40679:19;;;;;;;;;;;40653:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40709:18;40730:10;:8;:10::i;:::-;40709:31;;40838:1;40822:4;40816:18;:23;40812:72;;;40863:9;40856:16;;;;;;40812:72;41014:1;40994:9;40988:23;:27;40984:108;;;41063:4;41069:9;41046:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41032:48;;;;;;40984:108;41111:23;41126:7;41111:14;:23::i;:::-;41104:30;;;;40463:679;;;;:::o;41298:217::-;41398:16;41406:7;41398;:16::i;:::-;41390:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;41498:9;41476:10;:19;41487:7;41476:19;;;;;;;;;;;:31;;;;;;;;;;;;:::i;:::-;;41298:217;;:::o;33964:224::-;34066:4;34105:35;34090:50;;;:11;:50;;;;:90;;;;34144:36;34168:11;34144:23;:36::i;:::-;34090:90;34083:97;;33964:224;;;:::o;59665:227::-;43301:8;:6;:8::i;:::-;43300:9;43292:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;59839:45:::1;59866:4;59872:2;59876:7;59839:26;:45::i;:::-;59665:227:::0;;;:::o;17474:451::-;17549:13;17575:19;17620:1;17611:6;17607:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;17597:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17575:47;;17633:15;:6;17640:1;17633:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;17659;:6;17666:1;17659:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;17690:9;17715:1;17706:6;17702:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;17690:26;;17685:135;17722:1;17718;:5;17685:135;;;17757:12;17778:3;17770:5;:11;17757:25;;;;;;;:::i;:::-;;;;;17745:6;17752:1;17745:9;;;;;;;;:::i;:::-;;;;;:37;;;;;;;;;;;17807:1;17797:11;;;;;17725:3;;;;:::i;:::-;;;17685:135;;;;17847:1;17838:5;:10;17830:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;17910:6;17896:21;;;17474:451;;;;:::o;41744:206::-;41813:20;41825:7;41813:11;:20::i;:::-;41887:1;41856:10;:19;41867:7;41856:19;;;;;;;;;;;41850:33;;;;;:::i;:::-;;;:38;41846:97;;41912:10;:19;41923:7;41912:19;;;;;;;;;;;;41905:26;;;;:::i;:::-;41846:97;41744:206;:::o;27302:321::-;27432:18;27438:2;27442:7;27432:5;:18::i;:::-;27483:54;27514:1;27518:2;27522:7;27531:5;27483:22;:54::i;:::-;27461:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;27302:321;;;:::o;30702:799::-;30857:4;30878:15;:2;:13;;;:15::i;:::-;30874:620;;;30930:2;30914:36;;;30951:12;:10;:12::i;:::-;30965:4;30971:7;30980:5;30914:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;30910:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31173:1;31156:6;:13;:18;31152:272;;;31199:60;;;;;;;;;;:::i;:::-;;;;;;;;31152:272;31374:6;31368:13;31359:6;31355:2;31351:15;31344:38;30910:529;31047:41;;;31037:51;;;:6;:51;;;;31030:58;;;;;30874:620;31478:4;31471:11;;30702:799;;;;;;;:::o;56914:182::-;56966:13;57025:63;;;;;;;;;;;;;;;;;;;56914:182;:::o;21372:334::-;21445:13;21479:16;21487:7;21479;:16::i;:::-;21471:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;21560:21;21584:10;:8;:10::i;:::-;21560:34;;21636:1;21618:7;21612:21;:25;:86;;;;;;;;;;;;;;;;;21664:7;21673:18;:7;:16;:18::i;:::-;21647:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;21612:86;21605:93;;;21372:334;;;:::o;20083:305::-;20185:4;20237:25;20222:40;;;:11;:40;;;;:105;;;;20294:33;20279:48;;;:11;:48;;;;20222:105;:158;;;;20344:36;20368:11;20344:23;:36::i;:::-;20222:158;20202:178;;20083:305;;;:::o;35640:589::-;35784:45;35811:4;35817:2;35821:7;35784:26;:45::i;:::-;35862:1;35846:18;;:4;:18;;;35842:187;;;35881:40;35913:7;35881:31;:40::i;:::-;35842:187;;;35951:2;35943:10;;:4;:10;;;35939:90;;35970:47;36003:4;36009:7;35970:32;:47::i;:::-;35939:90;35842:187;36057:1;36043:16;;:2;:16;;;36039:183;;;36076:45;36113:7;36076:36;:45::i;:::-;36039:183;;;36149:4;36143:10;;:2;:10;;;36139:83;;36170:40;36198:2;36202:7;36170:27;:40::i;:::-;36139:83;36039:183;35640:589;;;:::o;28570:360::-;28630:13;28646:23;28661:7;28646:14;:23::i;:::-;28630:39;;28682:48;28703:5;28718:1;28722:7;28682:20;:48::i;:::-;28771:29;28788:1;28792:7;28771:8;:29::i;:::-;28833:1;28813:9;:16;28823:5;28813:16;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;28852:7;:16;28860:7;28852:16;;;;;;;;;;;;28845:23;;;;;;;;;;;28914:7;28910:1;28886:36;;28895:5;28886:36;;;;;;;;;;;;28619:311;28570:360;:::o;27959:382::-;28053:1;28039:16;;:2;:16;;;;28031:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28112:16;28120:7;28112;:16::i;:::-;28111:17;28103:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28174:45;28203:1;28207:2;28211:7;28174:20;:45::i;:::-;28249:1;28232:9;:13;28242:2;28232:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;28280:2;28261:7;:16;28269:7;28261:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;28325:7;28321:2;28300:33;;28317:1;28300:33;;;;;;;;;;;;27959:382;;:::o;7806:387::-;7866:4;8074:12;8141:7;8129:20;8121:28;;8184:1;8177:4;:8;8170:15;;;7806:387;;;:::o;16173:723::-;16229:13;16459:1;16450:5;:10;16446:53;;;16477:10;;;;;;;;;;;;;;;;;;;;;16446:53;16509:12;16524:5;16509:20;;16540:14;16565:78;16580:1;16572:4;:9;16565:78;;16598:8;;;;;:::i;:::-;;;;16629:2;16621:10;;;;;:::i;:::-;;;16565:78;;;16653:19;16685:6;16675:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16653:39;;16703:154;16719:1;16710:5;:10;16703:154;;16747:1;16737:11;;;;;:::i;:::-;;;16814:2;16806:5;:10;;;;:::i;:::-;16793:2;:24;;;;:::i;:::-;16780:39;;16763:6;16770;16763:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;16843:2;16834:11;;;;;:::i;:::-;;;16703:154;;;16881:6;16867:21;;;;;16173:723;;;;:::o;18659:157::-;18744:4;18783:25;18768:40;;;:11;:40;;;;18761:47;;18659:157;;;:::o;32073:126::-;;;;:::o;36952:164::-;37056:10;:17;;;;37029:15;:24;37045:7;37029:24;;;;;;;;;;;:44;;;;37084:10;37100:7;37084:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36952:164;:::o;37743:988::-;38009:22;38059:1;38034:22;38051:4;38034:16;:22::i;:::-;:26;;;;:::i;:::-;38009:51;;38071:18;38092:17;:26;38110:7;38092:26;;;;;;;;;;;;38071:47;;38239:14;38225:10;:28;38221:328;;38270:19;38292:12;:18;38305:4;38292:18;;;;;;;;;;;;;;;:34;38311:14;38292:34;;;;;;;;;;;;38270:56;;38376:11;38343:12;:18;38356:4;38343:18;;;;;;;;;;;;;;;:30;38362:10;38343:30;;;;;;;;;;;:44;;;;38493:10;38460:17;:30;38478:11;38460:30;;;;;;;;;;;:43;;;;38255:294;38221:328;38645:17;:26;38663:7;38645:26;;;;;;;;;;;38638:33;;;38689:12;:18;38702:4;38689:18;;;;;;;;;;;;;;;:34;38708:14;38689:34;;;;;;;;;;;38682:41;;;37824:907;;37743:988;;:::o;39026:1079::-;39279:22;39324:1;39304:10;:17;;;;:21;;;;:::i;:::-;39279:46;;39336:18;39357:15;:24;39373:7;39357:24;;;;;;;;;;;;39336:45;;39708:19;39730:10;39741:14;39730:26;;;;;;;;:::i;:::-;;;;;;;;;;39708:48;;39794:11;39769:10;39780;39769:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;39905:10;39874:15;:28;39890:11;39874:28;;;;;;;;;;;:41;;;;40046:15;:24;40062:7;40046:24;;;;;;;;;;;40039:31;;;40081:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;39097:1008;;;39026:1079;:::o;36530:221::-;36615:14;36632:20;36649:2;36632:16;:20::i;:::-;36615:37;;36690:7;36663:12;:16;36676:2;36663:16;;;;;;;;;;;;;;;:24;36680:6;36663:24;;;;;;;;;;;:34;;;;36737:6;36708:17;:26;36726:7;36708:26;;;;;;;;;;;:35;;;;36604:147;36530:221;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:139::-;1171:5;1209:6;1196:20;1187:29;;1225:33;1252:5;1225:33;:::i;:::-;1125:139;;;;:::o;1270:137::-;1315:5;1353:6;1340:20;1331:29;;1369:32;1395:5;1369:32;:::i;:::-;1270:137;;;;:::o;1413:141::-;1469:5;1500:6;1494:13;1485:22;;1516:32;1542:5;1516:32;:::i;:::-;1413:141;;;;:::o;1573:338::-;1628:5;1677:3;1670:4;1662:6;1658:17;1654:27;1644:122;;1685:79;;:::i;:::-;1644:122;1802:6;1789:20;1827:78;1901:3;1893:6;1886:4;1878:6;1874:17;1827:78;:::i;:::-;1818:87;;1634:277;1573:338;;;;:::o;1931:340::-;1987:5;2036:3;2029:4;2021:6;2017:17;2013:27;2003:122;;2044:79;;:::i;:::-;2003:122;2161:6;2148:20;2186:79;2261:3;2253:6;2246:4;2238:6;2234:17;2186:79;:::i;:::-;2177:88;;1993:278;1931:340;;;;:::o;2277:139::-;2323:5;2361:6;2348:20;2339:29;;2377:33;2404:5;2377:33;:::i;:::-;2277:139;;;;:::o;2422:329::-;2481:6;2530:2;2518:9;2509:7;2505:23;2501:32;2498:119;;;2536:79;;:::i;:::-;2498:119;2656:1;2681:53;2726:7;2717:6;2706:9;2702:22;2681:53;:::i;:::-;2671:63;;2627:117;2422:329;;;;:::o;2757:474::-;2825:6;2833;2882:2;2870:9;2861:7;2857:23;2853:32;2850:119;;;2888:79;;:::i;:::-;2850:119;3008:1;3033:53;3078:7;3069:6;3058:9;3054:22;3033:53;:::i;:::-;3023:63;;2979:117;3135:2;3161:53;3206:7;3197:6;3186:9;3182:22;3161:53;:::i;:::-;3151:63;;3106:118;2757:474;;;;;:::o;3237:619::-;3314:6;3322;3330;3379:2;3367:9;3358:7;3354:23;3350:32;3347:119;;;3385:79;;:::i;:::-;3347:119;3505:1;3530:53;3575:7;3566:6;3555:9;3551:22;3530:53;:::i;:::-;3520:63;;3476:117;3632:2;3658:53;3703:7;3694:6;3683:9;3679:22;3658:53;:::i;:::-;3648:63;;3603:118;3760:2;3786:53;3831:7;3822:6;3811:9;3807:22;3786:53;:::i;:::-;3776:63;;3731:118;3237:619;;;;;:::o;3862:943::-;3957:6;3965;3973;3981;4030:3;4018:9;4009:7;4005:23;4001:33;3998:120;;;4037:79;;:::i;:::-;3998:120;4157:1;4182:53;4227:7;4218:6;4207:9;4203:22;4182:53;:::i;:::-;4172:63;;4128:117;4284:2;4310:53;4355:7;4346:6;4335:9;4331:22;4310:53;:::i;:::-;4300:63;;4255:118;4412:2;4438:53;4483:7;4474:6;4463:9;4459:22;4438:53;:::i;:::-;4428:63;;4383:118;4568:2;4557:9;4553:18;4540:32;4599:18;4591:6;4588:30;4585:117;;;4621:79;;:::i;:::-;4585:117;4726:62;4780:7;4771:6;4760:9;4756:22;4726:62;:::i;:::-;4716:72;;4511:287;3862:943;;;;;;;:::o;4811:468::-;4876:6;4884;4933:2;4921:9;4912:7;4908:23;4904:32;4901:119;;;4939:79;;:::i;:::-;4901:119;5059:1;5084:53;5129:7;5120:6;5109:9;5105:22;5084:53;:::i;:::-;5074:63;;5030:117;5186:2;5212:50;5254:7;5245:6;5234:9;5230:22;5212:50;:::i;:::-;5202:60;;5157:115;4811:468;;;;;:::o;5285:654::-;5363:6;5371;5420:2;5408:9;5399:7;5395:23;5391:32;5388:119;;;5426:79;;:::i;:::-;5388:119;5546:1;5571:53;5616:7;5607:6;5596:9;5592:22;5571:53;:::i;:::-;5561:63;;5517:117;5701:2;5690:9;5686:18;5673:32;5732:18;5724:6;5721:30;5718:117;;;5754:79;;:::i;:::-;5718:117;5859:63;5914:7;5905:6;5894:9;5890:22;5859:63;:::i;:::-;5849:73;;5644:288;5285:654;;;;;:::o;5945:474::-;6013:6;6021;6070:2;6058:9;6049:7;6045:23;6041:32;6038:119;;;6076:79;;:::i;:::-;6038:119;6196:1;6221:53;6266:7;6257:6;6246:9;6242:22;6221:53;:::i;:::-;6211:63;;6167:117;6323:2;6349:53;6394:7;6385:6;6374:9;6370:22;6349:53;:::i;:::-;6339:63;;6294:118;5945:474;;;;;:::o;6425:329::-;6484:6;6533:2;6521:9;6512:7;6508:23;6504:32;6501:119;;;6539:79;;:::i;:::-;6501:119;6659:1;6684:53;6729:7;6720:6;6709:9;6705:22;6684:53;:::i;:::-;6674:63;;6630:117;6425:329;;;;:::o;6760:474::-;6828:6;6836;6885:2;6873:9;6864:7;6860:23;6856:32;6853:119;;;6891:79;;:::i;:::-;6853:119;7011:1;7036:53;7081:7;7072:6;7061:9;7057:22;7036:53;:::i;:::-;7026:63;;6982:117;7138:2;7164:53;7209:7;7200:6;7189:9;7185:22;7164:53;:::i;:::-;7154:63;;7109:118;6760:474;;;;;:::o;7240:327::-;7298:6;7347:2;7335:9;7326:7;7322:23;7318:32;7315:119;;;7353:79;;:::i;:::-;7315:119;7473:1;7498:52;7542:7;7533:6;7522:9;7518:22;7498:52;:::i;:::-;7488:62;;7444:116;7240:327;;;;:::o;7573:349::-;7642:6;7691:2;7679:9;7670:7;7666:23;7662:32;7659:119;;;7697:79;;:::i;:::-;7659:119;7817:1;7842:63;7897:7;7888:6;7877:9;7873:22;7842:63;:::i;:::-;7832:73;;7788:127;7573:349;;;;:::o;7928:329::-;7987:6;8036:2;8024:9;8015:7;8011:23;8007:32;8004:119;;;8042:79;;:::i;:::-;8004:119;8162:1;8187:53;8232:7;8223:6;8212:9;8208:22;8187:53;:::i;:::-;8177:63;;8133:117;7928:329;;;;:::o;8263:179::-;8332:10;8353:46;8395:3;8387:6;8353:46;:::i;:::-;8431:4;8426:3;8422:14;8408:28;;8263:179;;;;:::o;8448:118::-;8535:24;8553:5;8535:24;:::i;:::-;8530:3;8523:37;8448:118;;:::o;8602:732::-;8721:3;8750:54;8798:5;8750:54;:::i;:::-;8820:86;8899:6;8894:3;8820:86;:::i;:::-;8813:93;;8930:56;8980:5;8930:56;:::i;:::-;9009:7;9040:1;9025:284;9050:6;9047:1;9044:13;9025:284;;;9126:6;9120:13;9153:63;9212:3;9197:13;9153:63;:::i;:::-;9146:70;;9239:60;9292:6;9239:60;:::i;:::-;9229:70;;9085:224;9072:1;9069;9065:9;9060:14;;9025:284;;;9029:14;9325:3;9318:10;;8726:608;;;8602:732;;;;:::o;9340:109::-;9421:21;9436:5;9421:21;:::i;:::-;9416:3;9409:34;9340:109;;:::o;9455:118::-;9542:24;9560:5;9542:24;:::i;:::-;9537:3;9530:37;9455:118;;:::o;9579:360::-;9665:3;9693:38;9725:5;9693:38;:::i;:::-;9747:70;9810:6;9805:3;9747:70;:::i;:::-;9740:77;;9826:52;9871:6;9866:3;9859:4;9852:5;9848:16;9826:52;:::i;:::-;9903:29;9925:6;9903:29;:::i;:::-;9898:3;9894:39;9887:46;;9669:270;9579:360;;;;:::o;9945:364::-;10033:3;10061:39;10094:5;10061:39;:::i;:::-;10116:71;10180:6;10175:3;10116:71;:::i;:::-;10109:78;;10196:52;10241:6;10236:3;10229:4;10222:5;10218:16;10196:52;:::i;:::-;10273:29;10295:6;10273:29;:::i;:::-;10268:3;10264:39;10257:46;;10037:272;9945:364;;;;:::o;10315:377::-;10421:3;10449:39;10482:5;10449:39;:::i;:::-;10504:89;10586:6;10581:3;10504:89;:::i;:::-;10497:96;;10602:52;10647:6;10642:3;10635:4;10628:5;10624:16;10602:52;:::i;:::-;10679:6;10674:3;10670:16;10663:23;;10425:267;10315:377;;;;:::o;10698:366::-;10840:3;10861:67;10925:2;10920:3;10861:67;:::i;:::-;10854:74;;10937:93;11026:3;10937:93;:::i;:::-;11055:2;11050:3;11046:12;11039:19;;10698:366;;;:::o;11070:::-;11212:3;11233:67;11297:2;11292:3;11233:67;:::i;:::-;11226:74;;11309:93;11398:3;11309:93;:::i;:::-;11427:2;11422:3;11418:12;11411:19;;11070:366;;;:::o;11442:::-;11584:3;11605:67;11669:2;11664:3;11605:67;:::i;:::-;11598:74;;11681:93;11770:3;11681:93;:::i;:::-;11799:2;11794:3;11790:12;11783:19;;11442:366;;;:::o;11814:::-;11956:3;11977:67;12041:2;12036:3;11977:67;:::i;:::-;11970:74;;12053:93;12142:3;12053:93;:::i;:::-;12171:2;12166:3;12162:12;12155:19;;11814:366;;;:::o;12186:::-;12328:3;12349:67;12413:2;12408:3;12349:67;:::i;:::-;12342:74;;12425:93;12514:3;12425:93;:::i;:::-;12543:2;12538:3;12534:12;12527:19;;12186:366;;;:::o;12558:::-;12700:3;12721:67;12785:2;12780:3;12721:67;:::i;:::-;12714:74;;12797:93;12886:3;12797:93;:::i;:::-;12915:2;12910:3;12906:12;12899:19;;12558:366;;;:::o;12930:::-;13072:3;13093:67;13157:2;13152:3;13093:67;:::i;:::-;13086:74;;13169:93;13258:3;13169:93;:::i;:::-;13287:2;13282:3;13278:12;13271:19;;12930:366;;;:::o;13302:::-;13444:3;13465:67;13529:2;13524:3;13465:67;:::i;:::-;13458:74;;13541:93;13630:3;13541:93;:::i;:::-;13659:2;13654:3;13650:12;13643:19;;13302:366;;;:::o;13674:::-;13816:3;13837:67;13901:2;13896:3;13837:67;:::i;:::-;13830:74;;13913:93;14002:3;13913:93;:::i;:::-;14031:2;14026:3;14022:12;14015:19;;13674:366;;;:::o;14046:::-;14188:3;14209:67;14273:2;14268:3;14209:67;:::i;:::-;14202:74;;14285:93;14374:3;14285:93;:::i;:::-;14403:2;14398:3;14394:12;14387:19;;14046:366;;;:::o;14418:::-;14560:3;14581:67;14645:2;14640:3;14581:67;:::i;:::-;14574:74;;14657:93;14746:3;14657:93;:::i;:::-;14775:2;14770:3;14766:12;14759:19;;14418:366;;;:::o;14790:::-;14932:3;14953:67;15017:2;15012:3;14953:67;:::i;:::-;14946:74;;15029:93;15118:3;15029:93;:::i;:::-;15147:2;15142:3;15138:12;15131:19;;14790:366;;;:::o;15162:::-;15304:3;15325:67;15389:2;15384:3;15325:67;:::i;:::-;15318:74;;15401:93;15490:3;15401:93;:::i;:::-;15519:2;15514:3;15510:12;15503:19;;15162:366;;;:::o;15534:::-;15676:3;15697:67;15761:2;15756:3;15697:67;:::i;:::-;15690:74;;15773:93;15862:3;15773:93;:::i;:::-;15891:2;15886:3;15882:12;15875:19;;15534:366;;;:::o;15906:::-;16048:3;16069:67;16133:2;16128:3;16069:67;:::i;:::-;16062:74;;16145:93;16234:3;16145:93;:::i;:::-;16263:2;16258:3;16254:12;16247:19;;15906:366;;;:::o;16278:::-;16420:3;16441:67;16505:2;16500:3;16441:67;:::i;:::-;16434:74;;16517:93;16606:3;16517:93;:::i;:::-;16635:2;16630:3;16626:12;16619:19;;16278:366;;;:::o;16650:::-;16792:3;16813:67;16877:2;16872:3;16813:67;:::i;:::-;16806:74;;16889:93;16978:3;16889:93;:::i;:::-;17007:2;17002:3;16998:12;16991:19;;16650:366;;;:::o;17022:::-;17164:3;17185:67;17249:2;17244:3;17185:67;:::i;:::-;17178:74;;17261:93;17350:3;17261:93;:::i;:::-;17379:2;17374:3;17370:12;17363:19;;17022:366;;;:::o;17394:::-;17536:3;17557:67;17621:2;17616:3;17557:67;:::i;:::-;17550:74;;17633:93;17722:3;17633:93;:::i;:::-;17751:2;17746:3;17742:12;17735:19;;17394:366;;;:::o;17766:::-;17908:3;17929:67;17993:2;17988:3;17929:67;:::i;:::-;17922:74;;18005:93;18094:3;18005:93;:::i;:::-;18123:2;18118:3;18114:12;18107:19;;17766:366;;;:::o;18138:::-;18280:3;18301:67;18365:2;18360:3;18301:67;:::i;:::-;18294:74;;18377:93;18466:3;18377:93;:::i;:::-;18495:2;18490:3;18486:12;18479:19;;18138:366;;;:::o;18510:::-;18652:3;18673:67;18737:2;18732:3;18673:67;:::i;:::-;18666:74;;18749:93;18838:3;18749:93;:::i;:::-;18867:2;18862:3;18858:12;18851:19;;18510:366;;;:::o;18882:::-;19024:3;19045:67;19109:2;19104:3;19045:67;:::i;:::-;19038:74;;19121:93;19210:3;19121:93;:::i;:::-;19239:2;19234:3;19230:12;19223:19;;18882:366;;;:::o;19254:::-;19396:3;19417:67;19481:2;19476:3;19417:67;:::i;:::-;19410:74;;19493:93;19582:3;19493:93;:::i;:::-;19611:2;19606:3;19602:12;19595:19;;19254:366;;;:::o;19626:402::-;19786:3;19807:85;19889:2;19884:3;19807:85;:::i;:::-;19800:92;;19901:93;19990:3;19901:93;:::i;:::-;20019:2;20014:3;20010:12;20003:19;;19626:402;;;:::o;20034:366::-;20176:3;20197:67;20261:2;20256:3;20197:67;:::i;:::-;20190:74;;20273:93;20362:3;20273:93;:::i;:::-;20391:2;20386:3;20382:12;20375:19;;20034:366;;;:::o;20406:402::-;20566:3;20587:85;20669:2;20664:3;20587:85;:::i;:::-;20580:92;;20681:93;20770:3;20681:93;:::i;:::-;20799:2;20794:3;20790:12;20783:19;;20406:402;;;:::o;20814:366::-;20956:3;20977:67;21041:2;21036:3;20977:67;:::i;:::-;20970:74;;21053:93;21142:3;21053:93;:::i;:::-;21171:2;21166:3;21162:12;21155:19;;20814:366;;;:::o;21186:108::-;21263:24;21281:5;21263:24;:::i;:::-;21258:3;21251:37;21186:108;;:::o;21300:118::-;21387:24;21405:5;21387:24;:::i;:::-;21382:3;21375:37;21300:118;;:::o;21424:435::-;21604:3;21626:95;21717:3;21708:6;21626:95;:::i;:::-;21619:102;;21738:95;21829:3;21820:6;21738:95;:::i;:::-;21731:102;;21850:3;21843:10;;21424:435;;;;;:::o;21865:967::-;22247:3;22269:148;22413:3;22269:148;:::i;:::-;22262:155;;22434:95;22525:3;22516:6;22434:95;:::i;:::-;22427:102;;22546:148;22690:3;22546:148;:::i;:::-;22539:155;;22711:95;22802:3;22793:6;22711:95;:::i;:::-;22704:102;;22823:3;22816:10;;21865:967;;;;;:::o;22838:222::-;22931:4;22969:2;22958:9;22954:18;22946:26;;22982:71;23050:1;23039:9;23035:17;23026:6;22982:71;:::i;:::-;22838:222;;;;:::o;23066:640::-;23261:4;23299:3;23288:9;23284:19;23276:27;;23313:71;23381:1;23370:9;23366:17;23357:6;23313:71;:::i;:::-;23394:72;23462:2;23451:9;23447:18;23438:6;23394:72;:::i;:::-;23476;23544:2;23533:9;23529:18;23520:6;23476:72;:::i;:::-;23595:9;23589:4;23585:20;23580:2;23569:9;23565:18;23558:48;23623:76;23694:4;23685:6;23623:76;:::i;:::-;23615:84;;23066:640;;;;;;;:::o;23712:373::-;23855:4;23893:2;23882:9;23878:18;23870:26;;23942:9;23936:4;23932:20;23928:1;23917:9;23913:17;23906:47;23970:108;24073:4;24064:6;23970:108;:::i;:::-;23962:116;;23712:373;;;;:::o;24091:210::-;24178:4;24216:2;24205:9;24201:18;24193:26;;24229:65;24291:1;24280:9;24276:17;24267:6;24229:65;:::i;:::-;24091:210;;;;:::o;24307:222::-;24400:4;24438:2;24427:9;24423:18;24415:26;;24451:71;24519:1;24508:9;24504:17;24495:6;24451:71;:::i;:::-;24307:222;;;;:::o;24535:313::-;24648:4;24686:2;24675:9;24671:18;24663:26;;24735:9;24729:4;24725:20;24721:1;24710:9;24706:17;24699:47;24763:78;24836:4;24827:6;24763:78;:::i;:::-;24755:86;;24535:313;;;;:::o;24854:419::-;25020:4;25058:2;25047:9;25043:18;25035:26;;25107:9;25101:4;25097:20;25093:1;25082:9;25078:17;25071:47;25135:131;25261:4;25135:131;:::i;:::-;25127:139;;24854:419;;;:::o;25279:::-;25445:4;25483:2;25472:9;25468:18;25460:26;;25532:9;25526:4;25522:20;25518:1;25507:9;25503:17;25496:47;25560:131;25686:4;25560:131;:::i;:::-;25552:139;;25279:419;;;:::o;25704:::-;25870:4;25908:2;25897:9;25893:18;25885:26;;25957:9;25951:4;25947:20;25943:1;25932:9;25928:17;25921:47;25985:131;26111:4;25985:131;:::i;:::-;25977:139;;25704:419;;;:::o;26129:::-;26295:4;26333:2;26322:9;26318:18;26310:26;;26382:9;26376:4;26372:20;26368:1;26357:9;26353:17;26346:47;26410:131;26536:4;26410:131;:::i;:::-;26402:139;;26129:419;;;:::o;26554:::-;26720:4;26758:2;26747:9;26743:18;26735:26;;26807:9;26801:4;26797:20;26793:1;26782:9;26778:17;26771:47;26835:131;26961:4;26835:131;:::i;:::-;26827:139;;26554:419;;;:::o;26979:::-;27145:4;27183:2;27172:9;27168:18;27160:26;;27232:9;27226:4;27222:20;27218:1;27207:9;27203:17;27196:47;27260:131;27386:4;27260:131;:::i;:::-;27252:139;;26979:419;;;:::o;27404:::-;27570:4;27608:2;27597:9;27593:18;27585:26;;27657:9;27651:4;27647:20;27643:1;27632:9;27628:17;27621:47;27685:131;27811:4;27685:131;:::i;:::-;27677:139;;27404:419;;;:::o;27829:::-;27995:4;28033:2;28022:9;28018:18;28010:26;;28082:9;28076:4;28072:20;28068:1;28057:9;28053:17;28046:47;28110:131;28236:4;28110:131;:::i;:::-;28102:139;;27829:419;;;:::o;28254:::-;28420:4;28458:2;28447:9;28443:18;28435:26;;28507:9;28501:4;28497:20;28493:1;28482:9;28478:17;28471:47;28535:131;28661:4;28535:131;:::i;:::-;28527:139;;28254:419;;;:::o;28679:::-;28845:4;28883:2;28872:9;28868:18;28860:26;;28932:9;28926:4;28922:20;28918:1;28907:9;28903:17;28896:47;28960:131;29086:4;28960:131;:::i;:::-;28952:139;;28679:419;;;:::o;29104:::-;29270:4;29308:2;29297:9;29293:18;29285:26;;29357:9;29351:4;29347:20;29343:1;29332:9;29328:17;29321:47;29385:131;29511:4;29385:131;:::i;:::-;29377:139;;29104:419;;;:::o;29529:::-;29695:4;29733:2;29722:9;29718:18;29710:26;;29782:9;29776:4;29772:20;29768:1;29757:9;29753:17;29746:47;29810:131;29936:4;29810:131;:::i;:::-;29802:139;;29529:419;;;:::o;29954:::-;30120:4;30158:2;30147:9;30143:18;30135:26;;30207:9;30201:4;30197:20;30193:1;30182:9;30178:17;30171:47;30235:131;30361:4;30235:131;:::i;:::-;30227:139;;29954:419;;;:::o;30379:::-;30545:4;30583:2;30572:9;30568:18;30560:26;;30632:9;30626:4;30622:20;30618:1;30607:9;30603:17;30596:47;30660:131;30786:4;30660:131;:::i;:::-;30652:139;;30379:419;;;:::o;30804:::-;30970:4;31008:2;30997:9;30993:18;30985:26;;31057:9;31051:4;31047:20;31043:1;31032:9;31028:17;31021:47;31085:131;31211:4;31085:131;:::i;:::-;31077:139;;30804:419;;;:::o;31229:::-;31395:4;31433:2;31422:9;31418:18;31410:26;;31482:9;31476:4;31472:20;31468:1;31457:9;31453:17;31446:47;31510:131;31636:4;31510:131;:::i;:::-;31502:139;;31229:419;;;:::o;31654:::-;31820:4;31858:2;31847:9;31843:18;31835:26;;31907:9;31901:4;31897:20;31893:1;31882:9;31878:17;31871:47;31935:131;32061:4;31935:131;:::i;:::-;31927:139;;31654:419;;;:::o;32079:::-;32245:4;32283:2;32272:9;32268:18;32260:26;;32332:9;32326:4;32322:20;32318:1;32307:9;32303:17;32296:47;32360:131;32486:4;32360:131;:::i;:::-;32352:139;;32079:419;;;:::o;32504:::-;32670:4;32708:2;32697:9;32693:18;32685:26;;32757:9;32751:4;32747:20;32743:1;32732:9;32728:17;32721:47;32785:131;32911:4;32785:131;:::i;:::-;32777:139;;32504:419;;;:::o;32929:::-;33095:4;33133:2;33122:9;33118:18;33110:26;;33182:9;33176:4;33172:20;33168:1;33157:9;33153:17;33146:47;33210:131;33336:4;33210:131;:::i;:::-;33202:139;;32929:419;;;:::o;33354:::-;33520:4;33558:2;33547:9;33543:18;33535:26;;33607:9;33601:4;33597:20;33593:1;33582:9;33578:17;33571:47;33635:131;33761:4;33635:131;:::i;:::-;33627:139;;33354:419;;;:::o;33779:::-;33945:4;33983:2;33972:9;33968:18;33960:26;;34032:9;34026:4;34022:20;34018:1;34007:9;34003:17;33996:47;34060:131;34186:4;34060:131;:::i;:::-;34052:139;;33779:419;;;:::o;34204:::-;34370:4;34408:2;34397:9;34393:18;34385:26;;34457:9;34451:4;34447:20;34443:1;34432:9;34428:17;34421:47;34485:131;34611:4;34485:131;:::i;:::-;34477:139;;34204:419;;;:::o;34629:::-;34795:4;34833:2;34822:9;34818:18;34810:26;;34882:9;34876:4;34872:20;34868:1;34857:9;34853:17;34846:47;34910:131;35036:4;34910:131;:::i;:::-;34902:139;;34629:419;;;:::o;35054:::-;35220:4;35258:2;35247:9;35243:18;35235:26;;35307:9;35301:4;35297:20;35293:1;35282:9;35278:17;35271:47;35335:131;35461:4;35335:131;:::i;:::-;35327:139;;35054:419;;;:::o;35479:::-;35645:4;35683:2;35672:9;35668:18;35660:26;;35732:9;35726:4;35722:20;35718:1;35707:9;35703:17;35696:47;35760:131;35886:4;35760:131;:::i;:::-;35752:139;;35479:419;;;:::o;35904:222::-;35997:4;36035:2;36024:9;36020:18;36012:26;;36048:71;36116:1;36105:9;36101:17;36092:6;36048:71;:::i;:::-;35904:222;;;;:::o;36132:129::-;36166:6;36193:20;;:::i;:::-;36183:30;;36222:33;36250:4;36242:6;36222:33;:::i;:::-;36132:129;;;:::o;36267:75::-;36300:6;36333:2;36327:9;36317:19;;36267:75;:::o;36348:307::-;36409:4;36499:18;36491:6;36488:30;36485:56;;;36521:18;;:::i;:::-;36485:56;36559:29;36581:6;36559:29;:::i;:::-;36551:37;;36643:4;36637;36633:15;36625:23;;36348:307;;;:::o;36661:308::-;36723:4;36813:18;36805:6;36802:30;36799:56;;;36835:18;;:::i;:::-;36799:56;36873:29;36895:6;36873:29;:::i;:::-;36865:37;;36957:4;36951;36947:15;36939:23;;36661:308;;;:::o;36975:132::-;37042:4;37065:3;37057:11;;37095:4;37090:3;37086:14;37078:22;;36975:132;;;:::o;37113:114::-;37180:6;37214:5;37208:12;37198:22;;37113:114;;;:::o;37233:98::-;37284:6;37318:5;37312:12;37302:22;;37233:98;;;:::o;37337:99::-;37389:6;37423:5;37417:12;37407:22;;37337:99;;;:::o;37442:113::-;37512:4;37544;37539:3;37535:14;37527:22;;37442:113;;;:::o;37561:184::-;37660:11;37694:6;37689:3;37682:19;37734:4;37729:3;37725:14;37710:29;;37561:184;;;;:::o;37751:168::-;37834:11;37868:6;37863:3;37856:19;37908:4;37903:3;37899:14;37884:29;;37751:168;;;;:::o;37925:169::-;38009:11;38043:6;38038:3;38031:19;38083:4;38078:3;38074:14;38059:29;;37925:169;;;;:::o;38100:148::-;38202:11;38239:3;38224:18;;38100:148;;;;:::o;38254:305::-;38294:3;38313:20;38331:1;38313:20;:::i;:::-;38308:25;;38347:20;38365:1;38347:20;:::i;:::-;38342:25;;38501:1;38433:66;38429:74;38426:1;38423:81;38420:107;;;38507:18;;:::i;:::-;38420:107;38551:1;38548;38544:9;38537:16;;38254:305;;;;:::o;38565:185::-;38605:1;38622:20;38640:1;38622:20;:::i;:::-;38617:25;;38656:20;38674:1;38656:20;:::i;:::-;38651:25;;38695:1;38685:35;;38700:18;;:::i;:::-;38685:35;38742:1;38739;38735:9;38730:14;;38565:185;;;;:::o;38756:348::-;38796:7;38819:20;38837:1;38819:20;:::i;:::-;38814:25;;38853:20;38871:1;38853:20;:::i;:::-;38848:25;;39041:1;38973:66;38969:74;38966:1;38963:81;38958:1;38951:9;38944:17;38940:105;38937:131;;;39048:18;;:::i;:::-;38937:131;39096:1;39093;39089:9;39078:20;;38756:348;;;;:::o;39110:191::-;39150:4;39170:20;39188:1;39170:20;:::i;:::-;39165:25;;39204:20;39222:1;39204:20;:::i;:::-;39199:25;;39243:1;39240;39237:8;39234:34;;;39248:18;;:::i;:::-;39234:34;39293:1;39290;39286:9;39278:17;;39110:191;;;;:::o;39307:96::-;39344:7;39373:24;39391:5;39373:24;:::i;:::-;39362:35;;39307:96;;;:::o;39409:90::-;39443:7;39486:5;39479:13;39472:21;39461:32;;39409:90;;;:::o;39505:77::-;39542:7;39571:5;39560:16;;39505:77;;;:::o;39588:149::-;39624:7;39664:66;39657:5;39653:78;39642:89;;39588:149;;;:::o;39743:126::-;39780:7;39820:42;39813:5;39809:54;39798:65;;39743:126;;;:::o;39875:77::-;39912:7;39941:5;39930:16;;39875:77;;;:::o;39958:154::-;40042:6;40037:3;40032;40019:30;40104:1;40095:6;40090:3;40086:16;40079:27;39958:154;;;:::o;40118:307::-;40186:1;40196:113;40210:6;40207:1;40204:13;40196:113;;;40295:1;40290:3;40286:11;40280:18;40276:1;40271:3;40267:11;40260:39;40232:2;40229:1;40225:10;40220:15;;40196:113;;;40327:6;40324:1;40321:13;40318:101;;;40407:1;40398:6;40393:3;40389:16;40382:27;40318:101;40167:258;40118:307;;;:::o;40431:171::-;40470:3;40493:24;40511:5;40493:24;:::i;:::-;40484:33;;40539:4;40532:5;40529:15;40526:41;;;40547:18;;:::i;:::-;40526:41;40594:1;40587:5;40583:13;40576:20;;40431:171;;;:::o;40608:320::-;40652:6;40689:1;40683:4;40679:12;40669:22;;40736:1;40730:4;40726:12;40757:18;40747:81;;40813:4;40805:6;40801:17;40791:27;;40747:81;40875:2;40867:6;40864:14;40844:18;40841:38;40838:84;;;40894:18;;:::i;:::-;40838:84;40659:269;40608:320;;;:::o;40934:281::-;41017:27;41039:4;41017:27;:::i;:::-;41009:6;41005:40;41147:6;41135:10;41132:22;41111:18;41099:10;41096:34;41093:62;41090:88;;;41158:18;;:::i;:::-;41090:88;41198:10;41194:2;41187:22;40977:238;40934:281;;:::o;41221:233::-;41260:3;41283:24;41301:5;41283:24;:::i;:::-;41274:33;;41329:66;41322:5;41319:77;41316:103;;;41399:18;;:::i;:::-;41316:103;41446:1;41439:5;41435:13;41428:20;;41221:233;;;:::o;41460:176::-;41492:1;41509:20;41527:1;41509:20;:::i;:::-;41504:25;;41543:20;41561:1;41543:20;:::i;:::-;41538:25;;41582:1;41572:35;;41587:18;;:::i;:::-;41572:35;41628:1;41625;41621:9;41616:14;;41460:176;;;;:::o;41642:180::-;41690:77;41687:1;41680:88;41787:4;41784:1;41777:15;41811:4;41808:1;41801:15;41828:180;41876:77;41873:1;41866:88;41973:4;41970:1;41963:15;41997:4;41994:1;41987:15;42014:180;42062:77;42059:1;42052:88;42159:4;42156:1;42149:15;42183:4;42180:1;42173:15;42200:180;42248:77;42245:1;42238:88;42345:4;42342:1;42335:15;42369:4;42366:1;42359:15;42386:180;42434:77;42431:1;42424:88;42531:4;42528:1;42521:15;42555:4;42552:1;42545:15;42572:180;42620:77;42617:1;42610:88;42717:4;42714:1;42707:15;42741:4;42738:1;42731:15;42758:117;42867:1;42864;42857:12;42881:117;42990:1;42987;42980:12;43004:117;43113:1;43110;43103:12;43127:117;43236:1;43233;43226:12;43250:102;43291:6;43342:2;43338:7;43333:2;43326:5;43322:14;43318:28;43308:38;;43250:102;;;:::o;43358:182::-;43498:34;43494:1;43486:6;43482:14;43475:58;43358:182;:::o;43546:170::-;43686:22;43682:1;43674:6;43670:14;43663:46;43546:170;:::o;43722:230::-;43862:34;43858:1;43850:6;43846:14;43839:58;43931:13;43926:2;43918:6;43914:15;43907:38;43722:230;:::o;43958:237::-;44098:34;44094:1;44086:6;44082:14;44075:58;44167:20;44162:2;44154:6;44150:15;44143:45;43958:237;:::o;44201:178::-;44341:30;44337:1;44329:6;44325:14;44318:54;44201:178;:::o;44385:223::-;44525:34;44521:1;44513:6;44509:14;44502:58;44594:6;44589:2;44581:6;44577:15;44570:31;44385:223;:::o;44614:175::-;44754:27;44750:1;44742:6;44738:14;44731:51;44614:175;:::o;44795:231::-;44935:34;44931:1;44923:6;44919:14;44912:58;45004:14;44999:2;44991:6;44987:15;44980:39;44795:231;:::o;45032:166::-;45172:18;45168:1;45160:6;45156:14;45149:42;45032:166;:::o;45204:243::-;45344:34;45340:1;45332:6;45328:14;45321:58;45413:26;45408:2;45400:6;45396:15;45389:51;45204:243;:::o;45453:229::-;45593:34;45589:1;45581:6;45577:14;45570:58;45662:12;45657:2;45649:6;45645:15;45638:37;45453:229;:::o;45688:228::-;45828:34;45824:1;45816:6;45812:14;45805:58;45897:11;45892:2;45884:6;45880:15;45873:36;45688:228;:::o;45922:233::-;46062:34;46058:1;46050:6;46046:14;46039:58;46131:16;46126:2;46118:6;46114:15;46107:41;45922:233;:::o;46161:180::-;46301:32;46297:1;46289:6;46285:14;46278:56;46161:180;:::o;46347:182::-;46487:34;46483:1;46475:6;46471:14;46464:58;46347:182;:::o;46535:::-;46675:34;46671:1;46663:6;46659:14;46652:58;46535:182;:::o;46723:236::-;46863:34;46859:1;46851:6;46847:14;46840:58;46932:19;46927:2;46919:6;46915:15;46908:44;46723:236;:::o;46965:231::-;47105:34;47101:1;47093:6;47089:14;47082:58;47174:14;47169:2;47161:6;47157:15;47150:39;46965:231;:::o;47202:228::-;47342:34;47338:1;47330:6;47326:14;47319:58;47411:11;47406:2;47398:6;47394:15;47387:36;47202:228;:::o;47436:234::-;47576:34;47572:1;47564:6;47560:14;47553:58;47645:17;47640:2;47632:6;47628:15;47621:42;47436:234;:::o;47676:172::-;47816:24;47812:1;47804:6;47800:14;47793:48;47676:172;:::o;47854:220::-;47994:34;47990:1;47982:6;47978:14;47971:58;48063:3;48058:2;48050:6;48046:15;48039:28;47854:220;:::o;48080:236::-;48220:34;48216:1;48208:6;48204:14;48197:58;48289:19;48284:2;48276:6;48272:15;48265:44;48080:236;:::o;48322:231::-;48462:34;48458:1;48450:6;48446:14;48439:58;48531:14;48526:2;48518:6;48514:15;48507:39;48322:231;:::o;48559:173::-;48699:25;48695:1;48687:6;48683:14;48676:49;48559:173;:::o;48738:235::-;48878:34;48874:1;48866:6;48862:14;48855:58;48947:18;48942:2;48934:6;48930:15;48923:43;48738:235;:::o;48979:167::-;49119:19;49115:1;49107:6;49103:14;49096:43;48979:167;:::o;49152:234::-;49292:34;49288:1;49280:6;49276:14;49269:58;49361:17;49356:2;49348:6;49344:15;49337:42;49152:234;:::o;49392:122::-;49465:24;49483:5;49465:24;:::i;:::-;49458:5;49455:35;49445:63;;49504:1;49501;49494:12;49445:63;49392:122;:::o;49520:116::-;49590:21;49605:5;49590:21;:::i;:::-;49583:5;49580:32;49570:60;;49626:1;49623;49616:12;49570:60;49520:116;:::o;49642:122::-;49715:24;49733:5;49715:24;:::i;:::-;49708:5;49705:35;49695:63;;49754:1;49751;49744:12;49695:63;49642:122;:::o;49770:120::-;49842:23;49859:5;49842:23;:::i;:::-;49835:5;49832:34;49822:62;;49880:1;49877;49870:12;49822:62;49770:120;:::o;49896:122::-;49969:24;49987:5;49969:24;:::i;:::-;49962:5;49959:35;49949:63;;50008:1;50005;49998:12;49949:63;49896:122;:::o
Swarm Source
ipfs://048fc7c59e5629a4f916bdbe108b49d03c90fc8aaace48c610d9591ed51adf57
Loading...
Loading
Loading...
Loading
OVERVIEW
BabyChimpGang consists of 1.111 uniquely generated ape NFTs on Fantom.Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.