ERC-721
Overview
Max Total Supply
2,772 AIBEAR
Holders
585
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
5 AIBEARLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
AIBEAR
Compiler Version
v0.8.2+commit.661d1103
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-05 */ // SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.2; 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); } } library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } 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); } abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } 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`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev 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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); } 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 `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } 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); } 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); /** * @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); } contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 private currentIndex = 0; uint256 internal immutable collectionSize; uint256 internal immutable maxBatchSize; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) private _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // 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 * `maxBatchSize` refers to how much a minter can mint at a time. * `collectionSize_` refers to how many tokens are in the collection. */ constructor( string memory name_, string memory symbol_, uint256 maxBatchSize_, uint256 collectionSize_ ) { require( collectionSize_ > 0, "ERC721A: collection must have a nonzero supply" ); require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero"); _name = name_; _symbol = symbol_; maxBatchSize = maxBatchSize_; collectionSize = collectionSize_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), "ERC721A: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx = 0; address currOwnershipAddr = address(0); for (uint256 i = 0; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } revert("ERC721A: unable to get token of owner by index"); } /** * @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 || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "ERC721A: balance query for the zero address"); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require( owner != address(0), "ERC721A: number minted query for the zero address" ); return uint256(_addressData[owner].numberMinted); } function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); uint256 lowestTokenToCheck; if (tokenId >= maxBatchSize) { lowestTokenToCheck = tokenId - maxBatchSize + 1; } for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } revert("ERC721A: unable to determine the owner of token"); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @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 override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721A: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: 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 override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: 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`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - there must be `quantity` tokens remaining unminted in the total collection. * - `to` cannot be the zero address. * - `quantity` cannot be larger than the max batch size. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "ERC721A: mint to the zero address"); // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering. require(!_exists(startTokenId), "ERC721A: token already minted"); require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); AddressData memory addressData = _addressData[to]; _addressData[to] = AddressData( addressData.balance + uint128(quantity), addressData.numberMinted + uint128(quantity) ); _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp)); uint256 updatedIndex = startTokenId; for (uint256 i = 0; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); require( _checkOnERC721Received(address(0), to, updatedIndex, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); updatedIndex++; } currentIndex = updatedIndex; _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require( isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved" ); require( prevOwnership.addr == from, "ERC721A: transfer from incorrect owner" ); require(to != address(0), "ERC721A: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp)); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId] = TokenOwnership( prevOwnership.addr, prevOwnership.startTimestamp ); } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } uint256 public nextOwnerToExplicitlySet = 0; /** * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf(). */ function _setOwnersExplicit(uint256 quantity) internal { uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet; require(quantity > 0, "quantity must be nonzero"); uint256 endIndex = oldNextOwnerToSet + quantity - 1; if (endIndex > collectionSize - 1) { endIndex = collectionSize - 1; } // We know if the last one in the group exists, all in the group exist, due to serial ordering. require(_exists(endIndex), "not enough minted yet for this cleanup"); for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0)) { TokenOwnership memory ownership = ownershipOf(i); _ownerships[i] = TokenOwnership( ownership.addr, ownership.startTimestamp ); } } nextOwnerToExplicitlySet = endIndex + 1; } /** * @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(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721A: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * 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`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } contract AIBEAR is Ownable, ERC721A, ReentrancyGuard { uint256 public immutable maxPerAddressMint; struct SaleConfig { uint64 publicPrice; bool publicSaleKey; bool freeMintKey; } SaleConfig public saleConfig; constructor(uint256 maxBatchSize_, uint256 collectionSize_) ERC721A("AIBEAR", "AIBEAR", maxBatchSize_, collectionSize_) { maxPerAddressMint = maxBatchSize_; saleConfig.publicPrice = 0.006 ether; saleConfig.publicSaleKey = false; saleConfig.freeMintKey = false; } function endAuctionAndSetupNonAuctionSaleInfo(uint64 publicPriceWei, bool publicSaleKey, bool freeMintKey) external onlyOwner { saleConfig = SaleConfig( publicPriceWei, publicSaleKey, freeMintKey ); } function freeMint(uint256 quantity) external { SaleConfig memory config = saleConfig; bool freeMintKey = bool(config.freeMintKey); require(msg.sender == tx.origin, "the caller is another contract"); require(freeMintKey,"public sale has not begun yet"); require(totalSupply() + quantity <= 2500, "reached max supply"); require(numberMinted(msg.sender) + quantity <= 5,"can not mint this many"); _safeMint(msg.sender, quantity); } function publicMint(uint256 quantity) external payable { SaleConfig memory config = saleConfig; bool publicSaleKey = bool(config.publicSaleKey); uint256 publicPrice = uint256(config.publicPrice); require(msg.sender == tx.origin, "the caller is another contract"); require(publicSaleKey,"public sale has not begun yet"); require(totalSupply() + quantity <= collectionSize, "reached max supply"); require(numberMinted(msg.sender) + quantity <= maxPerAddressMint,"can not mint this many"); require(msg.value >= publicPrice, "need to send more ETH."); _safeMint(msg.sender, quantity); } function burn(address target, uint256 quantity) public onlyOwner { require(totalSupply() + quantity <= collectionSize, "reached max supply"); _safeMint(target, quantity); } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } function getOwnershipData(uint256 tokenId) external view returns(TokenOwnership memory){ return ownershipOf(tokenId); } // metadata URI string private _aiBearURI; function _baseURI() internal view virtual override returns (string memory) { return _aiBearURI; } function setBaseURI(string calldata baseURI) external onlyOwner { _aiBearURI = baseURI; } // withdraw function withdrawMoney() external onlyOwner nonReentrant { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed."); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSize_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"publicPriceWei","type":"uint64"},{"internalType":"bool","name":"publicSaleKey","type":"bool"},{"internalType":"bool","name":"freeMintKey","type":"bool"}],"name":"endAuctionAndSetupNonAuctionSaleInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"freeMint","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":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"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":"maxPerAddressMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleConfig","outputs":[{"internalType":"uint64","name":"publicPrice","type":"uint64"},{"internalType":"bool","name":"publicSaleKey","type":"bool"},{"internalType":"bool","name":"freeMintKey","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60e0604052600060015560006008553480156200001b57600080fd5b506040516200519d3803806200519d8339818101604052810190620000419190620003bb565b6040518060400160405280600681526020017f41494245415200000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f41494245415200000000000000000000000000000000000000000000000000008152508383620000cf620000c36200022860201b60201c565b6200023060201b60201c565b6000811162000115576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200010c906200046c565b60405180910390fd5b600082116200015b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000152906200044a565b60405180910390fd5b836002908051906020019062000173929190620002f4565b5082600390805190602001906200018c929190620002f4565b508160a0818152505080608081815250505050505060016009819055508160c08181525050661550f7dca70000600a60000160006101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600a60000160086101000a81548160ff0219169083151502179055506000600a60000160096101000a81548160ff0219169083151502179055505050620005c6565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200030290620004a9565b90600052602060002090601f01602090048101928262000326576000855562000372565b82601f106200034157805160ff191683800117855562000372565b8280016001018555821562000372579182015b828111156200037157825182559160200191906001019062000354565b5b50905062000381919062000385565b5090565b5b80821115620003a057600081600090555060010162000386565b5090565b600081519050620003b581620005ac565b92915050565b60008060408385031215620003cf57600080fd5b6000620003df85828601620003a4565b9250506020620003f285828601620003a4565b9150509250929050565b60006200040b6027836200048e565b915062000418826200050e565b604082019050919050565b600062000432602e836200048e565b91506200043f826200055d565b604082019050919050565b600060208201905081810360008301526200046581620003fc565b9050919050565b60006020820190508181036000830152620004878162000423565b9050919050565b600082825260208201905092915050565b6000819050919050565b60006002820490506001821680620004c257607f821691505b60208210811415620004d957620004d8620004df565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b620005b7816200049f565b8114620005c357600080fd5b50565b60805160a05160c051614b8b6200061260003960008181610c9501526113060152600081816124330152818161245c0152612c33015260008181610c2001526116ac0152614b8b6000f3fe6080604052600436106101cd5760003560e01c80637b77368b116100f7578063a22cb46511610095578063d7224ba011610064578063d7224ba014610679578063dc33e681146106a4578063e985e9c5146106e1578063f2fde38b1461071e576101cd565b8063a22cb465146105d3578063ac446002146105fc578063b88d4fde14610613578063c87b56dd1461063c576101cd565b806390aa0b0f116100d157806390aa0b0f146105155780639231ab2a1461054257806395d89b411461057f5780639dc29fac146105aa576101cd565b80637b77368b146104965780637c928fe9146104c15780638da5cb5b146104ea576101cd565b80632f745c591161016f57806355f804b31161013e57806355f804b3146103dc5780636352211e1461040557806370a0823114610442578063715018a61461047f576101cd565b80632f745c591461031057806342842e0e1461034d5780634527a32c146103765780634f6ccce71461039f576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a057806323b872dd146102cb5780632db11544146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190613428565b610747565b6040516102069190613afa565b60405180910390f35b34801561021b57600080fd5b50610224610891565b6040516102319190613b15565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c91906134bf565b610923565b60405161026e9190613a93565b60405180910390f35b34801561028357600080fd5b5061029e600480360381019061029991906133ec565b6109a8565b005b3480156102ac57600080fd5b506102b5610ac1565b6040516102c29190613ed2565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed91906132e6565b610acb565b005b61030e600480360381019061030991906134bf565b610adb565b005b34801561031c57600080fd5b50610337600480360381019061033291906133ec565b610d5c565b6040516103449190613ed2565b60405180910390f35b34801561035957600080fd5b50610374600480360381019061036f91906132e6565b610f5a565b005b34801561038257600080fd5b5061039d600480360381019061039891906134e8565b610f7a565b005b3480156103ab57600080fd5b506103c660048036038101906103c191906134bf565b611098565b6040516103d39190613ed2565b60405180910390f35b3480156103e857600080fd5b5061040360048036038101906103fe919061347a565b6110eb565b005b34801561041157600080fd5b5061042c600480360381019061042791906134bf565b61117d565b6040516104399190613a93565b60405180910390f35b34801561044e57600080fd5b5061046960048036038101906104649190613281565b611193565b6040516104769190613ed2565b60405180910390f35b34801561048b57600080fd5b5061049461127c565b005b3480156104a257600080fd5b506104ab611304565b6040516104b89190613ed2565b60405180910390f35b3480156104cd57600080fd5b506104e860048036038101906104e391906134bf565b611328565b005b3480156104f657600080fd5b506104ff611515565b60405161050c9190613a93565b60405180910390f35b34801561052157600080fd5b5061052a61153e565b60405161053993929190613eed565b60405180910390f35b34801561054e57600080fd5b50610569600480360381019061056491906134bf565b611584565b6040516105769190613eb7565b60405180910390f35b34801561058b57600080fd5b5061059461159c565b6040516105a19190613b15565b60405180910390f35b3480156105b657600080fd5b506105d160048036038101906105cc91906133ec565b61162e565b005b3480156105df57600080fd5b506105fa60048036038101906105f591906133b0565b61172d565b005b34801561060857600080fd5b506106116118ae565b005b34801561061f57600080fd5b5061063a60048036038101906106359190613335565b611a2f565b005b34801561064857600080fd5b50610663600480360381019061065e91906134bf565b611a8b565b6040516106709190613b15565b60405180910390f35b34801561068557600080fd5b5061068e611b32565b60405161069b9190613ed2565b60405180910390f35b3480156106b057600080fd5b506106cb60048036038101906106c69190613281565b611b38565b6040516106d89190613ed2565b60405180910390f35b3480156106ed57600080fd5b50610708600480360381019061070391906132aa565b611b4a565b6040516107159190613afa565b60405180910390f35b34801561072a57600080fd5b5061074560048036038101906107409190613281565b611bde565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061081257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061087a57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061088a575061088982611cd6565b5b9050919050565b6060600280546108a09061420d565b80601f01602080910402602001604051908101604052809291908181526020018280546108cc9061420d565b80156109195780601f106108ee57610100808354040283529160200191610919565b820191906000526020600020905b8154815290600101906020018083116108fc57829003601f168201915b5050505050905090565b600061092e82611d40565b61096d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096490613e77565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109b38261117d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1b90613d37565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a43611d4e565b73ffffffffffffffffffffffffffffffffffffffff161480610a725750610a7181610a6c611d4e565b611b4a565b5b610ab1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa890613c17565b60405180910390fd5b610abc838383611d56565b505050565b6000600154905090565b610ad6838383611e08565b505050565b6000600a6040518060600160405290816000820160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016000820160089054906101000a900460ff161515151581526020016000820160099054906101000a900460ff16151515158152505090506000816020015190506000826000015167ffffffffffffffff1690503273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd590613df7565b60405180910390fd5b81610c1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1590613d17565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000084610c48610ac1565b610c52919061400e565b1115610c93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8a90613c57565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000084610cbe33611b38565b610cc8919061400e565b1115610d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0090613dd7565b60405180910390fd5b80341015610d4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4390613b57565b60405180910390fd5b610d5633856123c1565b50505050565b6000610d6783611193565b8210610da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9f90613b37565b60405180910390fd5b6000610db2610ac1565b905060008060005b83811015610f18576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610eac57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f045786841415610ef5578195505050505050610f54565b8380610f0090614270565b9450505b508080610f1090614270565b915050610dba565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4b90613e17565b60405180910390fd5b92915050565b610f7583838360405180602001604052806000815250611a2f565b505050565b610f82611d4e565b73ffffffffffffffffffffffffffffffffffffffff16610fa0611515565b73ffffffffffffffffffffffffffffffffffffffff1614610ff6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fed90613c97565b60405180910390fd5b60405180606001604052808467ffffffffffffffff1681526020018315158152602001821515815250600a60008201518160000160006101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060208201518160000160086101000a81548160ff02191690831515021790555060408201518160000160096101000a81548160ff021916908315150217905550905050505050565b60006110a2610ac1565b82106110e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110da90613bb7565b60405180910390fd5b819050919050565b6110f3611d4e565b73ffffffffffffffffffffffffffffffffffffffff16611111611515565b73ffffffffffffffffffffffffffffffffffffffff1614611167576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115e90613c97565b60405180910390fd5b8181600b9190611178929190613074565b505050565b6000611188826123df565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fb90613c37565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611284611d4e565b73ffffffffffffffffffffffffffffffffffffffff166112a2611515565b73ffffffffffffffffffffffffffffffffffffffff16146112f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ef90613c97565b60405180910390fd5b61130260006125e2565b565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600a6040518060600160405290816000820160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016000820160089054906101000a900460ff161515151581526020016000820160099054906101000a900460ff16151515158152505090506000816040015190503273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611418576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140f90613df7565b60405180910390fd5b80611458576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144f90613d17565b60405180910390fd5b6109c483611464610ac1565b61146e919061400e565b11156114af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a690613c57565b60405180910390fd5b6005836114bb33611b38565b6114c5919061400e565b1115611506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fd90613dd7565b60405180910390fd5b61151033846123c1565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a8060000160009054906101000a900467ffffffffffffffff16908060000160089054906101000a900460ff16908060000160099054906101000a900460ff16905083565b61158c6130fa565b611595826123df565b9050919050565b6060600380546115ab9061420d565b80601f01602080910402602001604051908101604052809291908181526020018280546115d79061420d565b80156116245780601f106115f957610100808354040283529160200191611624565b820191906000526020600020905b81548152906001019060200180831161160757829003601f168201915b5050505050905090565b611636611d4e565b73ffffffffffffffffffffffffffffffffffffffff16611654611515565b73ffffffffffffffffffffffffffffffffffffffff16146116aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a190613c97565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000816116d4610ac1565b6116de919061400e565b111561171f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171690613c57565b60405180910390fd5b61172982826123c1565b5050565b611735611d4e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179a90613cd7565b60405180910390fd5b80600760006117b0611d4e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661185d611d4e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118a29190613afa565b60405180910390a35050565b6118b6611d4e565b73ffffffffffffffffffffffffffffffffffffffff166118d4611515565b73ffffffffffffffffffffffffffffffffffffffff161461192a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192190613c97565b60405180910390fd5b60026009541415611970576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196790613e37565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff164760405161199e90613a7e565b60006040518083038185875af1925050503d80600081146119db576040519150601f19603f3d011682016040523d82523d6000602084013e6119e0565b606091505b5050905080611a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1b90613d57565b60405180910390fd5b506001600981905550565b611a3a848484611e08565b611a46848484846126a6565b611a85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7c90613d77565b60405180910390fd5b50505050565b6060611a9682611d40565b611ad5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acc90613cb7565b60405180910390fd5b6000611adf61283d565b90506000815111611aff5760405180602001604052806000815250611b2a565b80611b09846128cf565b604051602001611b1a929190613a5a565b6040516020818303038152906040525b915050919050565b60085481565b6000611b4382612a7c565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611be6611d4e565b73ffffffffffffffffffffffffffffffffffffffff16611c04611515565b73ffffffffffffffffffffffffffffffffffffffff1614611c5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5190613c97565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611cca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc190613b77565b60405180910390fd5b611cd3816125e2565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611e13826123df565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611e3a611d4e565b73ffffffffffffffffffffffffffffffffffffffff161480611e965750611e5f611d4e565b73ffffffffffffffffffffffffffffffffffffffff16611e7e84610923565b73ffffffffffffffffffffffffffffffffffffffff16145b80611eb25750611eb18260000151611eac611d4e565b611b4a565b5b905080611ef4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eeb90613cf7565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611f66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5d90613c77565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611fd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fcd90613bd7565b60405180910390fd5b611fe38585856001612b65565b611ff36000848460000151611d56565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166120619190614095565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166121059190613fc8565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600060018461220b919061400e565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156123515761228181611d40565b15612350576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123b98686866001612b6b565b505050505050565b6123db828260405180602001604052806000815250612b71565b5050565b6123e76130fa565b6123f082611d40565b61242f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242690613b97565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106124935760017f00000000000000000000000000000000000000000000000000000000000000008461248691906140c9565b612490919061400e565b90505b60008390505b8181106125a1576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461258d578093505050506125dd565b508080612599906141e3565b915050612499565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d490613e57565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006126c78473ffffffffffffffffffffffffffffffffffffffff16613051565b15612830578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126f0611d4e565b8786866040518563ffffffff1660e01b81526004016127129493929190613aae565b602060405180830381600087803b15801561272c57600080fd5b505af192505050801561275d57506040513d601f19601f8201168201806040525081019061275a9190613451565b60015b6127e0573d806000811461278d576040519150601f19603f3d011682016040523d82523d6000602084013e612792565b606091505b506000815114156127d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127cf90613d77565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612835565b600190505b949350505050565b6060600b805461284c9061420d565b80601f01602080910402602001604051908101604052809291908181526020018280546128789061420d565b80156128c55780601f1061289a576101008083540402835291602001916128c5565b820191906000526020600020905b8154815290600101906020018083116128a857829003601f168201915b5050505050905090565b60606000821415612917576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a77565b600082905060005b6000821461294957808061293290614270565b915050600a826129429190614064565b915061291f565b60008167ffffffffffffffff81111561298b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156129bd5781602001600182028036833780820191505090505b5090505b60008514612a70576001826129d691906140c9565b9150600a856129e591906142b9565b60306129f1919061400e565b60f81b818381518110612a2d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a699190614064565b94506129c1565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612aed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae490613bf7565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bdf90613db7565b60405180910390fd5b612bf181611d40565b15612c31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2890613d97565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115612c94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8b90613e97565b60405180910390fd5b612ca16000858386612b65565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612d9e9190613fc8565b6fffffffffffffffffffffffffffffffff168152602001858360200151612dc59190613fc8565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561303457818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612fd460008884886126a6565b613013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161300a90613d77565b60405180910390fd5b818061301e90614270565b925050808061302c90614270565b915050612f63565b50806001819055506130496000878588612b6b565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546130809061420d565b90600052602060002090601f0160209004810192826130a257600085556130e9565b82601f106130bb57803560ff19168380011785556130e9565b828001600101855582156130e9579182015b828111156130e85782358255916020019190600101906130cd565b5b5090506130f69190613134565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561314d576000816000905550600101613135565b5090565b600061316461315f84613f49565b613f24565b90508281526020810184848401111561317c57600080fd5b6131878482856141a1565b509392505050565b60008135905061319e81614ae2565b92915050565b6000813590506131b381614af9565b92915050565b6000813590506131c881614b10565b92915050565b6000815190506131dd81614b10565b92915050565b600082601f8301126131f457600080fd5b8135613204848260208601613151565b91505092915050565b60008083601f84011261321f57600080fd5b8235905067ffffffffffffffff81111561323857600080fd5b60208301915083600182028301111561325057600080fd5b9250929050565b60008135905061326681614b27565b92915050565b60008135905061327b81614b3e565b92915050565b60006020828403121561329357600080fd5b60006132a18482850161318f565b91505092915050565b600080604083850312156132bd57600080fd5b60006132cb8582860161318f565b92505060206132dc8582860161318f565b9150509250929050565b6000806000606084860312156132fb57600080fd5b60006133098682870161318f565b935050602061331a8682870161318f565b925050604061332b86828701613257565b9150509250925092565b6000806000806080858703121561334b57600080fd5b60006133598782880161318f565b945050602061336a8782880161318f565b935050604061337b87828801613257565b925050606085013567ffffffffffffffff81111561339857600080fd5b6133a4878288016131e3565b91505092959194509250565b600080604083850312156133c357600080fd5b60006133d18582860161318f565b92505060206133e2858286016131a4565b9150509250929050565b600080604083850312156133ff57600080fd5b600061340d8582860161318f565b925050602061341e85828601613257565b9150509250929050565b60006020828403121561343a57600080fd5b6000613448848285016131b9565b91505092915050565b60006020828403121561346357600080fd5b6000613471848285016131ce565b91505092915050565b6000806020838503121561348d57600080fd5b600083013567ffffffffffffffff8111156134a757600080fd5b6134b38582860161320d565b92509250509250929050565b6000602082840312156134d157600080fd5b60006134df84828501613257565b91505092915050565b6000806000606084860312156134fd57600080fd5b600061350b8682870161326c565b935050602061351c868287016131a4565b925050604061352d868287016131a4565b9150509250925092565b613540816140fd565b82525050565b61354f816140fd565b82525050565b61355e8161410f565b82525050565b600061356f82613f7a565b6135798185613f90565b93506135898185602086016141b0565b613592816143a6565b840191505092915050565b60006135a882613f85565b6135b28185613fac565b93506135c28185602086016141b0565b6135cb816143a6565b840191505092915050565b60006135e182613f85565b6135eb8185613fbd565b93506135fb8185602086016141b0565b80840191505092915050565b6000613614602283613fac565b915061361f826143b7565b604082019050919050565b6000613637601683613fac565b915061364282614406565b602082019050919050565b600061365a602683613fac565b91506136658261442f565b604082019050919050565b600061367d602a83613fac565b91506136888261447e565b604082019050919050565b60006136a0602383613fac565b91506136ab826144cd565b604082019050919050565b60006136c3602583613fac565b91506136ce8261451c565b604082019050919050565b60006136e6603183613fac565b91506136f18261456b565b604082019050919050565b6000613709603983613fac565b9150613714826145ba565b604082019050919050565b600061372c602b83613fac565b915061373782614609565b604082019050919050565b600061374f601283613fac565b915061375a82614658565b602082019050919050565b6000613772602683613fac565b915061377d82614681565b604082019050919050565b6000613795602083613fac565b91506137a0826146d0565b602082019050919050565b60006137b8602f83613fac565b91506137c3826146f9565b604082019050919050565b60006137db601a83613fac565b91506137e682614748565b602082019050919050565b60006137fe603283613fac565b915061380982614771565b604082019050919050565b6000613821601d83613fac565b915061382c826147c0565b602082019050919050565b6000613844602283613fac565b915061384f826147e9565b604082019050919050565b6000613867600083613fa1565b915061387282614838565b600082019050919050565b600061388a601083613fac565b91506138958261483b565b602082019050919050565b60006138ad603383613fac565b91506138b882614864565b604082019050919050565b60006138d0601d83613fac565b91506138db826148b3565b602082019050919050565b60006138f3602183613fac565b91506138fe826148dc565b604082019050919050565b6000613916601683613fac565b91506139218261492b565b602082019050919050565b6000613939601e83613fac565b915061394482614954565b602082019050919050565b600061395c602e83613fac565b91506139678261497d565b604082019050919050565b600061397f601f83613fac565b915061398a826149cc565b602082019050919050565b60006139a2602f83613fac565b91506139ad826149f5565b604082019050919050565b60006139c5602d83613fac565b91506139d082614a44565b604082019050919050565b60006139e8602283613fac565b91506139f382614a93565b604082019050919050565b604082016000820151613a146000850182613537565b506020820151613a276020850182613a3c565b50505050565b613a3681614183565b82525050565b613a458161418d565b82525050565b613a548161418d565b82525050565b6000613a6682856135d6565b9150613a7282846135d6565b91508190509392505050565b6000613a898261385a565b9150819050919050565b6000602082019050613aa86000830184613546565b92915050565b6000608082019050613ac36000830187613546565b613ad06020830186613546565b613add6040830185613a2d565b8181036060830152613aef8184613564565b905095945050505050565b6000602082019050613b0f6000830184613555565b92915050565b60006020820190508181036000830152613b2f818461359d565b905092915050565b60006020820190508181036000830152613b5081613607565b9050919050565b60006020820190508181036000830152613b708161362a565b9050919050565b60006020820190508181036000830152613b908161364d565b9050919050565b60006020820190508181036000830152613bb081613670565b9050919050565b60006020820190508181036000830152613bd081613693565b9050919050565b60006020820190508181036000830152613bf0816136b6565b9050919050565b60006020820190508181036000830152613c10816136d9565b9050919050565b60006020820190508181036000830152613c30816136fc565b9050919050565b60006020820190508181036000830152613c508161371f565b9050919050565b60006020820190508181036000830152613c7081613742565b9050919050565b60006020820190508181036000830152613c9081613765565b9050919050565b60006020820190508181036000830152613cb081613788565b9050919050565b60006020820190508181036000830152613cd0816137ab565b9050919050565b60006020820190508181036000830152613cf0816137ce565b9050919050565b60006020820190508181036000830152613d10816137f1565b9050919050565b60006020820190508181036000830152613d3081613814565b9050919050565b60006020820190508181036000830152613d5081613837565b9050919050565b60006020820190508181036000830152613d708161387d565b9050919050565b60006020820190508181036000830152613d90816138a0565b9050919050565b60006020820190508181036000830152613db0816138c3565b9050919050565b60006020820190508181036000830152613dd0816138e6565b9050919050565b60006020820190508181036000830152613df081613909565b9050919050565b60006020820190508181036000830152613e108161392c565b9050919050565b60006020820190508181036000830152613e308161394f565b9050919050565b60006020820190508181036000830152613e5081613972565b9050919050565b60006020820190508181036000830152613e7081613995565b9050919050565b60006020820190508181036000830152613e90816139b8565b9050919050565b60006020820190508181036000830152613eb0816139db565b9050919050565b6000604082019050613ecc60008301846139fe565b92915050565b6000602082019050613ee76000830184613a2d565b92915050565b6000606082019050613f026000830186613a4b565b613f0f6020830185613555565b613f1c6040830184613555565b949350505050565b6000613f2e613f3f565b9050613f3a828261423f565b919050565b6000604051905090565b600067ffffffffffffffff821115613f6457613f63614377565b5b613f6d826143a6565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613fd382614147565b9150613fde83614147565b9250826fffffffffffffffffffffffffffffffff03821115614003576140026142ea565b5b828201905092915050565b600061401982614183565b915061402483614183565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614059576140586142ea565b5b828201905092915050565b600061406f82614183565b915061407a83614183565b92508261408a57614089614319565b5b828204905092915050565b60006140a082614147565b91506140ab83614147565b9250828210156140be576140bd6142ea565b5b828203905092915050565b60006140d482614183565b91506140df83614183565b9250828210156140f2576140f16142ea565b5b828203905092915050565b600061410882614163565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156141ce5780820151818401526020810190506141b3565b838111156141dd576000848401525b50505050565b60006141ee82614183565b91506000821415614202576142016142ea565b5b600182039050919050565b6000600282049050600182168061422557607f821691505b6020821081141561423957614238614348565b5b50919050565b614248826143a6565b810181811067ffffffffffffffff8211171561426757614266614377565b5b80604052505050565b600061427b82614183565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156142ae576142ad6142ea565b5b600182019050919050565b60006142c482614183565b91506142cf83614183565b9250826142df576142de614319565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f6e65656420746f2073656e64206d6f7265204554482e00000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f72656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f7075626c69632073616c6520686173206e6f7420626567756e20796574000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f63616e206e6f74206d696e742074686973206d616e7900000000000000000000600082015250565b7f7468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b614aeb816140fd565b8114614af657600080fd5b50565b614b028161410f565b8114614b0d57600080fd5b50565b614b198161411b565b8114614b2457600080fd5b50565b614b3081614183565b8114614b3b57600080fd5b50565b614b478161418d565b8114614b5257600080fd5b5056fea26469706673582212200a3508389726fe1bb3c534e779b96eaa07e5ed869b93faba455a143e7f8541ca64736f6c63430008020033000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000002710
Deployed Bytecode
0x6080604052600436106101cd5760003560e01c80637b77368b116100f7578063a22cb46511610095578063d7224ba011610064578063d7224ba014610679578063dc33e681146106a4578063e985e9c5146106e1578063f2fde38b1461071e576101cd565b8063a22cb465146105d3578063ac446002146105fc578063b88d4fde14610613578063c87b56dd1461063c576101cd565b806390aa0b0f116100d157806390aa0b0f146105155780639231ab2a1461054257806395d89b411461057f5780639dc29fac146105aa576101cd565b80637b77368b146104965780637c928fe9146104c15780638da5cb5b146104ea576101cd565b80632f745c591161016f57806355f804b31161013e57806355f804b3146103dc5780636352211e1461040557806370a0823114610442578063715018a61461047f576101cd565b80632f745c591461031057806342842e0e1461034d5780634527a32c146103765780634f6ccce71461039f576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a057806323b872dd146102cb5780632db11544146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190613428565b610747565b6040516102069190613afa565b60405180910390f35b34801561021b57600080fd5b50610224610891565b6040516102319190613b15565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c91906134bf565b610923565b60405161026e9190613a93565b60405180910390f35b34801561028357600080fd5b5061029e600480360381019061029991906133ec565b6109a8565b005b3480156102ac57600080fd5b506102b5610ac1565b6040516102c29190613ed2565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed91906132e6565b610acb565b005b61030e600480360381019061030991906134bf565b610adb565b005b34801561031c57600080fd5b50610337600480360381019061033291906133ec565b610d5c565b6040516103449190613ed2565b60405180910390f35b34801561035957600080fd5b50610374600480360381019061036f91906132e6565b610f5a565b005b34801561038257600080fd5b5061039d600480360381019061039891906134e8565b610f7a565b005b3480156103ab57600080fd5b506103c660048036038101906103c191906134bf565b611098565b6040516103d39190613ed2565b60405180910390f35b3480156103e857600080fd5b5061040360048036038101906103fe919061347a565b6110eb565b005b34801561041157600080fd5b5061042c600480360381019061042791906134bf565b61117d565b6040516104399190613a93565b60405180910390f35b34801561044e57600080fd5b5061046960048036038101906104649190613281565b611193565b6040516104769190613ed2565b60405180910390f35b34801561048b57600080fd5b5061049461127c565b005b3480156104a257600080fd5b506104ab611304565b6040516104b89190613ed2565b60405180910390f35b3480156104cd57600080fd5b506104e860048036038101906104e391906134bf565b611328565b005b3480156104f657600080fd5b506104ff611515565b60405161050c9190613a93565b60405180910390f35b34801561052157600080fd5b5061052a61153e565b60405161053993929190613eed565b60405180910390f35b34801561054e57600080fd5b50610569600480360381019061056491906134bf565b611584565b6040516105769190613eb7565b60405180910390f35b34801561058b57600080fd5b5061059461159c565b6040516105a19190613b15565b60405180910390f35b3480156105b657600080fd5b506105d160048036038101906105cc91906133ec565b61162e565b005b3480156105df57600080fd5b506105fa60048036038101906105f591906133b0565b61172d565b005b34801561060857600080fd5b506106116118ae565b005b34801561061f57600080fd5b5061063a60048036038101906106359190613335565b611a2f565b005b34801561064857600080fd5b50610663600480360381019061065e91906134bf565b611a8b565b6040516106709190613b15565b60405180910390f35b34801561068557600080fd5b5061068e611b32565b60405161069b9190613ed2565b60405180910390f35b3480156106b057600080fd5b506106cb60048036038101906106c69190613281565b611b38565b6040516106d89190613ed2565b60405180910390f35b3480156106ed57600080fd5b50610708600480360381019061070391906132aa565b611b4a565b6040516107159190613afa565b60405180910390f35b34801561072a57600080fd5b5061074560048036038101906107409190613281565b611bde565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061081257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061087a57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061088a575061088982611cd6565b5b9050919050565b6060600280546108a09061420d565b80601f01602080910402602001604051908101604052809291908181526020018280546108cc9061420d565b80156109195780601f106108ee57610100808354040283529160200191610919565b820191906000526020600020905b8154815290600101906020018083116108fc57829003601f168201915b5050505050905090565b600061092e82611d40565b61096d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096490613e77565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109b38261117d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1b90613d37565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a43611d4e565b73ffffffffffffffffffffffffffffffffffffffff161480610a725750610a7181610a6c611d4e565b611b4a565b5b610ab1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa890613c17565b60405180910390fd5b610abc838383611d56565b505050565b6000600154905090565b610ad6838383611e08565b505050565b6000600a6040518060600160405290816000820160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016000820160089054906101000a900460ff161515151581526020016000820160099054906101000a900460ff16151515158152505090506000816020015190506000826000015167ffffffffffffffff1690503273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd590613df7565b60405180910390fd5b81610c1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1590613d17565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000271084610c48610ac1565b610c52919061400e565b1115610c93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8a90613c57565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000a84610cbe33611b38565b610cc8919061400e565b1115610d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0090613dd7565b60405180910390fd5b80341015610d4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4390613b57565b60405180910390fd5b610d5633856123c1565b50505050565b6000610d6783611193565b8210610da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9f90613b37565b60405180910390fd5b6000610db2610ac1565b905060008060005b83811015610f18576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610eac57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f045786841415610ef5578195505050505050610f54565b8380610f0090614270565b9450505b508080610f1090614270565b915050610dba565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4b90613e17565b60405180910390fd5b92915050565b610f7583838360405180602001604052806000815250611a2f565b505050565b610f82611d4e565b73ffffffffffffffffffffffffffffffffffffffff16610fa0611515565b73ffffffffffffffffffffffffffffffffffffffff1614610ff6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fed90613c97565b60405180910390fd5b60405180606001604052808467ffffffffffffffff1681526020018315158152602001821515815250600a60008201518160000160006101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060208201518160000160086101000a81548160ff02191690831515021790555060408201518160000160096101000a81548160ff021916908315150217905550905050505050565b60006110a2610ac1565b82106110e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110da90613bb7565b60405180910390fd5b819050919050565b6110f3611d4e565b73ffffffffffffffffffffffffffffffffffffffff16611111611515565b73ffffffffffffffffffffffffffffffffffffffff1614611167576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115e90613c97565b60405180910390fd5b8181600b9190611178929190613074565b505050565b6000611188826123df565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fb90613c37565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611284611d4e565b73ffffffffffffffffffffffffffffffffffffffff166112a2611515565b73ffffffffffffffffffffffffffffffffffffffff16146112f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ef90613c97565b60405180910390fd5b61130260006125e2565b565b7f000000000000000000000000000000000000000000000000000000000000000a81565b6000600a6040518060600160405290816000820160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016000820160089054906101000a900460ff161515151581526020016000820160099054906101000a900460ff16151515158152505090506000816040015190503273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611418576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140f90613df7565b60405180910390fd5b80611458576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144f90613d17565b60405180910390fd5b6109c483611464610ac1565b61146e919061400e565b11156114af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a690613c57565b60405180910390fd5b6005836114bb33611b38565b6114c5919061400e565b1115611506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fd90613dd7565b60405180910390fd5b61151033846123c1565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a8060000160009054906101000a900467ffffffffffffffff16908060000160089054906101000a900460ff16908060000160099054906101000a900460ff16905083565b61158c6130fa565b611595826123df565b9050919050565b6060600380546115ab9061420d565b80601f01602080910402602001604051908101604052809291908181526020018280546115d79061420d565b80156116245780601f106115f957610100808354040283529160200191611624565b820191906000526020600020905b81548152906001019060200180831161160757829003601f168201915b5050505050905090565b611636611d4e565b73ffffffffffffffffffffffffffffffffffffffff16611654611515565b73ffffffffffffffffffffffffffffffffffffffff16146116aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a190613c97565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000002710816116d4610ac1565b6116de919061400e565b111561171f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171690613c57565b60405180910390fd5b61172982826123c1565b5050565b611735611d4e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179a90613cd7565b60405180910390fd5b80600760006117b0611d4e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661185d611d4e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118a29190613afa565b60405180910390a35050565b6118b6611d4e565b73ffffffffffffffffffffffffffffffffffffffff166118d4611515565b73ffffffffffffffffffffffffffffffffffffffff161461192a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192190613c97565b60405180910390fd5b60026009541415611970576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196790613e37565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff164760405161199e90613a7e565b60006040518083038185875af1925050503d80600081146119db576040519150601f19603f3d011682016040523d82523d6000602084013e6119e0565b606091505b5050905080611a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1b90613d57565b60405180910390fd5b506001600981905550565b611a3a848484611e08565b611a46848484846126a6565b611a85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7c90613d77565b60405180910390fd5b50505050565b6060611a9682611d40565b611ad5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acc90613cb7565b60405180910390fd5b6000611adf61283d565b90506000815111611aff5760405180602001604052806000815250611b2a565b80611b09846128cf565b604051602001611b1a929190613a5a565b6040516020818303038152906040525b915050919050565b60085481565b6000611b4382612a7c565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611be6611d4e565b73ffffffffffffffffffffffffffffffffffffffff16611c04611515565b73ffffffffffffffffffffffffffffffffffffffff1614611c5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5190613c97565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611cca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc190613b77565b60405180910390fd5b611cd3816125e2565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611e13826123df565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611e3a611d4e565b73ffffffffffffffffffffffffffffffffffffffff161480611e965750611e5f611d4e565b73ffffffffffffffffffffffffffffffffffffffff16611e7e84610923565b73ffffffffffffffffffffffffffffffffffffffff16145b80611eb25750611eb18260000151611eac611d4e565b611b4a565b5b905080611ef4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eeb90613cf7565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611f66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5d90613c77565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611fd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fcd90613bd7565b60405180910390fd5b611fe38585856001612b65565b611ff36000848460000151611d56565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166120619190614095565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166121059190613fc8565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600060018461220b919061400e565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156123515761228181611d40565b15612350576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123b98686866001612b6b565b505050505050565b6123db828260405180602001604052806000815250612b71565b5050565b6123e76130fa565b6123f082611d40565b61242f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242690613b97565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000a83106124935760017f000000000000000000000000000000000000000000000000000000000000000a8461248691906140c9565b612490919061400e565b90505b60008390505b8181106125a1576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461258d578093505050506125dd565b508080612599906141e3565b915050612499565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d490613e57565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006126c78473ffffffffffffffffffffffffffffffffffffffff16613051565b15612830578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126f0611d4e565b8786866040518563ffffffff1660e01b81526004016127129493929190613aae565b602060405180830381600087803b15801561272c57600080fd5b505af192505050801561275d57506040513d601f19601f8201168201806040525081019061275a9190613451565b60015b6127e0573d806000811461278d576040519150601f19603f3d011682016040523d82523d6000602084013e612792565b606091505b506000815114156127d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127cf90613d77565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612835565b600190505b949350505050565b6060600b805461284c9061420d565b80601f01602080910402602001604051908101604052809291908181526020018280546128789061420d565b80156128c55780601f1061289a576101008083540402835291602001916128c5565b820191906000526020600020905b8154815290600101906020018083116128a857829003601f168201915b5050505050905090565b60606000821415612917576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a77565b600082905060005b6000821461294957808061293290614270565b915050600a826129429190614064565b915061291f565b60008167ffffffffffffffff81111561298b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156129bd5781602001600182028036833780820191505090505b5090505b60008514612a70576001826129d691906140c9565b9150600a856129e591906142b9565b60306129f1919061400e565b60f81b818381518110612a2d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a699190614064565b94506129c1565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612aed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae490613bf7565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bdf90613db7565b60405180910390fd5b612bf181611d40565b15612c31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2890613d97565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000a831115612c94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8b90613e97565b60405180910390fd5b612ca16000858386612b65565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612d9e9190613fc8565b6fffffffffffffffffffffffffffffffff168152602001858360200151612dc59190613fc8565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561303457818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612fd460008884886126a6565b613013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161300a90613d77565b60405180910390fd5b818061301e90614270565b925050808061302c90614270565b915050612f63565b50806001819055506130496000878588612b6b565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546130809061420d565b90600052602060002090601f0160209004810192826130a257600085556130e9565b82601f106130bb57803560ff19168380011785556130e9565b828001600101855582156130e9579182015b828111156130e85782358255916020019190600101906130cd565b5b5090506130f69190613134565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561314d576000816000905550600101613135565b5090565b600061316461315f84613f49565b613f24565b90508281526020810184848401111561317c57600080fd5b6131878482856141a1565b509392505050565b60008135905061319e81614ae2565b92915050565b6000813590506131b381614af9565b92915050565b6000813590506131c881614b10565b92915050565b6000815190506131dd81614b10565b92915050565b600082601f8301126131f457600080fd5b8135613204848260208601613151565b91505092915050565b60008083601f84011261321f57600080fd5b8235905067ffffffffffffffff81111561323857600080fd5b60208301915083600182028301111561325057600080fd5b9250929050565b60008135905061326681614b27565b92915050565b60008135905061327b81614b3e565b92915050565b60006020828403121561329357600080fd5b60006132a18482850161318f565b91505092915050565b600080604083850312156132bd57600080fd5b60006132cb8582860161318f565b92505060206132dc8582860161318f565b9150509250929050565b6000806000606084860312156132fb57600080fd5b60006133098682870161318f565b935050602061331a8682870161318f565b925050604061332b86828701613257565b9150509250925092565b6000806000806080858703121561334b57600080fd5b60006133598782880161318f565b945050602061336a8782880161318f565b935050604061337b87828801613257565b925050606085013567ffffffffffffffff81111561339857600080fd5b6133a4878288016131e3565b91505092959194509250565b600080604083850312156133c357600080fd5b60006133d18582860161318f565b92505060206133e2858286016131a4565b9150509250929050565b600080604083850312156133ff57600080fd5b600061340d8582860161318f565b925050602061341e85828601613257565b9150509250929050565b60006020828403121561343a57600080fd5b6000613448848285016131b9565b91505092915050565b60006020828403121561346357600080fd5b6000613471848285016131ce565b91505092915050565b6000806020838503121561348d57600080fd5b600083013567ffffffffffffffff8111156134a757600080fd5b6134b38582860161320d565b92509250509250929050565b6000602082840312156134d157600080fd5b60006134df84828501613257565b91505092915050565b6000806000606084860312156134fd57600080fd5b600061350b8682870161326c565b935050602061351c868287016131a4565b925050604061352d868287016131a4565b9150509250925092565b613540816140fd565b82525050565b61354f816140fd565b82525050565b61355e8161410f565b82525050565b600061356f82613f7a565b6135798185613f90565b93506135898185602086016141b0565b613592816143a6565b840191505092915050565b60006135a882613f85565b6135b28185613fac565b93506135c28185602086016141b0565b6135cb816143a6565b840191505092915050565b60006135e182613f85565b6135eb8185613fbd565b93506135fb8185602086016141b0565b80840191505092915050565b6000613614602283613fac565b915061361f826143b7565b604082019050919050565b6000613637601683613fac565b915061364282614406565b602082019050919050565b600061365a602683613fac565b91506136658261442f565b604082019050919050565b600061367d602a83613fac565b91506136888261447e565b604082019050919050565b60006136a0602383613fac565b91506136ab826144cd565b604082019050919050565b60006136c3602583613fac565b91506136ce8261451c565b604082019050919050565b60006136e6603183613fac565b91506136f18261456b565b604082019050919050565b6000613709603983613fac565b9150613714826145ba565b604082019050919050565b600061372c602b83613fac565b915061373782614609565b604082019050919050565b600061374f601283613fac565b915061375a82614658565b602082019050919050565b6000613772602683613fac565b915061377d82614681565b604082019050919050565b6000613795602083613fac565b91506137a0826146d0565b602082019050919050565b60006137b8602f83613fac565b91506137c3826146f9565b604082019050919050565b60006137db601a83613fac565b91506137e682614748565b602082019050919050565b60006137fe603283613fac565b915061380982614771565b604082019050919050565b6000613821601d83613fac565b915061382c826147c0565b602082019050919050565b6000613844602283613fac565b915061384f826147e9565b604082019050919050565b6000613867600083613fa1565b915061387282614838565b600082019050919050565b600061388a601083613fac565b91506138958261483b565b602082019050919050565b60006138ad603383613fac565b91506138b882614864565b604082019050919050565b60006138d0601d83613fac565b91506138db826148b3565b602082019050919050565b60006138f3602183613fac565b91506138fe826148dc565b604082019050919050565b6000613916601683613fac565b91506139218261492b565b602082019050919050565b6000613939601e83613fac565b915061394482614954565b602082019050919050565b600061395c602e83613fac565b91506139678261497d565b604082019050919050565b600061397f601f83613fac565b915061398a826149cc565b602082019050919050565b60006139a2602f83613fac565b91506139ad826149f5565b604082019050919050565b60006139c5602d83613fac565b91506139d082614a44565b604082019050919050565b60006139e8602283613fac565b91506139f382614a93565b604082019050919050565b604082016000820151613a146000850182613537565b506020820151613a276020850182613a3c565b50505050565b613a3681614183565b82525050565b613a458161418d565b82525050565b613a548161418d565b82525050565b6000613a6682856135d6565b9150613a7282846135d6565b91508190509392505050565b6000613a898261385a565b9150819050919050565b6000602082019050613aa86000830184613546565b92915050565b6000608082019050613ac36000830187613546565b613ad06020830186613546565b613add6040830185613a2d565b8181036060830152613aef8184613564565b905095945050505050565b6000602082019050613b0f6000830184613555565b92915050565b60006020820190508181036000830152613b2f818461359d565b905092915050565b60006020820190508181036000830152613b5081613607565b9050919050565b60006020820190508181036000830152613b708161362a565b9050919050565b60006020820190508181036000830152613b908161364d565b9050919050565b60006020820190508181036000830152613bb081613670565b9050919050565b60006020820190508181036000830152613bd081613693565b9050919050565b60006020820190508181036000830152613bf0816136b6565b9050919050565b60006020820190508181036000830152613c10816136d9565b9050919050565b60006020820190508181036000830152613c30816136fc565b9050919050565b60006020820190508181036000830152613c508161371f565b9050919050565b60006020820190508181036000830152613c7081613742565b9050919050565b60006020820190508181036000830152613c9081613765565b9050919050565b60006020820190508181036000830152613cb081613788565b9050919050565b60006020820190508181036000830152613cd0816137ab565b9050919050565b60006020820190508181036000830152613cf0816137ce565b9050919050565b60006020820190508181036000830152613d10816137f1565b9050919050565b60006020820190508181036000830152613d3081613814565b9050919050565b60006020820190508181036000830152613d5081613837565b9050919050565b60006020820190508181036000830152613d708161387d565b9050919050565b60006020820190508181036000830152613d90816138a0565b9050919050565b60006020820190508181036000830152613db0816138c3565b9050919050565b60006020820190508181036000830152613dd0816138e6565b9050919050565b60006020820190508181036000830152613df081613909565b9050919050565b60006020820190508181036000830152613e108161392c565b9050919050565b60006020820190508181036000830152613e308161394f565b9050919050565b60006020820190508181036000830152613e5081613972565b9050919050565b60006020820190508181036000830152613e7081613995565b9050919050565b60006020820190508181036000830152613e90816139b8565b9050919050565b60006020820190508181036000830152613eb0816139db565b9050919050565b6000604082019050613ecc60008301846139fe565b92915050565b6000602082019050613ee76000830184613a2d565b92915050565b6000606082019050613f026000830186613a4b565b613f0f6020830185613555565b613f1c6040830184613555565b949350505050565b6000613f2e613f3f565b9050613f3a828261423f565b919050565b6000604051905090565b600067ffffffffffffffff821115613f6457613f63614377565b5b613f6d826143a6565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613fd382614147565b9150613fde83614147565b9250826fffffffffffffffffffffffffffffffff03821115614003576140026142ea565b5b828201905092915050565b600061401982614183565b915061402483614183565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614059576140586142ea565b5b828201905092915050565b600061406f82614183565b915061407a83614183565b92508261408a57614089614319565b5b828204905092915050565b60006140a082614147565b91506140ab83614147565b9250828210156140be576140bd6142ea565b5b828203905092915050565b60006140d482614183565b91506140df83614183565b9250828210156140f2576140f16142ea565b5b828203905092915050565b600061410882614163565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156141ce5780820151818401526020810190506141b3565b838111156141dd576000848401525b50505050565b60006141ee82614183565b91506000821415614202576142016142ea565b5b600182039050919050565b6000600282049050600182168061422557607f821691505b6020821081141561423957614238614348565b5b50919050565b614248826143a6565b810181811067ffffffffffffffff8211171561426757614266614377565b5b80604052505050565b600061427b82614183565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156142ae576142ad6142ea565b5b600182019050919050565b60006142c482614183565b91506142cf83614183565b9250826142df576142de614319565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f6e65656420746f2073656e64206d6f7265204554482e00000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f72656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f7075626c69632073616c6520686173206e6f7420626567756e20796574000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f63616e206e6f74206d696e742074686973206d616e7900000000000000000000600082015250565b7f7468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b614aeb816140fd565b8114614af657600080fd5b50565b614b028161410f565b8114614b0d57600080fd5b50565b614b198161411b565b8114614b2457600080fd5b50565b614b3081614183565b8114614b3b57600080fd5b50565b614b478161418d565b8114614b5257600080fd5b5056fea26469706673582212200a3508389726fe1bb3c534e779b96eaa07e5ed869b93faba455a143e7f8541ca64736f6c63430008020033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000002710
-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 10
Arg [1] : collectionSize_ (uint256): 10000
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [1] : 0000000000000000000000000000000000000000000000000000000000002710
Deployed Bytecode Sourcemap
37074:2790:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22939:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24665:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26190:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25753:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21500:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27040:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38328:630;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22131:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27245:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37612:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21663:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39562:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24488:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23365:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11606:103;;;;;;;;;;;;;:::i;:::-;;37136:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37856:466;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10955:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37286:28;;;;;;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;39267:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24820:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38964:184;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26458:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39680:181;;;;;;;;;;;;;:::i;:::-;;27465:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24981:394;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31880:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39154:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26795:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11864:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22939:370;23066:4;23111:25;23096:40;;;:11;:40;;;;:99;;;;23162:33;23147:48;;;:11;:48;;;;23096:99;:160;;;;23221:35;23206:50;;;:11;:50;;;;23096:160;:207;;;;23267:36;23291:11;23267:23;:36::i;:::-;23096:207;23082:221;;22939:370;;;:::o;24665:94::-;24719:13;24748:5;24741:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24665:94;:::o;26190:204::-;26258:7;26282:16;26290:7;26282;:16::i;:::-;26274:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;26364:15;:24;26380:7;26364:24;;;;;;;;;;;;;;;;;;;;;26357:31;;26190:204;;;:::o;25753:379::-;25822:13;25838:24;25854:7;25838:15;:24::i;:::-;25822:40;;25883:5;25877:11;;:2;:11;;;;25869:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;25968:5;25952:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;25977:37;25994:5;26001:12;:10;:12::i;:::-;25977:16;:37::i;:::-;25952:62;25936:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;26098:28;26107:2;26111:7;26120:5;26098:8;:28::i;:::-;25753:379;;;:::o;21500:94::-;21553:7;21576:12;;21569:19;;21500:94;:::o;27040:142::-;27148:28;27158:4;27164:2;27168:7;27148:9;:28::i;:::-;27040:142;;;:::o;38328:630::-;38390:24;38417:10;38390:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38434:18;38460:6;:20;;;38434:47;;38488:19;38518:6;:18;;;38510:27;;38488:49;;38566:9;38552:23;;:10;:23;;;38544:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;38625:13;38617:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;38714:14;38702:8;38686:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:42;;38678:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;38805:17;38793:8;38766:24;38779:10;38766:12;:24::i;:::-;:35;;;;:::i;:::-;:56;;38758:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;38876:11;38863:9;:24;;38855:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;38921:31;38931:10;38943:8;38921:9;:31::i;:::-;38328:630;;;;:::o;22131:744::-;22240:7;22275:16;22285:5;22275:9;:16::i;:::-;22267:5;:24;22259:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;22337:22;22362:13;:11;:13::i;:::-;22337:38;;22382:19;22412:25;22462:9;22457:350;22481:14;22477:1;:18;22457:350;;;22511:31;22545:11;:14;22557:1;22545:14;;;;;;;;;;;22511:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22598:1;22572:28;;:9;:14;;;:28;;;22568:89;;22633:9;:14;;;22613:34;;22568:89;22690:5;22669:26;;:17;:26;;;22665:135;;;22727:5;22712:11;:20;22708:59;;;22754:1;22747:8;;;;;;;;;22708:59;22777:13;;;;;:::i;:::-;;;;22665:135;22457:350;22497:3;;;;;:::i;:::-;;;;22457:350;;;;22813:56;;;;;;;;;;:::i;:::-;;;;;;;;22131:744;;;;;:::o;27245:157::-;27357:39;27374:4;27380:2;27384:7;27357:39;;;;;;;;;;;;:16;:39::i;:::-;27245:157;;;:::o;37612:234::-;11186:12;:10;:12::i;:::-;11175:23;;:7;:5;:7::i;:::-;:23;;;11167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37758:82:::1;;;;;;;;37777:14;37758:82;;;;;;37800:13;37758:82;;;;;;37822:11;37758:82;;;;::::0;37745:10:::1;:95;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37612:234:::0;;;:::o;21663:177::-;21730:7;21762:13;:11;:13::i;:::-;21754:5;:21;21746:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;21829:5;21822:12;;21663:177;;;:::o;39562:97::-;11186:12;:10;:12::i;:::-;11175:23;;:7;:5;:7::i;:::-;:23;;;11167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39646:7:::1;;39633:10;:20;;;;;;;:::i;:::-;;39562:97:::0;;:::o;24488:118::-;24552:7;24575:20;24587:7;24575:11;:20::i;:::-;:25;;;24568:32;;24488:118;;;:::o;23365:211::-;23429:7;23470:1;23453:19;;:5;:19;;;;23445:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;23542:12;:19;23555:5;23542:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;23534:36;;23527:43;;23365:211;;;:::o;11606:103::-;11186:12;:10;:12::i;:::-;11175:23;;:7;:5;:7::i;:::-;:23;;;11167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11671:30:::1;11698:1;11671:18;:30::i;:::-;11606:103::o:0;37136:42::-;;;:::o;37856:466::-;37908:24;37935:10;37908:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37952:16;37976:6;:18;;;37952:43;;38024:9;38010:23;;:10;:23;;;38002:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;38083:11;38075:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;38170:4;38158:8;38142:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:32;;38134:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;38251:1;38239:8;38212:24;38225:10;38212:12;:24::i;:::-;:35;;;;:::i;:::-;:40;;38204:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;38285:31;38295:10;38307:8;38285:9;:31::i;:::-;37856:466;;;:::o;10955:87::-;11001:7;11028:6;;;;;;;;;;;11021:13;;10955:87;:::o;37286:28::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39267:127::-;39332:21;;:::i;:::-;39368:20;39380:7;39368:11;:20::i;:::-;39361:27;;39267:127;;;:::o;24820:98::-;24876:13;24905:7;24898:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24820:98;:::o;38964:184::-;11186:12;:10;:12::i;:::-;11175:23;;:7;:5;:7::i;:::-;:23;;;11167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39071:14:::1;39059:8;39043:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:42;;39035:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;39115:27;39125:6;39133:8;39115:9;:27::i;:::-;38964:184:::0;;:::o;26458:274::-;26561:12;:10;:12::i;:::-;26549:24;;:8;:24;;;;26541:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;26658:8;26613:18;:32;26632:12;:10;:12::i;:::-;26613:32;;;;;;;;;;;;;;;:42;26646:8;26613:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;26707:8;26678:48;;26693:12;:10;:12::i;:::-;26678:48;;;26717:8;26678:48;;;;;;:::i;:::-;;;;;;;;26458:274;;:::o;39680:181::-;11186:12;:10;:12::i;:::-;11175:23;;:7;:5;:7::i;:::-;:23;;;11167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36127:1:::1;36725:7;;:19;;36717:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;36127:1;36858:7;:18;;;;39745:12:::2;39763:10;:15;;39786:21;39763:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39744:68;;;39827:7;39819:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;36889:1;36083::::1;37037:7;:22;;;;39680:181::o:0;27465:311::-;27602:28;27612:4;27618:2;27622:7;27602:9;:28::i;:::-;27653:48;27676:4;27682:2;27686:7;27695:5;27653:22;:48::i;:::-;27637:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;27465:311;;;;:::o;24981:394::-;25079:13;25120:16;25128:7;25120;:16::i;:::-;25104:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;25210:21;25234:10;:8;:10::i;:::-;25210:34;;25289:1;25271:7;25265:21;:25;:104;;;;;;;;;;;;;;;;;25326:7;25335:18;:7;:16;:18::i;:::-;25309:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25265:104;25251:118;;;24981:394;;;:::o;31880:43::-;;;;:::o;39154:107::-;39212:7;39235:20;39249:5;39235:13;:20::i;:::-;39228:27;;39154:107;;;:::o;26795:186::-;26917:4;26940:18;:25;26959:5;26940:25;;;;;;;;;;;;;;;:35;26966:8;26940:35;;;;;;;;;;;;;;;;;;;;;;;;;26933:42;;26795:186;;;;:::o;11864:201::-;11186:12;:10;:12::i;:::-;11175:23;;:7;:5;:7::i;:::-;:23;;;11167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11973:1:::1;11953:22;;:8;:22;;;;11945:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;12029:28;12048:8;12029:18;:28::i;:::-;11864:201:::0;:::o;12993:157::-;13078:4;13117:25;13102:40;;;:11;:40;;;;13095:47;;12993:157;;;:::o;28015:105::-;28072:4;28102:12;;28092:7;:22;28085:29;;28015:105;;;:::o;10329:98::-;10382:7;10409:10;10402:17;;10329:98;:::o;31702:172::-;31826:2;31799:15;:24;31815:7;31799:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;31860:7;31856:2;31840:28;;31849:5;31840:28;;;;;;;;;;;;31702:172;;;:::o;30067:1529::-;30164:35;30202:20;30214:7;30202:11;:20::i;:::-;30164:58;;30231:22;30273:13;:18;;;30257:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;30326:12;:10;:12::i;:::-;30302:36;;:20;30314:7;30302:11;:20::i;:::-;:36;;;30257:81;:142;;;;30349:50;30366:13;:18;;;30386:12;:10;:12::i;:::-;30349:16;:50::i;:::-;30257:142;30231:169;;30425:17;30409:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;30557:4;30535:26;;:13;:18;;;:26;;;30519:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;30646:1;30632:16;;:2;:16;;;;30624:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;30699:43;30721:4;30727:2;30731:7;30740:1;30699:21;:43::i;:::-;30799:49;30816:1;30820:7;30829:13;:18;;;30799:8;:49::i;:::-;30887:1;30857:12;:18;30870:4;30857:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30923:1;30895:12;:16;30908:2;30895:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30954:43;;;;;;;;30969:2;30954:43;;;;;;30980:15;30954:43;;;;;30931:11;:20;30943:7;30931:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31225:19;31257:1;31247:7;:11;;;;:::i;:::-;31225:33;;31310:1;31269:43;;:11;:24;31281:11;31269:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;31265:236;;;31327:20;31335:11;31327:7;:20::i;:::-;31323:171;;;31387:97;;;;;;;;31414:13;:18;;;31387:97;;;;;;31445:13;:28;;;31387:97;;;;;31360:11;:24;31372:11;31360:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31323:171;31265:236;31533:7;31529:2;31514:27;;31523:4;31514:27;;;;;;;;;;;;31548:42;31569:4;31575:2;31579:7;31588:1;31548:20;:42::i;:::-;30067:1529;;;;;;:::o;28126:98::-;28191:27;28201:2;28205:8;28191:27;;;;;;;;;;;;:9;:27::i;:::-;28126:98;;:::o;23828:606::-;23904:21;;:::i;:::-;23945:16;23953:7;23945;:16::i;:::-;23937:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;24017:26;24065:12;24054:7;:23;24050:93;;24134:1;24119:12;24109:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;24088:47;;24050:93;24156:12;24171:7;24156:22;;24151:212;24188:18;24180:4;:26;24151:212;;24225:31;24259:11;:17;24271:4;24259:17;;;;;;;;;;;24225:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24315:1;24289:28;;:9;:14;;;:28;;;24285:71;;24337:9;24330:16;;;;;;;24285:71;24151:212;24208:6;;;;;:::i;:::-;;;;24151:212;;;;24371:57;;;;;;;;;;:::i;:::-;;;;;;;;23828:606;;;;:::o;12225:191::-;12299:16;12318:6;;;;;;;;;;;12299:25;;12344:8;12335:6;;:17;;;;;;;;;;;;;;;;;;12399:8;12368:40;;12389:8;12368:40;;;;;;;;;;;;12225:191;;:::o;33417:690::-;33554:4;33571:15;:2;:13;;;:15::i;:::-;33567:535;;;33626:2;33610:36;;;33647:12;:10;:12::i;:::-;33661:4;33667:7;33676:5;33610:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;33597:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33858:1;33841:6;:13;:18;33837:215;;;33874:61;;;;;;;;;;:::i;:::-;;;;;;;;33837:215;34020:6;34014:13;34005:6;34001:2;33997:15;33990:38;33597:464;33742:45;;;33732:55;;;:6;:55;;;;33725:62;;;;;33567:535;34090:4;34083:11;;33417:690;;;;;;;:::o;39451:105::-;39511:13;39540:10;39533:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39451:105;:::o;255:723::-;311:13;541:1;532:5;:10;528:53;;;559:10;;;;;;;;;;;;;;;;;;;;;528:53;591:12;606:5;591:20;;622:14;647:78;662:1;654:4;:9;647:78;;680:8;;;;;:::i;:::-;;;;711:2;703:10;;;;;:::i;:::-;;;647:78;;;735:19;767:6;757:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;735:39;;785:154;801:1;792:5;:10;785:154;;829:1;819:11;;;;;:::i;:::-;;;896:2;888:5;:10;;;;:::i;:::-;875:2;:24;;;;:::i;:::-;862:39;;845:6;852;845:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;925:2;916:11;;;;;:::i;:::-;;;785:154;;;963:6;949:21;;;;;255:723;;;;:::o;23582:240::-;23643:7;23692:1;23675:19;;:5;:19;;;;23659:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;23783:12;:19;23796:5;23783:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;23775:41;;23768:48;;23582:240;;;:::o;34569:141::-;;;;;:::o;35096:140::-;;;;;:::o;28563:1272::-;28668:20;28691:12;;28668:35;;28732:1;28718:16;;:2;:16;;;;28710:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;28909:21;28917:12;28909:7;:21::i;:::-;28908:22;28900:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;28991:12;28979:8;:24;;28971:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;29051:61;29081:1;29085:2;29089:12;29103:8;29051:21;:61::i;:::-;29121:30;29154:12;:16;29167:2;29154:16;;;;;;;;;;;;;;;29121:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29196:119;;;;;;;;29246:8;29216:11;:19;;;:39;;;;:::i;:::-;29196:119;;;;;;29299:8;29264:11;:24;;;:44;;;;:::i;:::-;29196:119;;;;;29177:12;:16;29190:2;29177:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29350:43;;;;;;;;29365:2;29350:43;;;;;;29376:15;29350:43;;;;;29322:11;:25;29334:12;29322:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29402:20;29425:12;29402:35;;29451:9;29446:281;29470:8;29466:1;:12;29446:281;;;29524:12;29520:2;29499:38;;29516:1;29499:38;;;;;;;;;;;;29564:59;29595:1;29599:2;29603:12;29617:5;29564:22;:59::i;:::-;29546:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;29705:14;;;;;:::i;:::-;;;;29480:3;;;;;:::i;:::-;;;;29446:281;;;;29750:12;29735;:27;;;;29769:60;29798:1;29802:2;29806:12;29820:8;29769:20;:60::i;:::-;28563:1272;;;;;;:::o;3024:326::-;3084:4;3341:1;3319:7;:19;;;:23;3312:30;;3024:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;;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:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:139::-;;440:6;427:20;418:29;;456:33;483:5;456:33;:::i;:::-;408:87;;;;:::o;501:133::-;;582:6;569:20;560:29;;598:30;622:5;598:30;:::i;:::-;550:84;;;;:::o;640:137::-;;723:6;710:20;701:29;;739:32;765:5;739:32;:::i;:::-;691:86;;;;:::o;783:141::-;;870:6;864:13;855:22;;886:32;912:5;886:32;:::i;:::-;845:79;;;;:::o;943:271::-;;1047:3;1040:4;1032:6;1028:17;1024:27;1014:2;;1065:1;1062;1055:12;1014:2;1105:6;1092:20;1130:78;1204:3;1196:6;1189:4;1181:6;1177:17;1130:78;:::i;:::-;1121:87;;1004:210;;;;;:::o;1234:352::-;;;1352:3;1345:4;1337:6;1333:17;1329:27;1319:2;;1370:1;1367;1360:12;1319:2;1406:6;1393:20;1383:30;;1436:18;1428:6;1425:30;1422:2;;;1468:1;1465;1458:12;1422:2;1505:4;1497:6;1493:17;1481:29;;1559:3;1551:4;1543:6;1539:17;1529:8;1525:32;1522:41;1519:2;;;1576:1;1573;1566:12;1519:2;1309:277;;;;;:::o;1592:139::-;;1676:6;1663:20;1654:29;;1692:33;1719:5;1692:33;:::i;:::-;1644:87;;;;:::o;1737:137::-;;1820:6;1807:20;1798:29;;1836:32;1862:5;1836:32;:::i;:::-;1788:86;;;;:::o;1880:262::-;;1988:2;1976:9;1967:7;1963:23;1959:32;1956:2;;;2004:1;2001;1994:12;1956:2;2047:1;2072:53;2117:7;2108:6;2097:9;2093:22;2072:53;:::i;:::-;2062:63;;2018:117;1946:196;;;;:::o;2148:407::-;;;2273:2;2261:9;2252:7;2248:23;2244:32;2241:2;;;2289:1;2286;2279:12;2241:2;2332:1;2357:53;2402:7;2393:6;2382:9;2378:22;2357:53;:::i;:::-;2347:63;;2303:117;2459:2;2485:53;2530:7;2521:6;2510:9;2506:22;2485:53;:::i;:::-;2475:63;;2430:118;2231:324;;;;;:::o;2561:552::-;;;;2703:2;2691:9;2682:7;2678:23;2674:32;2671:2;;;2719:1;2716;2709:12;2671:2;2762:1;2787:53;2832:7;2823:6;2812:9;2808:22;2787:53;:::i;:::-;2777:63;;2733:117;2889:2;2915:53;2960:7;2951:6;2940:9;2936:22;2915:53;:::i;:::-;2905:63;;2860:118;3017:2;3043:53;3088:7;3079:6;3068:9;3064:22;3043:53;:::i;:::-;3033:63;;2988:118;2661:452;;;;;:::o;3119:809::-;;;;;3287:3;3275:9;3266:7;3262:23;3258:33;3255:2;;;3304:1;3301;3294:12;3255:2;3347:1;3372:53;3417:7;3408:6;3397:9;3393:22;3372:53;:::i;:::-;3362:63;;3318:117;3474:2;3500:53;3545:7;3536:6;3525:9;3521:22;3500:53;:::i;:::-;3490:63;;3445:118;3602:2;3628:53;3673:7;3664:6;3653:9;3649:22;3628:53;:::i;:::-;3618:63;;3573:118;3758:2;3747:9;3743:18;3730:32;3789:18;3781:6;3778:30;3775:2;;;3821:1;3818;3811:12;3775:2;3849:62;3903:7;3894:6;3883:9;3879:22;3849:62;:::i;:::-;3839:72;;3701:220;3245:683;;;;;;;:::o;3934:401::-;;;4056:2;4044:9;4035:7;4031:23;4027:32;4024:2;;;4072:1;4069;4062:12;4024:2;4115:1;4140:53;4185:7;4176:6;4165:9;4161:22;4140:53;:::i;:::-;4130:63;;4086:117;4242:2;4268:50;4310:7;4301:6;4290:9;4286:22;4268:50;:::i;:::-;4258:60;;4213:115;4014:321;;;;;:::o;4341:407::-;;;4466:2;4454:9;4445:7;4441:23;4437:32;4434:2;;;4482:1;4479;4472:12;4434:2;4525:1;4550:53;4595:7;4586:6;4575:9;4571:22;4550:53;:::i;:::-;4540:63;;4496:117;4652:2;4678:53;4723:7;4714:6;4703:9;4699:22;4678:53;:::i;:::-;4668:63;;4623:118;4424:324;;;;;:::o;4754:260::-;;4861:2;4849:9;4840:7;4836:23;4832:32;4829:2;;;4877:1;4874;4867:12;4829:2;4920:1;4945:52;4989:7;4980:6;4969:9;4965:22;4945:52;:::i;:::-;4935:62;;4891:116;4819:195;;;;:::o;5020:282::-;;5138:2;5126:9;5117:7;5113:23;5109:32;5106:2;;;5154:1;5151;5144:12;5106:2;5197:1;5222:63;5277:7;5268:6;5257:9;5253:22;5222:63;:::i;:::-;5212:73;;5168:127;5096:206;;;;:::o;5308:395::-;;;5436:2;5424:9;5415:7;5411:23;5407:32;5404:2;;;5452:1;5449;5442:12;5404:2;5523:1;5512:9;5508:17;5495:31;5553:18;5545:6;5542:30;5539:2;;;5585:1;5582;5575:12;5539:2;5621:65;5678:7;5669:6;5658:9;5654:22;5621:65;:::i;:::-;5603:83;;;;5466:230;5394:309;;;;;:::o;5709:262::-;;5817:2;5805:9;5796:7;5792:23;5788:32;5785:2;;;5833:1;5830;5823:12;5785:2;5876:1;5901:53;5946:7;5937:6;5926:9;5922:22;5901:53;:::i;:::-;5891:63;;5847:117;5775:196;;;;:::o;5977:538::-;;;;6112:2;6100:9;6091:7;6087:23;6083:32;6080:2;;;6128:1;6125;6118:12;6080:2;6171:1;6196:52;6240:7;6231:6;6220:9;6216:22;6196:52;:::i;:::-;6186:62;;6142:116;6297:2;6323:50;6365:7;6356:6;6345:9;6341:22;6323:50;:::i;:::-;6313:60;;6268:115;6422:2;6448:50;6490:7;6481:6;6470:9;6466:22;6448:50;:::i;:::-;6438:60;;6393:115;6070:445;;;;;:::o;6521:108::-;6598:24;6616:5;6598:24;:::i;:::-;6593:3;6586:37;6576:53;;:::o;6635:118::-;6722:24;6740:5;6722:24;:::i;:::-;6717:3;6710:37;6700:53;;:::o;6759:109::-;6840:21;6855:5;6840:21;:::i;:::-;6835:3;6828:34;6818:50;;:::o;6874:360::-;;6988:38;7020:5;6988:38;:::i;:::-;7042:70;7105:6;7100:3;7042:70;:::i;:::-;7035:77;;7121:52;7166:6;7161:3;7154:4;7147:5;7143:16;7121:52;:::i;:::-;7198:29;7220:6;7198:29;:::i;:::-;7193:3;7189:39;7182:46;;6964:270;;;;;:::o;7240:364::-;;7356:39;7389:5;7356:39;:::i;:::-;7411:71;7475:6;7470:3;7411:71;:::i;:::-;7404:78;;7491:52;7536:6;7531:3;7524:4;7517:5;7513:16;7491:52;:::i;:::-;7568:29;7590:6;7568:29;:::i;:::-;7563:3;7559:39;7552:46;;7332:272;;;;;:::o;7610:377::-;;7744:39;7777:5;7744:39;:::i;:::-;7799:89;7881:6;7876:3;7799:89;:::i;:::-;7792:96;;7897:52;7942:6;7937:3;7930:4;7923:5;7919:16;7897:52;:::i;:::-;7974:6;7969:3;7965:16;7958:23;;7720:267;;;;;:::o;7993:366::-;;8156:67;8220:2;8215:3;8156:67;:::i;:::-;8149:74;;8232:93;8321:3;8232:93;:::i;:::-;8350:2;8345:3;8341:12;8334:19;;8139:220;;;:::o;8365:366::-;;8528:67;8592:2;8587:3;8528:67;:::i;:::-;8521:74;;8604:93;8693:3;8604:93;:::i;:::-;8722:2;8717:3;8713:12;8706:19;;8511:220;;;:::o;8737:366::-;;8900:67;8964:2;8959:3;8900:67;:::i;:::-;8893:74;;8976:93;9065:3;8976:93;:::i;:::-;9094:2;9089:3;9085:12;9078:19;;8883:220;;;:::o;9109:366::-;;9272:67;9336:2;9331:3;9272:67;:::i;:::-;9265:74;;9348:93;9437:3;9348:93;:::i;:::-;9466:2;9461:3;9457:12;9450:19;;9255:220;;;:::o;9481:366::-;;9644:67;9708:2;9703:3;9644:67;:::i;:::-;9637:74;;9720:93;9809:3;9720:93;:::i;:::-;9838:2;9833:3;9829:12;9822:19;;9627:220;;;:::o;9853:366::-;;10016:67;10080:2;10075:3;10016:67;:::i;:::-;10009:74;;10092:93;10181:3;10092:93;:::i;:::-;10210:2;10205:3;10201:12;10194:19;;9999:220;;;:::o;10225:366::-;;10388:67;10452:2;10447:3;10388:67;:::i;:::-;10381:74;;10464:93;10553:3;10464:93;:::i;:::-;10582:2;10577:3;10573:12;10566:19;;10371:220;;;:::o;10597:366::-;;10760:67;10824:2;10819:3;10760:67;:::i;:::-;10753:74;;10836:93;10925:3;10836:93;:::i;:::-;10954:2;10949:3;10945:12;10938:19;;10743:220;;;:::o;10969:366::-;;11132:67;11196:2;11191:3;11132:67;:::i;:::-;11125:74;;11208:93;11297:3;11208:93;:::i;:::-;11326:2;11321:3;11317:12;11310:19;;11115:220;;;:::o;11341:366::-;;11504:67;11568:2;11563:3;11504:67;:::i;:::-;11497:74;;11580:93;11669:3;11580:93;:::i;:::-;11698:2;11693:3;11689:12;11682:19;;11487:220;;;:::o;11713:366::-;;11876:67;11940:2;11935:3;11876:67;:::i;:::-;11869:74;;11952:93;12041:3;11952:93;:::i;:::-;12070:2;12065:3;12061:12;12054:19;;11859:220;;;:::o;12085:366::-;;12248:67;12312:2;12307:3;12248:67;:::i;:::-;12241:74;;12324:93;12413:3;12324:93;:::i;:::-;12442:2;12437:3;12433:12;12426:19;;12231:220;;;:::o;12457:366::-;;12620:67;12684:2;12679:3;12620:67;:::i;:::-;12613:74;;12696:93;12785:3;12696:93;:::i;:::-;12814:2;12809:3;12805:12;12798:19;;12603:220;;;:::o;12829:366::-;;12992:67;13056:2;13051:3;12992:67;:::i;:::-;12985:74;;13068:93;13157:3;13068:93;:::i;:::-;13186:2;13181:3;13177:12;13170:19;;12975:220;;;:::o;13201:366::-;;13364:67;13428:2;13423:3;13364:67;:::i;:::-;13357:74;;13440:93;13529:3;13440:93;:::i;:::-;13558:2;13553:3;13549:12;13542:19;;13347:220;;;:::o;13573:366::-;;13736:67;13800:2;13795:3;13736:67;:::i;:::-;13729:74;;13812:93;13901:3;13812:93;:::i;:::-;13930:2;13925:3;13921:12;13914:19;;13719:220;;;:::o;13945:366::-;;14108:67;14172:2;14167:3;14108:67;:::i;:::-;14101:74;;14184:93;14273:3;14184:93;:::i;:::-;14302:2;14297:3;14293:12;14286:19;;14091:220;;;:::o;14317:398::-;;14497:83;14578:1;14573:3;14497:83;:::i;:::-;14490:90;;14589:93;14678:3;14589:93;:::i;:::-;14707:1;14702:3;14698:11;14691:18;;14480:235;;;:::o;14721:366::-;;14884:67;14948:2;14943:3;14884:67;:::i;:::-;14877:74;;14960:93;15049:3;14960:93;:::i;:::-;15078:2;15073:3;15069:12;15062:19;;14867:220;;;:::o;15093:366::-;;15256:67;15320:2;15315:3;15256:67;:::i;:::-;15249:74;;15332:93;15421:3;15332:93;:::i;:::-;15450:2;15445:3;15441:12;15434:19;;15239:220;;;:::o;15465:366::-;;15628:67;15692:2;15687:3;15628:67;:::i;:::-;15621:74;;15704:93;15793:3;15704:93;:::i;:::-;15822:2;15817:3;15813:12;15806:19;;15611:220;;;:::o;15837:366::-;;16000:67;16064:2;16059:3;16000:67;:::i;:::-;15993:74;;16076:93;16165:3;16076:93;:::i;:::-;16194:2;16189:3;16185:12;16178:19;;15983:220;;;:::o;16209:366::-;;16372:67;16436:2;16431:3;16372:67;:::i;:::-;16365:74;;16448:93;16537:3;16448:93;:::i;:::-;16566:2;16561:3;16557:12;16550:19;;16355:220;;;:::o;16581:366::-;;16744:67;16808:2;16803:3;16744:67;:::i;:::-;16737:74;;16820:93;16909:3;16820:93;:::i;:::-;16938:2;16933:3;16929:12;16922:19;;16727:220;;;:::o;16953:366::-;;17116:67;17180:2;17175:3;17116:67;:::i;:::-;17109:74;;17192:93;17281:3;17192:93;:::i;:::-;17310:2;17305:3;17301:12;17294:19;;17099:220;;;:::o;17325:366::-;;17488:67;17552:2;17547:3;17488:67;:::i;:::-;17481:74;;17564:93;17653:3;17564:93;:::i;:::-;17682:2;17677:3;17673:12;17666:19;;17471:220;;;:::o;17697:366::-;;17860:67;17924:2;17919:3;17860:67;:::i;:::-;17853:74;;17936:93;18025:3;17936:93;:::i;:::-;18054:2;18049:3;18045:12;18038:19;;17843:220;;;:::o;18069:366::-;;18232:67;18296:2;18291:3;18232:67;:::i;:::-;18225:74;;18308:93;18397:3;18308:93;:::i;:::-;18426:2;18421:3;18417:12;18410:19;;18215:220;;;:::o;18441:366::-;;18604:67;18668:2;18663:3;18604:67;:::i;:::-;18597:74;;18680:93;18769:3;18680:93;:::i;:::-;18798:2;18793:3;18789:12;18782:19;;18587:220;;;:::o;18883:527::-;19042:4;19037:3;19033:14;19129:4;19122:5;19118:16;19112:23;19148:63;19205:4;19200:3;19196:14;19182:12;19148:63;:::i;:::-;19057:164;19313:4;19306:5;19302:16;19296:23;19332:61;19387:4;19382:3;19378:14;19364:12;19332:61;:::i;:::-;19231:172;19011:399;;;:::o;19416:118::-;19503:24;19521:5;19503:24;:::i;:::-;19498:3;19491:37;19481:53;;:::o;19540:105::-;19615:23;19632:5;19615:23;:::i;:::-;19610:3;19603:36;19593:52;;:::o;19651:115::-;19736:23;19753:5;19736:23;:::i;:::-;19731:3;19724:36;19714:52;;:::o;19772:435::-;;19974:95;20065:3;20056:6;19974:95;:::i;:::-;19967:102;;20086:95;20177:3;20168:6;20086:95;:::i;:::-;20079:102;;20198:3;20191:10;;19956:251;;;;;:::o;20213:379::-;;20419:147;20562:3;20419:147;:::i;:::-;20412:154;;20583:3;20576:10;;20401:191;;;:::o;20598:222::-;;20729:2;20718:9;20714:18;20706:26;;20742:71;20810:1;20799:9;20795:17;20786:6;20742:71;:::i;:::-;20696:124;;;;:::o;20826:640::-;;21059:3;21048:9;21044:19;21036:27;;21073:71;21141:1;21130:9;21126:17;21117:6;21073:71;:::i;:::-;21154:72;21222:2;21211:9;21207:18;21198:6;21154:72;:::i;:::-;21236;21304:2;21293:9;21289:18;21280:6;21236:72;:::i;:::-;21355:9;21349:4;21345:20;21340:2;21329:9;21325:18;21318:48;21383:76;21454:4;21445:6;21383:76;:::i;:::-;21375:84;;21026:440;;;;;;;:::o;21472:210::-;;21597:2;21586:9;21582:18;21574:26;;21610:65;21672:1;21661:9;21657:17;21648:6;21610:65;:::i;:::-;21564:118;;;;:::o;21688:313::-;;21839:2;21828:9;21824:18;21816:26;;21888:9;21882:4;21878:20;21874:1;21863:9;21859:17;21852:47;21916:78;21989:4;21980:6;21916:78;:::i;:::-;21908:86;;21806:195;;;;:::o;22007:419::-;;22211:2;22200:9;22196:18;22188:26;;22260:9;22254:4;22250:20;22246:1;22235:9;22231:17;22224:47;22288:131;22414:4;22288:131;:::i;:::-;22280:139;;22178:248;;;:::o;22432:419::-;;22636:2;22625:9;22621:18;22613:26;;22685:9;22679:4;22675:20;22671:1;22660:9;22656:17;22649:47;22713:131;22839:4;22713:131;:::i;:::-;22705:139;;22603:248;;;:::o;22857:419::-;;23061:2;23050:9;23046:18;23038:26;;23110:9;23104:4;23100:20;23096:1;23085:9;23081:17;23074:47;23138:131;23264:4;23138:131;:::i;:::-;23130:139;;23028:248;;;:::o;23282:419::-;;23486:2;23475:9;23471:18;23463:26;;23535:9;23529:4;23525:20;23521:1;23510:9;23506:17;23499:47;23563:131;23689:4;23563:131;:::i;:::-;23555:139;;23453:248;;;:::o;23707:419::-;;23911:2;23900:9;23896:18;23888:26;;23960:9;23954:4;23950:20;23946:1;23935:9;23931:17;23924:47;23988:131;24114:4;23988:131;:::i;:::-;23980:139;;23878:248;;;:::o;24132:419::-;;24336:2;24325:9;24321:18;24313:26;;24385:9;24379:4;24375:20;24371:1;24360:9;24356:17;24349:47;24413:131;24539:4;24413:131;:::i;:::-;24405:139;;24303:248;;;:::o;24557:419::-;;24761:2;24750:9;24746:18;24738:26;;24810:9;24804:4;24800:20;24796:1;24785:9;24781:17;24774:47;24838:131;24964:4;24838:131;:::i;:::-;24830:139;;24728:248;;;:::o;24982:419::-;;25186:2;25175:9;25171:18;25163:26;;25235:9;25229:4;25225:20;25221:1;25210:9;25206:17;25199:47;25263:131;25389:4;25263:131;:::i;:::-;25255:139;;25153:248;;;:::o;25407:419::-;;25611:2;25600:9;25596:18;25588:26;;25660:9;25654:4;25650:20;25646:1;25635:9;25631:17;25624:47;25688:131;25814:4;25688:131;:::i;:::-;25680:139;;25578:248;;;:::o;25832:419::-;;26036:2;26025:9;26021:18;26013:26;;26085:9;26079:4;26075:20;26071:1;26060:9;26056:17;26049:47;26113:131;26239:4;26113:131;:::i;:::-;26105:139;;26003:248;;;:::o;26257:419::-;;26461:2;26450:9;26446:18;26438:26;;26510:9;26504:4;26500:20;26496:1;26485:9;26481:17;26474:47;26538:131;26664:4;26538:131;:::i;:::-;26530:139;;26428:248;;;:::o;26682:419::-;;26886:2;26875:9;26871:18;26863:26;;26935:9;26929:4;26925:20;26921:1;26910:9;26906:17;26899:47;26963:131;27089:4;26963:131;:::i;:::-;26955:139;;26853:248;;;:::o;27107:419::-;;27311:2;27300:9;27296:18;27288:26;;27360:9;27354:4;27350:20;27346:1;27335:9;27331:17;27324:47;27388:131;27514:4;27388:131;:::i;:::-;27380:139;;27278:248;;;:::o;27532:419::-;;27736:2;27725:9;27721:18;27713:26;;27785:9;27779:4;27775:20;27771:1;27760:9;27756:17;27749:47;27813:131;27939:4;27813:131;:::i;:::-;27805:139;;27703:248;;;:::o;27957:419::-;;28161:2;28150:9;28146:18;28138:26;;28210:9;28204:4;28200:20;28196:1;28185:9;28181:17;28174:47;28238:131;28364:4;28238:131;:::i;:::-;28230:139;;28128:248;;;:::o;28382:419::-;;28586:2;28575:9;28571:18;28563:26;;28635:9;28629:4;28625:20;28621:1;28610:9;28606:17;28599:47;28663:131;28789:4;28663:131;:::i;:::-;28655:139;;28553:248;;;:::o;28807:419::-;;29011:2;29000:9;28996:18;28988:26;;29060:9;29054:4;29050:20;29046:1;29035:9;29031:17;29024:47;29088:131;29214:4;29088:131;:::i;:::-;29080:139;;28978:248;;;:::o;29232:419::-;;29436:2;29425:9;29421:18;29413:26;;29485:9;29479:4;29475:20;29471:1;29460:9;29456:17;29449:47;29513:131;29639:4;29513:131;:::i;:::-;29505:139;;29403:248;;;:::o;29657:419::-;;29861:2;29850:9;29846:18;29838:26;;29910:9;29904:4;29900:20;29896:1;29885:9;29881:17;29874:47;29938:131;30064:4;29938:131;:::i;:::-;29930:139;;29828:248;;;:::o;30082:419::-;;30286:2;30275:9;30271:18;30263:26;;30335:9;30329:4;30325:20;30321:1;30310:9;30306:17;30299:47;30363:131;30489:4;30363:131;:::i;:::-;30355:139;;30253:248;;;:::o;30507:419::-;;30711:2;30700:9;30696:18;30688:26;;30760:9;30754:4;30750:20;30746:1;30735:9;30731:17;30724:47;30788:131;30914:4;30788:131;:::i;:::-;30780:139;;30678:248;;;:::o;30932:419::-;;31136:2;31125:9;31121:18;31113:26;;31185:9;31179:4;31175:20;31171:1;31160:9;31156:17;31149:47;31213:131;31339:4;31213:131;:::i;:::-;31205:139;;31103:248;;;:::o;31357:419::-;;31561:2;31550:9;31546:18;31538:26;;31610:9;31604:4;31600:20;31596:1;31585:9;31581:17;31574:47;31638:131;31764:4;31638:131;:::i;:::-;31630:139;;31528:248;;;:::o;31782:419::-;;31986:2;31975:9;31971:18;31963:26;;32035:9;32029:4;32025:20;32021:1;32010:9;32006:17;31999:47;32063:131;32189:4;32063:131;:::i;:::-;32055:139;;31953:248;;;:::o;32207:419::-;;32411:2;32400:9;32396:18;32388:26;;32460:9;32454:4;32450:20;32446:1;32435:9;32431:17;32424:47;32488:131;32614:4;32488:131;:::i;:::-;32480:139;;32378:248;;;:::o;32632:419::-;;32836:2;32825:9;32821:18;32813:26;;32885:9;32879:4;32875:20;32871:1;32860:9;32856:17;32849:47;32913:131;33039:4;32913:131;:::i;:::-;32905:139;;32803:248;;;:::o;33057:419::-;;33261:2;33250:9;33246:18;33238:26;;33310:9;33304:4;33300:20;33296:1;33285:9;33281:17;33274:47;33338:131;33464:4;33338:131;:::i;:::-;33330:139;;33228:248;;;:::o;33482:419::-;;33686:2;33675:9;33671:18;33663:26;;33735:9;33729:4;33725:20;33721:1;33710:9;33706:17;33699:47;33763:131;33889:4;33763:131;:::i;:::-;33755:139;;33653:248;;;:::o;33907:346::-;;34100:2;34089:9;34085:18;34077:26;;34113:133;34243:1;34232:9;34228:17;34219:6;34113:133;:::i;:::-;34067:186;;;;:::o;34259:222::-;;34390:2;34379:9;34375:18;34367:26;;34403:71;34471:1;34460:9;34456:17;34447:6;34403:71;:::i;:::-;34357:124;;;;:::o;34487:414::-;;34660:2;34649:9;34645:18;34637:26;;34673:69;34739:1;34728:9;34724:17;34715:6;34673:69;:::i;:::-;34752:66;34814:2;34803:9;34799:18;34790:6;34752:66;:::i;:::-;34828;34890:2;34879:9;34875:18;34866:6;34828:66;:::i;:::-;34627:274;;;;;;:::o;34907:129::-;;34968:20;;:::i;:::-;34958:30;;34997:33;35025:4;35017:6;34997:33;:::i;:::-;34948:88;;;:::o;35042:75::-;;35108:2;35102:9;35092:19;;35082:35;:::o;35123:307::-;;35274:18;35266:6;35263:30;35260:2;;;35296:18;;:::i;:::-;35260:2;35334:29;35356:6;35334:29;:::i;:::-;35326:37;;35418:4;35412;35408:15;35400:23;;35189:241;;;:::o;35436:98::-;;35521:5;35515:12;35505:22;;35494:40;;;:::o;35540:99::-;;35626:5;35620:12;35610:22;;35599:40;;;:::o;35645:168::-;;35762:6;35757:3;35750:19;35802:4;35797:3;35793:14;35778:29;;35740:73;;;;:::o;35819:147::-;;35957:3;35942:18;;35932:34;;;;:::o;35972:169::-;;36090:6;36085:3;36078:19;36130:4;36125:3;36121:14;36106:29;;36068:73;;;;:::o;36147:148::-;;36286:3;36271:18;;36261:34;;;;:::o;36301:273::-;;36360:20;36378:1;36360:20;:::i;:::-;36355:25;;36394:20;36412:1;36394:20;:::i;:::-;36389:25;;36516:1;36480:34;36476:42;36473:1;36470:49;36467:2;;;36522:18;;:::i;:::-;36467:2;36566:1;36563;36559:9;36552:16;;36345:229;;;;:::o;36580:305::-;;36639:20;36657:1;36639:20;:::i;:::-;36634:25;;36673:20;36691:1;36673:20;:::i;:::-;36668:25;;36827:1;36759:66;36755:74;36752:1;36749:81;36746:2;;;36833:18;;:::i;:::-;36746:2;36877:1;36874;36870:9;36863:16;;36624:261;;;;:::o;36891:185::-;;36948:20;36966:1;36948:20;:::i;:::-;36943:25;;36982:20;37000:1;36982:20;:::i;:::-;36977:25;;37021:1;37011:2;;37026:18;;:::i;:::-;37011:2;37068:1;37065;37061:9;37056:14;;36933:143;;;;:::o;37082:191::-;;37142:20;37160:1;37142:20;:::i;:::-;37137:25;;37176:20;37194:1;37176:20;:::i;:::-;37171:25;;37215:1;37212;37209:8;37206:2;;;37220:18;;:::i;:::-;37206:2;37265:1;37262;37258:9;37250:17;;37127:146;;;;:::o;37279:191::-;;37339:20;37357:1;37339:20;:::i;:::-;37334:25;;37373:20;37391:1;37373:20;:::i;:::-;37368:25;;37412:1;37409;37406:8;37403:2;;;37417:18;;:::i;:::-;37403:2;37462:1;37459;37455:9;37447:17;;37324:146;;;;:::o;37476:96::-;;37542:24;37560:5;37542:24;:::i;:::-;37531:35;;37521:51;;;:::o;37578:90::-;;37655:5;37648:13;37641:21;37630:32;;37620:48;;;:::o;37674:149::-;;37750:66;37743:5;37739:78;37728:89;;37718:105;;;:::o;37829:118::-;;37906:34;37899:5;37895:46;37884:57;;37874:73;;;:::o;37953:126::-;;38030:42;38023:5;38019:54;38008:65;;37998:81;;;:::o;38085:77::-;;38151:5;38140:16;;38130:32;;;:::o;38168:101::-;;38244:18;38237:5;38233:30;38222:41;;38212:57;;;:::o;38275:154::-;38359:6;38354:3;38349;38336:30;38421:1;38412:6;38407:3;38403:16;38396:27;38326:103;;;:::o;38435:307::-;38503:1;38513:113;38527:6;38524:1;38521:13;38513:113;;;38612:1;38607:3;38603:11;38597:18;38593:1;38588:3;38584:11;38577:39;38549:2;38546:1;38542:10;38537:15;;38513:113;;;38644:6;38641:1;38638:13;38635:2;;;38724:1;38715:6;38710:3;38706:16;38699:27;38635:2;38484:258;;;;:::o;38748:171::-;;38810:24;38828:5;38810:24;:::i;:::-;38801:33;;38856:4;38849:5;38846:15;38843:2;;;38864:18;;:::i;:::-;38843:2;38911:1;38904:5;38900:13;38893:20;;38791:128;;;:::o;38925:320::-;;39006:1;39000:4;38996:12;38986:22;;39053:1;39047:4;39043:12;39074:18;39064:2;;39130:4;39122:6;39118:17;39108:27;;39064:2;39192;39184:6;39181:14;39161:18;39158:38;39155:2;;;39211:18;;:::i;:::-;39155:2;38976:269;;;;:::o;39251:281::-;39334:27;39356:4;39334:27;:::i;:::-;39326:6;39322:40;39464:6;39452:10;39449:22;39428:18;39416:10;39413:34;39410:62;39407:2;;;39475:18;;:::i;:::-;39407:2;39515:10;39511:2;39504:22;39294:238;;;:::o;39538:233::-;;39600:24;39618:5;39600:24;:::i;:::-;39591:33;;39646:66;39639:5;39636:77;39633:2;;;39716:18;;:::i;:::-;39633:2;39763:1;39756:5;39752:13;39745:20;;39581:190;;;:::o;39777:176::-;;39826:20;39844:1;39826:20;:::i;:::-;39821:25;;39860:20;39878:1;39860:20;:::i;:::-;39855:25;;39899:1;39889:2;;39904:18;;:::i;:::-;39889:2;39945:1;39942;39938:9;39933:14;;39811:142;;;;:::o;39959:180::-;40007:77;40004:1;39997:88;40104:4;40101:1;40094:15;40128:4;40125:1;40118:15;40145:180;40193:77;40190:1;40183:88;40290:4;40287:1;40280:15;40314:4;40311:1;40304:15;40331:180;40379:77;40376:1;40369:88;40476:4;40473:1;40466:15;40500:4;40497:1;40490:15;40517:180;40565:77;40562:1;40555:88;40662:4;40659:1;40652:15;40686:4;40683:1;40676:15;40703:102;;40795:2;40791:7;40786:2;40779:5;40775:14;40771:28;40761:38;;40751:54;;;:::o;40811:221::-;40951:34;40947:1;40939:6;40935:14;40928:58;41020:4;41015:2;41007:6;41003:15;40996:29;40917:115;:::o;41038:172::-;41178:24;41174:1;41166:6;41162:14;41155:48;41144:66;:::o;41216:225::-;41356:34;41352:1;41344:6;41340:14;41333:58;41425:8;41420:2;41412:6;41408:15;41401:33;41322:119;:::o;41447:229::-;41587:34;41583:1;41575:6;41571:14;41564:58;41656:12;41651:2;41643:6;41639:15;41632:37;41553:123;:::o;41682:222::-;41822:34;41818:1;41810:6;41806:14;41799:58;41891:5;41886:2;41878:6;41874:15;41867:30;41788:116;:::o;41910:224::-;42050:34;42046:1;42038:6;42034:14;42027:58;42119:7;42114:2;42106:6;42102:15;42095:32;42016:118;:::o;42140:236::-;42280:34;42276:1;42268:6;42264:14;42257:58;42349:19;42344:2;42336:6;42332:15;42325:44;42246:130;:::o;42382:244::-;42522:34;42518:1;42510:6;42506:14;42499:58;42591:27;42586:2;42578:6;42574:15;42567:52;42488:138;:::o;42632:230::-;42772:34;42768:1;42760:6;42756:14;42749:58;42841:13;42836:2;42828:6;42824:15;42817:38;42738:124;:::o;42868:168::-;43008:20;43004:1;42996:6;42992:14;42985:44;42974:62;:::o;43042:225::-;43182:34;43178:1;43170:6;43166:14;43159:58;43251:8;43246:2;43238:6;43234:15;43227:33;43148:119;:::o;43273:182::-;43413:34;43409:1;43401:6;43397:14;43390:58;43379:76;:::o;43461:234::-;43601:34;43597:1;43589:6;43585:14;43578:58;43670:17;43665:2;43657:6;43653:15;43646:42;43567:128;:::o;43701:176::-;43841:28;43837:1;43829:6;43825:14;43818:52;43807:70;:::o;43883:237::-;44023:34;44019:1;44011:6;44007:14;44000:58;44092:20;44087:2;44079:6;44075:15;44068:45;43989:131;:::o;44126:179::-;44266:31;44262:1;44254:6;44250:14;44243:55;44232:73;:::o;44311:221::-;44451:34;44447:1;44439:6;44435:14;44428:58;44520:4;44515:2;44507:6;44503:15;44496:29;44417:115;:::o;44538:114::-;44644:8;:::o;44658:166::-;44798:18;44794:1;44786:6;44782:14;44775:42;44764:60;:::o;44830:238::-;44970:34;44966:1;44958:6;44954:14;44947:58;45039:21;45034:2;45026:6;45022:15;45015:46;44936:132;:::o;45074:179::-;45214:31;45210:1;45202:6;45198:14;45191:55;45180:73;:::o;45259:220::-;45399:34;45395:1;45387:6;45383:14;45376:58;45468:3;45463:2;45455:6;45451:15;45444:28;45365:114;:::o;45485:172::-;45625:24;45621:1;45613:6;45609:14;45602:48;45591:66;:::o;45663:180::-;45803:32;45799:1;45791:6;45787:14;45780:56;45769:74;:::o;45849:233::-;45989:34;45985:1;45977:6;45973:14;45966:58;46058:16;46053:2;46045:6;46041:15;46034:41;45955:127;:::o;46088:181::-;46228:33;46224:1;46216:6;46212:14;46205:57;46194:75;:::o;46275:234::-;46415:34;46411:1;46403:6;46399:14;46392:58;46484:17;46479:2;46471:6;46467:15;46460:42;46381:128;:::o;46515:232::-;46655:34;46651:1;46643:6;46639:14;46632:58;46724:15;46719:2;46711:6;46707:15;46700:40;46621:126;:::o;46753:221::-;46893:34;46889:1;46881:6;46877:14;46870:58;46962:4;46957:2;46949:6;46945:15;46938:29;46859:115;:::o;46980:122::-;47053:24;47071:5;47053:24;:::i;:::-;47046:5;47043:35;47033:2;;47092:1;47089;47082:12;47033:2;47023:79;:::o;47108:116::-;47178:21;47193:5;47178:21;:::i;:::-;47171:5;47168:32;47158:2;;47214:1;47211;47204:12;47158:2;47148:76;:::o;47230:120::-;47302:23;47319:5;47302:23;:::i;:::-;47295:5;47292:34;47282:2;;47340:1;47337;47330:12;47282:2;47272:78;:::o;47356:122::-;47429:24;47447:5;47429:24;:::i;:::-;47422:5;47419:35;47409:2;;47468:1;47465;47458:12;47409:2;47399:79;:::o;47484:120::-;47556:23;47573:5;47556:23;:::i;:::-;47549:5;47546:34;47536:2;;47594:1;47591;47584:12;47536:2;47526:78;:::o
Swarm Source
ipfs://0a3508389726fe1bb3c534e779b96eaa07e5ed869b93faba455a143e7f8541ca
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.