ERC-721
Overview
Max Total Supply
56 MCN
Holders
37
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 MCNLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MiniCombat
Compiler Version
v0.8.15+commit.e14f2714
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-10-25 */ // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ 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; } } // File: @openzeppelin/contracts/utils/Strings.sol pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: contracts/ERC721A.sol // Creators: locationtba.eth, 2pmflow.eth pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Does not support burning tokens to address(0). */ 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 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. */ constructor( string memory name_, string memory symbol_, uint256 maxBatchSize_ ) { require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero"); _name = name_; _symbol = symbol_; maxBatchSize = maxBatchSize_; } /** * @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(totalSupply). 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: * * - `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 > currentIndex - 1) { endIndex = currentIndex - 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 {} } // File: contracts/MiniCombat.sol pragma solidity ^0.8.15; contract MiniCombat is ERC721A, Ownable, ReentrancyGuard { // constants uint256 constant MAX_ELEMENTS = 999; uint256 constant MAX_ELEMENTS_TX = 1; uint256 constant PUBLIC_PRICE = 0.01 ether; string public baseTokenURI = ""; bool public paused = true; constructor(uint256 maxBatchSize_) ERC721A("Mini Combat", "MCN", maxBatchSize_) {} function mint(uint256 _mintAmount) external payable nonReentrant { uint256 supply = totalSupply(); require(_mintAmount > 0,"No zero mints"); require(_mintAmount <= MAX_ELEMENTS_TX,"Exceeds max per tx"); require(!paused, "Sale has not started!"); require(supply + _mintAmount <= MAX_ELEMENTS,"Exceeds max supply"); require(msg.value >= (_mintAmount * PUBLIC_PRICE),"Invalid funds provided"); _safeMint(msg.sender,_mintAmount); } function whitelistMint(uint256 _mintAmount, address _receiver) public onlyOwner { _safeMint(_receiver, _mintAmount); } function withdraw() external payable onlyOwner { require(payable(msg.sender).send(address(this).balance)); } function pause(bool _state) external onlyOwner { paused = _state; } function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } function setBaseURI(string calldata baseURI) external onlyOwner { baseTokenURI = baseURI; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"maxBatchSize_","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":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":[],"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":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[{"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":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"whitelistMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60a060405260008055600060075560405180602001604052806000815250600a90816200002d9190620004d5565b506001600b60006101000a81548160ff0219169083151502179055503480156200005657600080fd5b5060405162004cc338038062004cc383398181016040528101906200007c9190620005f2565b6040518060400160405280600b81526020017f4d696e6920436f6d6261740000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4d434e000000000000000000000000000000000000000000000000000000000081525082600081116200012f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200012690620006ab565b60405180910390fd5b8260019081620001409190620004d5565b508160029081620001529190620004d5565b5080608081815250505050506200017e620001726200018d60201b60201c565b6200019560201b60201c565b600160098190555050620006cd565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002dd57607f821691505b602082108103620002f357620002f262000295565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200035d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200031e565b6200036986836200031e565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003b6620003b0620003aa8462000381565b6200038b565b62000381565b9050919050565b6000819050919050565b620003d28362000395565b620003ea620003e182620003bd565b8484546200032b565b825550505050565b600090565b62000401620003f2565b6200040e818484620003c7565b505050565b5b8181101562000436576200042a600082620003f7565b60018101905062000414565b5050565b601f82111562000485576200044f81620002f9565b6200045a846200030e565b810160208510156200046a578190505b6200048262000479856200030e565b83018262000413565b50505b505050565b600082821c905092915050565b6000620004aa600019846008026200048a565b1980831691505092915050565b6000620004c5838362000497565b9150826002028217905092915050565b620004e0826200025b565b67ffffffffffffffff811115620004fc57620004fb62000266565b5b620005088254620002c4565b620005158282856200043a565b600060209050601f8311600181146200054d576000841562000538578287015190505b620005448582620004b7565b865550620005b4565b601f1984166200055d86620002f9565b60005b82811015620005875784890151825560018201915060208501945060208101905062000560565b86831015620005a75784890151620005a3601f89168262000497565b8355505b6001600288020188555050505b505050505050565b600080fd5b620005cc8162000381565b8114620005d857600080fd5b50565b600081519050620005ec81620005c1565b92915050565b6000602082840312156200060b576200060a620005bc565b5b60006200061b84828501620005db565b91505092915050565b600082825260208201905092915050565b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b60006200069360278362000624565b9150620006a08262000635565b604082019050919050565b60006020820190508181036000830152620006c68162000684565b9050919050565b6080516145cc620006f760003960008181611ef401528181611f1d01526125cc01526145cc6000f3fe60806040526004361061019c5760003560e01c80636352211e116100ec578063a22cb4651161008a578063d547cfb711610064578063d547cfb7146105a8578063d7224ba0146105d3578063e985e9c5146105fe578063f2fde38b1461063b5761019c565b8063a22cb46514610519578063b88d4fde14610542578063c87b56dd1461056b5761019c565b8063715018a6116100c6578063715018a6146104905780638da5cb5b146104a757806395d89b41146104d2578063a0712d68146104fd5761019c565b80636352211e146103ed5780636545d6191461042a57806370a08231146104535761019c565b806323b872dd1161015957806342842e0e1161013357806342842e0e146103335780634f6ccce71461035c57806355f804b3146103995780635c975abb146103c25761019c565b806323b872dd146102c35780632f745c59146102ec5780633ccfd60b146103295761019c565b806301ffc9a7146101a157806302329a29146101de57806306fdde0314610207578063081812fc14610232578063095ea7b31461026f57806318160ddd14610298575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612aa3565b610664565b6040516101d59190612aeb565b60405180910390f35b3480156101ea57600080fd5b5061020560048036038101906102009190612b32565b6107ae565b005b34801561021357600080fd5b5061021c610847565b6040516102299190612bf8565b60405180910390f35b34801561023e57600080fd5b5061025960048036038101906102549190612c50565b6108d9565b6040516102669190612cbe565b60405180910390f35b34801561027b57600080fd5b5061029660048036038101906102919190612d05565b61095e565b005b3480156102a457600080fd5b506102ad610a76565b6040516102ba9190612d54565b60405180910390f35b3480156102cf57600080fd5b506102ea60048036038101906102e59190612d6f565b610a7f565b005b3480156102f857600080fd5b50610313600480360381019061030e9190612d05565b610a8f565b6040516103209190612d54565b60405180910390f35b610331610c8b565b005b34801561033f57600080fd5b5061035a60048036038101906103559190612d6f565b610d47565b005b34801561036857600080fd5b50610383600480360381019061037e9190612c50565b610d67565b6040516103909190612d54565b60405180910390f35b3480156103a557600080fd5b506103c060048036038101906103bb9190612e27565b610dba565b005b3480156103ce57600080fd5b506103d7610e4c565b6040516103e49190612aeb565b60405180910390f35b3480156103f957600080fd5b50610414600480360381019061040f9190612c50565b610e5f565b6040516104219190612cbe565b60405180910390f35b34801561043657600080fd5b50610451600480360381019061044c9190612e74565b610e75565b005b34801561045f57600080fd5b5061047a60048036038101906104759190612eb4565b610eff565b6040516104879190612d54565b60405180910390f35b34801561049c57600080fd5b506104a5610fe7565b005b3480156104b357600080fd5b506104bc61106f565b6040516104c99190612cbe565b60405180910390f35b3480156104de57600080fd5b506104e7611099565b6040516104f49190612bf8565b60405180910390f35b61051760048036038101906105129190612c50565b61112b565b005b34801561052557600080fd5b50610540600480360381019061053b9190612ee1565b611316565b005b34801561054e57600080fd5b5061056960048036038101906105649190613051565b611496565b005b34801561057757600080fd5b50610592600480360381019061058d9190612c50565b6114f2565b60405161059f9190612bf8565b60405180910390f35b3480156105b457600080fd5b506105bd611599565b6040516105ca9190612bf8565b60405180910390f35b3480156105df57600080fd5b506105e8611627565b6040516105f59190612d54565b60405180910390f35b34801561060a57600080fd5b50610625600480360381019061062091906130d4565b61162d565b6040516106329190612aeb565b60405180910390f35b34801561064757600080fd5b50610662600480360381019061065d9190612eb4565b6116c1565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061079757507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107a757506107a6826117b8565b5b9050919050565b6107b6611822565b73ffffffffffffffffffffffffffffffffffffffff166107d461106f565b73ffffffffffffffffffffffffffffffffffffffff161461082a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082190613160565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b606060018054610856906131af565b80601f0160208091040260200160405190810160405280929190818152602001828054610882906131af565b80156108cf5780601f106108a4576101008083540402835291602001916108cf565b820191906000526020600020905b8154815290600101906020018083116108b257829003601f168201915b5050505050905090565b60006108e48261182a565b610923576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091a90613252565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061096982610e5f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d0906132e4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109f8611822565b73ffffffffffffffffffffffffffffffffffffffff161480610a275750610a2681610a21611822565b61162d565b5b610a66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5d90613376565b60405180910390fd5b610a71838383611837565b505050565b60008054905090565b610a8a8383836118e9565b505050565b6000610a9a83610eff565b8210610adb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad290613408565b60405180910390fd5b6000610ae5610a76565b905060008060005b83811015610c49576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610bdf57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c3557868403610c26578195505050505050610c85565b8380610c3190613457565b9450505b508080610c4190613457565b915050610aed565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7c90613511565b60405180910390fd5b92915050565b610c93611822565b73ffffffffffffffffffffffffffffffffffffffff16610cb161106f565b73ffffffffffffffffffffffffffffffffffffffff1614610d07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfe90613160565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610d4557600080fd5b565b610d6283838360405180602001604052806000815250611496565b505050565b6000610d71610a76565b8210610db2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da9906135a3565b60405180910390fd5b819050919050565b610dc2611822565b73ffffffffffffffffffffffffffffffffffffffff16610de061106f565b73ffffffffffffffffffffffffffffffffffffffff1614610e36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2d90613160565b60405180910390fd5b8181600a9182610e4792919061377a565b505050565b600b60009054906101000a900460ff1681565b6000610e6a82611ea0565b600001519050919050565b610e7d611822565b73ffffffffffffffffffffffffffffffffffffffff16610e9b61106f565b73ffffffffffffffffffffffffffffffffffffffff1614610ef1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee890613160565b60405180910390fd5b610efb81836120a3565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f66906138bc565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b610fef611822565b73ffffffffffffffffffffffffffffffffffffffff1661100d61106f565b73ffffffffffffffffffffffffffffffffffffffff1614611063576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105a90613160565b60405180910390fd5b61106d60006120c1565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546110a8906131af565b80601f01602080910402602001604051908101604052809291908181526020018280546110d4906131af565b80156111215780601f106110f657610100808354040283529160200191611121565b820191906000526020600020905b81548152906001019060200180831161110457829003601f168201915b5050505050905090565b600260095403611170576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116790613928565b60405180910390fd5b60026009819055506000611182610a76565b9050600082116111c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111be90613994565b60405180910390fd5b600182111561120b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120290613a00565b60405180910390fd5b600b60009054906101000a900460ff161561125b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125290613a6c565b60405180910390fd5b6103e7828261126a9190613a8c565b11156112ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a290613b2e565b60405180910390fd5b662386f26fc10000826112be9190613b4e565b341015611300576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f790613bf4565b60405180910390fd5b61130a33836120a3565b50600160098190555050565b61131e611822565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361138b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138290613c60565b60405180910390fd5b8060066000611398611822565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611445611822565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161148a9190612aeb565b60405180910390a35050565b6114a18484846118e9565b6114ad84848484612187565b6114ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e390613cf2565b60405180910390fd5b50505050565b60606114fd8261182a565b61153c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153390613d84565b60405180910390fd5b600061154661230e565b905060008151116115665760405180602001604052806000815250611591565b80611570846123a0565b604051602001611581929190613de0565b6040516020818303038152906040525b915050919050565b600a80546115a6906131af565b80601f01602080910402602001604051908101604052809291908181526020018280546115d2906131af565b801561161f5780601f106115f45761010080835404028352916020019161161f565b820191906000526020600020905b81548152906001019060200180831161160257829003601f168201915b505050505081565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116c9611822565b73ffffffffffffffffffffffffffffffffffffffff166116e761106f565b73ffffffffffffffffffffffffffffffffffffffff161461173d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173490613160565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036117ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a390613e76565b60405180910390fd5b6117b5816120c1565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006118f482611ea0565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661191b611822565b73ffffffffffffffffffffffffffffffffffffffff1614806119775750611940611822565b73ffffffffffffffffffffffffffffffffffffffff1661195f846108d9565b73ffffffffffffffffffffffffffffffffffffffff16145b806119935750611992826000015161198d611822565b61162d565b5b9050806119d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cc90613f08565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611a47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3e90613f9a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611ab6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aad9061402c565b60405180910390fd5b611ac38585856001612500565b611ad36000848460000151611837565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611b419190614068565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611be5919061409c565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611ceb9190613a8c565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611e3057611d608161182a565b15611e2f576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e988686866001612506565b505050505050565b611ea86129fd565b611eb18261182a565b611ef0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee790614154565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008310611f545760017f000000000000000000000000000000000000000000000000000000000000000084611f479190614174565b611f519190613a8c565b90505b60008390505b818110612062576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461204e5780935050505061209e565b50808061205a906141a8565b915050611f5a565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209590614243565b60405180910390fd5b919050565b6120bd82826040518060200160405280600081525061250c565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006121a88473ffffffffffffffffffffffffffffffffffffffff166129ea565b15612301578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121d1611822565b8786866040518563ffffffff1660e01b81526004016121f394939291906142b8565b6020604051808303816000875af192505050801561222f57506040513d601f19601f8201168201806040525081019061222c9190614319565b60015b6122b1573d806000811461225f576040519150601f19603f3d011682016040523d82523d6000602084013e612264565b606091505b5060008151036122a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a090613cf2565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612306565b600190505b949350505050565b6060600a805461231d906131af565b80601f0160208091040260200160405190810160405280929190818152602001828054612349906131af565b80156123965780601f1061236b57610100808354040283529160200191612396565b820191906000526020600020905b81548152906001019060200180831161237957829003601f168201915b5050505050905090565b6060600082036123e7576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124fb565b600082905060005b6000821461241957808061240290613457565b915050600a826124129190614375565b91506123ef565b60008167ffffffffffffffff81111561243557612434612f26565b5b6040519080825280601f01601f1916602001820160405280156124675781602001600182028036833780820191505090505b5090505b600085146124f4576001826124809190614174565b9150600a8561248f91906143a6565b603061249b9190613a8c565b60f81b8183815181106124b1576124b06143d7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124ed9190614375565b945061246b565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612581576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257890614478565b60405180910390fd5b61258a8161182a565b156125ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c1906144e4565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000083111561262d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262490614576565b60405180910390fd5b61263a6000858386612500565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612737919061409c565b6fffffffffffffffffffffffffffffffff16815260200185836020015161275e919061409c565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156129cd57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461296d6000888488612187565b6129ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a390613cf2565b60405180910390fd5b81806129b790613457565b92505080806129c590613457565b9150506128fc565b50806000819055506129e26000878588612506565b505050505050565b600080823b905060008111915050919050565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612a8081612a4b565b8114612a8b57600080fd5b50565b600081359050612a9d81612a77565b92915050565b600060208284031215612ab957612ab8612a41565b5b6000612ac784828501612a8e565b91505092915050565b60008115159050919050565b612ae581612ad0565b82525050565b6000602082019050612b006000830184612adc565b92915050565b612b0f81612ad0565b8114612b1a57600080fd5b50565b600081359050612b2c81612b06565b92915050565b600060208284031215612b4857612b47612a41565b5b6000612b5684828501612b1d565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b99578082015181840152602081019050612b7e565b83811115612ba8576000848401525b50505050565b6000601f19601f8301169050919050565b6000612bca82612b5f565b612bd48185612b6a565b9350612be4818560208601612b7b565b612bed81612bae565b840191505092915050565b60006020820190508181036000830152612c128184612bbf565b905092915050565b6000819050919050565b612c2d81612c1a565b8114612c3857600080fd5b50565b600081359050612c4a81612c24565b92915050565b600060208284031215612c6657612c65612a41565b5b6000612c7484828501612c3b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612ca882612c7d565b9050919050565b612cb881612c9d565b82525050565b6000602082019050612cd36000830184612caf565b92915050565b612ce281612c9d565b8114612ced57600080fd5b50565b600081359050612cff81612cd9565b92915050565b60008060408385031215612d1c57612d1b612a41565b5b6000612d2a85828601612cf0565b9250506020612d3b85828601612c3b565b9150509250929050565b612d4e81612c1a565b82525050565b6000602082019050612d696000830184612d45565b92915050565b600080600060608486031215612d8857612d87612a41565b5b6000612d9686828701612cf0565b9350506020612da786828701612cf0565b9250506040612db886828701612c3b565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112612de757612de6612dc2565b5b8235905067ffffffffffffffff811115612e0457612e03612dc7565b5b602083019150836001820283011115612e2057612e1f612dcc565b5b9250929050565b60008060208385031215612e3e57612e3d612a41565b5b600083013567ffffffffffffffff811115612e5c57612e5b612a46565b5b612e6885828601612dd1565b92509250509250929050565b60008060408385031215612e8b57612e8a612a41565b5b6000612e9985828601612c3b565b9250506020612eaa85828601612cf0565b9150509250929050565b600060208284031215612eca57612ec9612a41565b5b6000612ed884828501612cf0565b91505092915050565b60008060408385031215612ef857612ef7612a41565b5b6000612f0685828601612cf0565b9250506020612f1785828601612b1d565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612f5e82612bae565b810181811067ffffffffffffffff82111715612f7d57612f7c612f26565b5b80604052505050565b6000612f90612a37565b9050612f9c8282612f55565b919050565b600067ffffffffffffffff821115612fbc57612fbb612f26565b5b612fc582612bae565b9050602081019050919050565b82818337600083830152505050565b6000612ff4612fef84612fa1565b612f86565b9050828152602081018484840111156130105761300f612f21565b5b61301b848285612fd2565b509392505050565b600082601f83011261303857613037612dc2565b5b8135613048848260208601612fe1565b91505092915050565b6000806000806080858703121561306b5761306a612a41565b5b600061307987828801612cf0565b945050602061308a87828801612cf0565b935050604061309b87828801612c3b565b925050606085013567ffffffffffffffff8111156130bc576130bb612a46565b5b6130c887828801613023565b91505092959194509250565b600080604083850312156130eb576130ea612a41565b5b60006130f985828601612cf0565b925050602061310a85828601612cf0565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061314a602083612b6a565b915061315582613114565b602082019050919050565b600060208201905081810360008301526131798161313d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806131c757607f821691505b6020821081036131da576131d9613180565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b600061323c602d83612b6a565b9150613247826131e0565b604082019050919050565b6000602082019050818103600083015261326b8161322f565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b60006132ce602283612b6a565b91506132d982613272565b604082019050919050565b600060208201905081810360008301526132fd816132c1565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000613360603983612b6a565b915061336b82613304565b604082019050919050565b6000602082019050818103600083015261338f81613353565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b60006133f2602283612b6a565b91506133fd82613396565b604082019050919050565b60006020820190508181036000830152613421816133e5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061346282612c1a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361349457613493613428565b5b600182019050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b60006134fb602e83612b6a565b91506135068261349f565b604082019050919050565b6000602082019050818103600083015261352a816134ee565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b600061358d602383612b6a565b915061359882613531565b604082019050919050565b600060208201905081810360008301526135bc81613580565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026136307fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826135f3565b61363a86836135f3565b95508019841693508086168417925050509392505050565b6000819050919050565b600061367761367261366d84612c1a565b613652565b612c1a565b9050919050565b6000819050919050565b6136918361365c565b6136a561369d8261367e565b848454613600565b825550505050565b600090565b6136ba6136ad565b6136c5818484613688565b505050565b5b818110156136e9576136de6000826136b2565b6001810190506136cb565b5050565b601f82111561372e576136ff816135ce565b613708846135e3565b81016020851015613717578190505b61372b613723856135e3565b8301826136ca565b50505b505050565b600082821c905092915050565b600061375160001984600802613733565b1980831691505092915050565b600061376a8383613740565b9150826002028217905092915050565b61378483836135c3565b67ffffffffffffffff81111561379d5761379c612f26565b5b6137a782546131af565b6137b28282856136ed565b6000601f8311600181146137e157600084156137cf578287013590505b6137d9858261375e565b865550613841565b601f1984166137ef866135ce565b60005b82811015613817578489013582556001820191506020850194506020810190506137f2565b868310156138345784890135613830601f891682613740565b8355505b6001600288020188555050505b50505050505050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b60006138a6602b83612b6a565b91506138b18261384a565b604082019050919050565b600060208201905081810360008301526138d581613899565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613912601f83612b6a565b915061391d826138dc565b602082019050919050565b6000602082019050818103600083015261394181613905565b9050919050565b7f4e6f207a65726f206d696e747300000000000000000000000000000000000000600082015250565b600061397e600d83612b6a565b915061398982613948565b602082019050919050565b600060208201905081810360008301526139ad81613971565b9050919050565b7f45786365656473206d6178207065722074780000000000000000000000000000600082015250565b60006139ea601283612b6a565b91506139f5826139b4565b602082019050919050565b60006020820190508181036000830152613a19816139dd565b9050919050565b7f53616c6520686173206e6f742073746172746564210000000000000000000000600082015250565b6000613a56601583612b6a565b9150613a6182613a20565b602082019050919050565b60006020820190508181036000830152613a8581613a49565b9050919050565b6000613a9782612c1a565b9150613aa283612c1a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ad757613ad6613428565b5b828201905092915050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b6000613b18601283612b6a565b9150613b2382613ae2565b602082019050919050565b60006020820190508181036000830152613b4781613b0b565b9050919050565b6000613b5982612c1a565b9150613b6483612c1a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b9d57613b9c613428565b5b828202905092915050565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b6000613bde601683612b6a565b9150613be982613ba8565b602082019050919050565b60006020820190508181036000830152613c0d81613bd1565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000613c4a601a83612b6a565b9150613c5582613c14565b602082019050919050565b60006020820190508181036000830152613c7981613c3d565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b6000613cdc603383612b6a565b9150613ce782613c80565b604082019050919050565b60006020820190508181036000830152613d0b81613ccf565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613d6e602f83612b6a565b9150613d7982613d12565b604082019050919050565b60006020820190508181036000830152613d9d81613d61565b9050919050565b600081905092915050565b6000613dba82612b5f565b613dc48185613da4565b9350613dd4818560208601612b7b565b80840191505092915050565b6000613dec8285613daf565b9150613df88284613daf565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613e60602683612b6a565b9150613e6b82613e04565b604082019050919050565b60006020820190508181036000830152613e8f81613e53565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000613ef2603283612b6a565b9150613efd82613e96565b604082019050919050565b60006020820190508181036000830152613f2181613ee5565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000613f84602683612b6a565b9150613f8f82613f28565b604082019050919050565b60006020820190508181036000830152613fb381613f77565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614016602583612b6a565b915061402182613fba565b604082019050919050565b6000602082019050818103600083015261404581614009565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b60006140738261404c565b915061407e8361404c565b92508282101561409157614090613428565b5b828203905092915050565b60006140a78261404c565b91506140b28361404c565b9250826fffffffffffffffffffffffffffffffff038211156140d7576140d6613428565b5b828201905092915050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b600061413e602a83612b6a565b9150614149826140e2565b604082019050919050565b6000602082019050818103600083015261416d81614131565b9050919050565b600061417f82612c1a565b915061418a83612c1a565b92508282101561419d5761419c613428565b5b828203905092915050565b60006141b382612c1a565b9150600082036141c6576141c5613428565b5b600182039050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b600061422d602f83612b6a565b9150614238826141d1565b604082019050919050565b6000602082019050818103600083015261425c81614220565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061428a82614263565b614294818561426e565b93506142a4818560208601612b7b565b6142ad81612bae565b840191505092915050565b60006080820190506142cd6000830187612caf565b6142da6020830186612caf565b6142e76040830185612d45565b81810360608301526142f9818461427f565b905095945050505050565b60008151905061431381612a77565b92915050565b60006020828403121561432f5761432e612a41565b5b600061433d84828501614304565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061438082612c1a565b915061438b83612c1a565b92508261439b5761439a614346565b5b828204905092915050565b60006143b182612c1a565b91506143bc83612c1a565b9250826143cc576143cb614346565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614462602183612b6a565b915061446d82614406565b604082019050919050565b6000602082019050818103600083015261449181614455565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b60006144ce601d83612b6a565b91506144d982614498565b602082019050919050565b600060208201905081810360008301526144fd816144c1565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6000614560602283612b6a565b915061456b82614504565b604082019050919050565b6000602082019050818103600083015261458f81614553565b905091905056fea26469706673582212201211602ab4a75d6a5b349150d622f92b93fc468eb38da3fcc753636419c7e92264736f6c634300080f00330000000000000000000000000000000000000000000000000000000000000001
Deployed Bytecode
0x60806040526004361061019c5760003560e01c80636352211e116100ec578063a22cb4651161008a578063d547cfb711610064578063d547cfb7146105a8578063d7224ba0146105d3578063e985e9c5146105fe578063f2fde38b1461063b5761019c565b8063a22cb46514610519578063b88d4fde14610542578063c87b56dd1461056b5761019c565b8063715018a6116100c6578063715018a6146104905780638da5cb5b146104a757806395d89b41146104d2578063a0712d68146104fd5761019c565b80636352211e146103ed5780636545d6191461042a57806370a08231146104535761019c565b806323b872dd1161015957806342842e0e1161013357806342842e0e146103335780634f6ccce71461035c57806355f804b3146103995780635c975abb146103c25761019c565b806323b872dd146102c35780632f745c59146102ec5780633ccfd60b146103295761019c565b806301ffc9a7146101a157806302329a29146101de57806306fdde0314610207578063081812fc14610232578063095ea7b31461026f57806318160ddd14610298575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612aa3565b610664565b6040516101d59190612aeb565b60405180910390f35b3480156101ea57600080fd5b5061020560048036038101906102009190612b32565b6107ae565b005b34801561021357600080fd5b5061021c610847565b6040516102299190612bf8565b60405180910390f35b34801561023e57600080fd5b5061025960048036038101906102549190612c50565b6108d9565b6040516102669190612cbe565b60405180910390f35b34801561027b57600080fd5b5061029660048036038101906102919190612d05565b61095e565b005b3480156102a457600080fd5b506102ad610a76565b6040516102ba9190612d54565b60405180910390f35b3480156102cf57600080fd5b506102ea60048036038101906102e59190612d6f565b610a7f565b005b3480156102f857600080fd5b50610313600480360381019061030e9190612d05565b610a8f565b6040516103209190612d54565b60405180910390f35b610331610c8b565b005b34801561033f57600080fd5b5061035a60048036038101906103559190612d6f565b610d47565b005b34801561036857600080fd5b50610383600480360381019061037e9190612c50565b610d67565b6040516103909190612d54565b60405180910390f35b3480156103a557600080fd5b506103c060048036038101906103bb9190612e27565b610dba565b005b3480156103ce57600080fd5b506103d7610e4c565b6040516103e49190612aeb565b60405180910390f35b3480156103f957600080fd5b50610414600480360381019061040f9190612c50565b610e5f565b6040516104219190612cbe565b60405180910390f35b34801561043657600080fd5b50610451600480360381019061044c9190612e74565b610e75565b005b34801561045f57600080fd5b5061047a60048036038101906104759190612eb4565b610eff565b6040516104879190612d54565b60405180910390f35b34801561049c57600080fd5b506104a5610fe7565b005b3480156104b357600080fd5b506104bc61106f565b6040516104c99190612cbe565b60405180910390f35b3480156104de57600080fd5b506104e7611099565b6040516104f49190612bf8565b60405180910390f35b61051760048036038101906105129190612c50565b61112b565b005b34801561052557600080fd5b50610540600480360381019061053b9190612ee1565b611316565b005b34801561054e57600080fd5b5061056960048036038101906105649190613051565b611496565b005b34801561057757600080fd5b50610592600480360381019061058d9190612c50565b6114f2565b60405161059f9190612bf8565b60405180910390f35b3480156105b457600080fd5b506105bd611599565b6040516105ca9190612bf8565b60405180910390f35b3480156105df57600080fd5b506105e8611627565b6040516105f59190612d54565b60405180910390f35b34801561060a57600080fd5b50610625600480360381019061062091906130d4565b61162d565b6040516106329190612aeb565b60405180910390f35b34801561064757600080fd5b50610662600480360381019061065d9190612eb4565b6116c1565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061079757507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107a757506107a6826117b8565b5b9050919050565b6107b6611822565b73ffffffffffffffffffffffffffffffffffffffff166107d461106f565b73ffffffffffffffffffffffffffffffffffffffff161461082a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082190613160565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b606060018054610856906131af565b80601f0160208091040260200160405190810160405280929190818152602001828054610882906131af565b80156108cf5780601f106108a4576101008083540402835291602001916108cf565b820191906000526020600020905b8154815290600101906020018083116108b257829003601f168201915b5050505050905090565b60006108e48261182a565b610923576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091a90613252565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061096982610e5f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d0906132e4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109f8611822565b73ffffffffffffffffffffffffffffffffffffffff161480610a275750610a2681610a21611822565b61162d565b5b610a66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5d90613376565b60405180910390fd5b610a71838383611837565b505050565b60008054905090565b610a8a8383836118e9565b505050565b6000610a9a83610eff565b8210610adb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad290613408565b60405180910390fd5b6000610ae5610a76565b905060008060005b83811015610c49576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610bdf57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c3557868403610c26578195505050505050610c85565b8380610c3190613457565b9450505b508080610c4190613457565b915050610aed565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7c90613511565b60405180910390fd5b92915050565b610c93611822565b73ffffffffffffffffffffffffffffffffffffffff16610cb161106f565b73ffffffffffffffffffffffffffffffffffffffff1614610d07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfe90613160565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610d4557600080fd5b565b610d6283838360405180602001604052806000815250611496565b505050565b6000610d71610a76565b8210610db2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da9906135a3565b60405180910390fd5b819050919050565b610dc2611822565b73ffffffffffffffffffffffffffffffffffffffff16610de061106f565b73ffffffffffffffffffffffffffffffffffffffff1614610e36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2d90613160565b60405180910390fd5b8181600a9182610e4792919061377a565b505050565b600b60009054906101000a900460ff1681565b6000610e6a82611ea0565b600001519050919050565b610e7d611822565b73ffffffffffffffffffffffffffffffffffffffff16610e9b61106f565b73ffffffffffffffffffffffffffffffffffffffff1614610ef1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee890613160565b60405180910390fd5b610efb81836120a3565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f66906138bc565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b610fef611822565b73ffffffffffffffffffffffffffffffffffffffff1661100d61106f565b73ffffffffffffffffffffffffffffffffffffffff1614611063576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105a90613160565b60405180910390fd5b61106d60006120c1565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546110a8906131af565b80601f01602080910402602001604051908101604052809291908181526020018280546110d4906131af565b80156111215780601f106110f657610100808354040283529160200191611121565b820191906000526020600020905b81548152906001019060200180831161110457829003601f168201915b5050505050905090565b600260095403611170576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116790613928565b60405180910390fd5b60026009819055506000611182610a76565b9050600082116111c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111be90613994565b60405180910390fd5b600182111561120b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120290613a00565b60405180910390fd5b600b60009054906101000a900460ff161561125b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125290613a6c565b60405180910390fd5b6103e7828261126a9190613a8c565b11156112ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a290613b2e565b60405180910390fd5b662386f26fc10000826112be9190613b4e565b341015611300576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f790613bf4565b60405180910390fd5b61130a33836120a3565b50600160098190555050565b61131e611822565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361138b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138290613c60565b60405180910390fd5b8060066000611398611822565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611445611822565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161148a9190612aeb565b60405180910390a35050565b6114a18484846118e9565b6114ad84848484612187565b6114ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e390613cf2565b60405180910390fd5b50505050565b60606114fd8261182a565b61153c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153390613d84565b60405180910390fd5b600061154661230e565b905060008151116115665760405180602001604052806000815250611591565b80611570846123a0565b604051602001611581929190613de0565b6040516020818303038152906040525b915050919050565b600a80546115a6906131af565b80601f01602080910402602001604051908101604052809291908181526020018280546115d2906131af565b801561161f5780601f106115f45761010080835404028352916020019161161f565b820191906000526020600020905b81548152906001019060200180831161160257829003601f168201915b505050505081565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116c9611822565b73ffffffffffffffffffffffffffffffffffffffff166116e761106f565b73ffffffffffffffffffffffffffffffffffffffff161461173d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173490613160565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036117ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a390613e76565b60405180910390fd5b6117b5816120c1565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006118f482611ea0565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661191b611822565b73ffffffffffffffffffffffffffffffffffffffff1614806119775750611940611822565b73ffffffffffffffffffffffffffffffffffffffff1661195f846108d9565b73ffffffffffffffffffffffffffffffffffffffff16145b806119935750611992826000015161198d611822565b61162d565b5b9050806119d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cc90613f08565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611a47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3e90613f9a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611ab6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aad9061402c565b60405180910390fd5b611ac38585856001612500565b611ad36000848460000151611837565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611b419190614068565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611be5919061409c565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611ceb9190613a8c565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611e3057611d608161182a565b15611e2f576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e988686866001612506565b505050505050565b611ea86129fd565b611eb18261182a565b611ef0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee790614154565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000018310611f545760017f000000000000000000000000000000000000000000000000000000000000000184611f479190614174565b611f519190613a8c565b90505b60008390505b818110612062576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461204e5780935050505061209e565b50808061205a906141a8565b915050611f5a565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209590614243565b60405180910390fd5b919050565b6120bd82826040518060200160405280600081525061250c565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006121a88473ffffffffffffffffffffffffffffffffffffffff166129ea565b15612301578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121d1611822565b8786866040518563ffffffff1660e01b81526004016121f394939291906142b8565b6020604051808303816000875af192505050801561222f57506040513d601f19601f8201168201806040525081019061222c9190614319565b60015b6122b1573d806000811461225f576040519150601f19603f3d011682016040523d82523d6000602084013e612264565b606091505b5060008151036122a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a090613cf2565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612306565b600190505b949350505050565b6060600a805461231d906131af565b80601f0160208091040260200160405190810160405280929190818152602001828054612349906131af565b80156123965780601f1061236b57610100808354040283529160200191612396565b820191906000526020600020905b81548152906001019060200180831161237957829003601f168201915b5050505050905090565b6060600082036123e7576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124fb565b600082905060005b6000821461241957808061240290613457565b915050600a826124129190614375565b91506123ef565b60008167ffffffffffffffff81111561243557612434612f26565b5b6040519080825280601f01601f1916602001820160405280156124675781602001600182028036833780820191505090505b5090505b600085146124f4576001826124809190614174565b9150600a8561248f91906143a6565b603061249b9190613a8c565b60f81b8183815181106124b1576124b06143d7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124ed9190614375565b945061246b565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612581576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257890614478565b60405180910390fd5b61258a8161182a565b156125ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c1906144e4565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000183111561262d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262490614576565b60405180910390fd5b61263a6000858386612500565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612737919061409c565b6fffffffffffffffffffffffffffffffff16815260200185836020015161275e919061409c565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156129cd57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461296d6000888488612187565b6129ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a390613cf2565b60405180910390fd5b81806129b790613457565b92505080806129c590613457565b9150506128fc565b50806000819055506129e26000878588612506565b505050505050565b600080823b905060008111915050919050565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612a8081612a4b565b8114612a8b57600080fd5b50565b600081359050612a9d81612a77565b92915050565b600060208284031215612ab957612ab8612a41565b5b6000612ac784828501612a8e565b91505092915050565b60008115159050919050565b612ae581612ad0565b82525050565b6000602082019050612b006000830184612adc565b92915050565b612b0f81612ad0565b8114612b1a57600080fd5b50565b600081359050612b2c81612b06565b92915050565b600060208284031215612b4857612b47612a41565b5b6000612b5684828501612b1d565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b99578082015181840152602081019050612b7e565b83811115612ba8576000848401525b50505050565b6000601f19601f8301169050919050565b6000612bca82612b5f565b612bd48185612b6a565b9350612be4818560208601612b7b565b612bed81612bae565b840191505092915050565b60006020820190508181036000830152612c128184612bbf565b905092915050565b6000819050919050565b612c2d81612c1a565b8114612c3857600080fd5b50565b600081359050612c4a81612c24565b92915050565b600060208284031215612c6657612c65612a41565b5b6000612c7484828501612c3b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612ca882612c7d565b9050919050565b612cb881612c9d565b82525050565b6000602082019050612cd36000830184612caf565b92915050565b612ce281612c9d565b8114612ced57600080fd5b50565b600081359050612cff81612cd9565b92915050565b60008060408385031215612d1c57612d1b612a41565b5b6000612d2a85828601612cf0565b9250506020612d3b85828601612c3b565b9150509250929050565b612d4e81612c1a565b82525050565b6000602082019050612d696000830184612d45565b92915050565b600080600060608486031215612d8857612d87612a41565b5b6000612d9686828701612cf0565b9350506020612da786828701612cf0565b9250506040612db886828701612c3b565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112612de757612de6612dc2565b5b8235905067ffffffffffffffff811115612e0457612e03612dc7565b5b602083019150836001820283011115612e2057612e1f612dcc565b5b9250929050565b60008060208385031215612e3e57612e3d612a41565b5b600083013567ffffffffffffffff811115612e5c57612e5b612a46565b5b612e6885828601612dd1565b92509250509250929050565b60008060408385031215612e8b57612e8a612a41565b5b6000612e9985828601612c3b565b9250506020612eaa85828601612cf0565b9150509250929050565b600060208284031215612eca57612ec9612a41565b5b6000612ed884828501612cf0565b91505092915050565b60008060408385031215612ef857612ef7612a41565b5b6000612f0685828601612cf0565b9250506020612f1785828601612b1d565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612f5e82612bae565b810181811067ffffffffffffffff82111715612f7d57612f7c612f26565b5b80604052505050565b6000612f90612a37565b9050612f9c8282612f55565b919050565b600067ffffffffffffffff821115612fbc57612fbb612f26565b5b612fc582612bae565b9050602081019050919050565b82818337600083830152505050565b6000612ff4612fef84612fa1565b612f86565b9050828152602081018484840111156130105761300f612f21565b5b61301b848285612fd2565b509392505050565b600082601f83011261303857613037612dc2565b5b8135613048848260208601612fe1565b91505092915050565b6000806000806080858703121561306b5761306a612a41565b5b600061307987828801612cf0565b945050602061308a87828801612cf0565b935050604061309b87828801612c3b565b925050606085013567ffffffffffffffff8111156130bc576130bb612a46565b5b6130c887828801613023565b91505092959194509250565b600080604083850312156130eb576130ea612a41565b5b60006130f985828601612cf0565b925050602061310a85828601612cf0565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061314a602083612b6a565b915061315582613114565b602082019050919050565b600060208201905081810360008301526131798161313d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806131c757607f821691505b6020821081036131da576131d9613180565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b600061323c602d83612b6a565b9150613247826131e0565b604082019050919050565b6000602082019050818103600083015261326b8161322f565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b60006132ce602283612b6a565b91506132d982613272565b604082019050919050565b600060208201905081810360008301526132fd816132c1565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000613360603983612b6a565b915061336b82613304565b604082019050919050565b6000602082019050818103600083015261338f81613353565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b60006133f2602283612b6a565b91506133fd82613396565b604082019050919050565b60006020820190508181036000830152613421816133e5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061346282612c1a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361349457613493613428565b5b600182019050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b60006134fb602e83612b6a565b91506135068261349f565b604082019050919050565b6000602082019050818103600083015261352a816134ee565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b600061358d602383612b6a565b915061359882613531565b604082019050919050565b600060208201905081810360008301526135bc81613580565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026136307fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826135f3565b61363a86836135f3565b95508019841693508086168417925050509392505050565b6000819050919050565b600061367761367261366d84612c1a565b613652565b612c1a565b9050919050565b6000819050919050565b6136918361365c565b6136a561369d8261367e565b848454613600565b825550505050565b600090565b6136ba6136ad565b6136c5818484613688565b505050565b5b818110156136e9576136de6000826136b2565b6001810190506136cb565b5050565b601f82111561372e576136ff816135ce565b613708846135e3565b81016020851015613717578190505b61372b613723856135e3565b8301826136ca565b50505b505050565b600082821c905092915050565b600061375160001984600802613733565b1980831691505092915050565b600061376a8383613740565b9150826002028217905092915050565b61378483836135c3565b67ffffffffffffffff81111561379d5761379c612f26565b5b6137a782546131af565b6137b28282856136ed565b6000601f8311600181146137e157600084156137cf578287013590505b6137d9858261375e565b865550613841565b601f1984166137ef866135ce565b60005b82811015613817578489013582556001820191506020850194506020810190506137f2565b868310156138345784890135613830601f891682613740565b8355505b6001600288020188555050505b50505050505050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b60006138a6602b83612b6a565b91506138b18261384a565b604082019050919050565b600060208201905081810360008301526138d581613899565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613912601f83612b6a565b915061391d826138dc565b602082019050919050565b6000602082019050818103600083015261394181613905565b9050919050565b7f4e6f207a65726f206d696e747300000000000000000000000000000000000000600082015250565b600061397e600d83612b6a565b915061398982613948565b602082019050919050565b600060208201905081810360008301526139ad81613971565b9050919050565b7f45786365656473206d6178207065722074780000000000000000000000000000600082015250565b60006139ea601283612b6a565b91506139f5826139b4565b602082019050919050565b60006020820190508181036000830152613a19816139dd565b9050919050565b7f53616c6520686173206e6f742073746172746564210000000000000000000000600082015250565b6000613a56601583612b6a565b9150613a6182613a20565b602082019050919050565b60006020820190508181036000830152613a8581613a49565b9050919050565b6000613a9782612c1a565b9150613aa283612c1a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ad757613ad6613428565b5b828201905092915050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b6000613b18601283612b6a565b9150613b2382613ae2565b602082019050919050565b60006020820190508181036000830152613b4781613b0b565b9050919050565b6000613b5982612c1a565b9150613b6483612c1a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b9d57613b9c613428565b5b828202905092915050565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b6000613bde601683612b6a565b9150613be982613ba8565b602082019050919050565b60006020820190508181036000830152613c0d81613bd1565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000613c4a601a83612b6a565b9150613c5582613c14565b602082019050919050565b60006020820190508181036000830152613c7981613c3d565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b6000613cdc603383612b6a565b9150613ce782613c80565b604082019050919050565b60006020820190508181036000830152613d0b81613ccf565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613d6e602f83612b6a565b9150613d7982613d12565b604082019050919050565b60006020820190508181036000830152613d9d81613d61565b9050919050565b600081905092915050565b6000613dba82612b5f565b613dc48185613da4565b9350613dd4818560208601612b7b565b80840191505092915050565b6000613dec8285613daf565b9150613df88284613daf565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613e60602683612b6a565b9150613e6b82613e04565b604082019050919050565b60006020820190508181036000830152613e8f81613e53565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000613ef2603283612b6a565b9150613efd82613e96565b604082019050919050565b60006020820190508181036000830152613f2181613ee5565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000613f84602683612b6a565b9150613f8f82613f28565b604082019050919050565b60006020820190508181036000830152613fb381613f77565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614016602583612b6a565b915061402182613fba565b604082019050919050565b6000602082019050818103600083015261404581614009565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b60006140738261404c565b915061407e8361404c565b92508282101561409157614090613428565b5b828203905092915050565b60006140a78261404c565b91506140b28361404c565b9250826fffffffffffffffffffffffffffffffff038211156140d7576140d6613428565b5b828201905092915050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b600061413e602a83612b6a565b9150614149826140e2565b604082019050919050565b6000602082019050818103600083015261416d81614131565b9050919050565b600061417f82612c1a565b915061418a83612c1a565b92508282101561419d5761419c613428565b5b828203905092915050565b60006141b382612c1a565b9150600082036141c6576141c5613428565b5b600182039050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b600061422d602f83612b6a565b9150614238826141d1565b604082019050919050565b6000602082019050818103600083015261425c81614220565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061428a82614263565b614294818561426e565b93506142a4818560208601612b7b565b6142ad81612bae565b840191505092915050565b60006080820190506142cd6000830187612caf565b6142da6020830186612caf565b6142e76040830185612d45565b81810360608301526142f9818461427f565b905095945050505050565b60008151905061431381612a77565b92915050565b60006020828403121561432f5761432e612a41565b5b600061433d84828501614304565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061438082612c1a565b915061438b83612c1a565b92508261439b5761439a614346565b5b828204905092915050565b60006143b182612c1a565b91506143bc83612c1a565b9250826143cc576143cb614346565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614462602183612b6a565b915061446d82614406565b604082019050919050565b6000602082019050818103600083015261449181614455565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b60006144ce601d83612b6a565b91506144d982614498565b602082019050919050565b600060208201905081810360008301526144fd816144c1565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6000614560602283612b6a565b915061456b82614504565b604082019050919050565b6000602082019050818103600083015261458f81614553565b905091905056fea26469706673582212201211602ab4a75d6a5b349150d622f92b93fc468eb38da3fcc753636419c7e92264736f6c634300080f0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000001
-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 1
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000001
Deployed Bytecode Sourcemap
41032:1479:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28745:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42193:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30471:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31996:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31559:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27309:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32846:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27937:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42063:122;;;:::i;:::-;;33051:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27472:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42403:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41290:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30294:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41919:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29171:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7317:94;;;;;;;;;;;;;:::i;:::-;;6666:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30626:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41414:497;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32264:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33271:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30787:394;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41252:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37602:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32601:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7566:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28745:370;28872:4;28917:25;28902:40;;;:11;:40;;;;:99;;;;28968:33;28953:48;;;:11;:48;;;;28902:99;:160;;;;29027:35;29012:50;;;:11;:50;;;;28902:160;:207;;;;29073:36;29097:11;29073:23;:36::i;:::-;28902:207;28888:221;;28745:370;;;:::o;42193:81::-;6897:12;:10;:12::i;:::-;6886:23;;:7;:5;:7::i;:::-;:23;;;6878:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42260:6:::1;42251;;:15;;;;;;;;;;;;;;;;;;42193:81:::0;:::o;30471:94::-;30525:13;30554:5;30547:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30471:94;:::o;31996:204::-;32064:7;32088:16;32096:7;32088;:16::i;:::-;32080:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;32170:15;:24;32186:7;32170:24;;;;;;;;;;;;;;;;;;;;;32163:31;;31996:204;;;:::o;31559:379::-;31628:13;31644:24;31660:7;31644:15;:24::i;:::-;31628:40;;31689:5;31683:11;;:2;:11;;;31675:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;31774:5;31758:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;31783:37;31800:5;31807:12;:10;:12::i;:::-;31783:16;:37::i;:::-;31758:62;31742:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;31904:28;31913:2;31917:7;31926:5;31904:8;:28::i;:::-;31621:317;31559:379;;:::o;27309:94::-;27362:7;27385:12;;27378:19;;27309:94;:::o;32846:142::-;32954:28;32964:4;32970:2;32974:7;32954:9;:28::i;:::-;32846:142;;;:::o;27937:744::-;28046:7;28081:16;28091:5;28081:9;:16::i;:::-;28073:5;:24;28065:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;28143:22;28168:13;:11;:13::i;:::-;28143:38;;28188:19;28218:25;28268:9;28263:350;28287:14;28283:1;:18;28263:350;;;28317:31;28351:11;:14;28363:1;28351:14;;;;;;;;;;;28317:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28404:1;28378:28;;:9;:14;;;:28;;;28374:89;;28439:9;:14;;;28419:34;;28374:89;28496:5;28475:26;;:17;:26;;;28471:135;;28533:5;28518:11;:20;28514:59;;28560:1;28553:8;;;;;;;;;28514:59;28583:13;;;;;:::i;:::-;;;;28471:135;28308:305;28303:3;;;;;:::i;:::-;;;;28263:350;;;;28619:56;;;;;;;;;;:::i;:::-;;;;;;;;27937:744;;;;;:::o;42063:122::-;6897:12;:10;:12::i;:::-;6886:23;;:7;:5;:7::i;:::-;:23;;;6878:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42137:10:::1;42129:24;;:47;42154:21;42129:47;;;;;;;;;;;;;;;;;;;;;;;42121:56;;;::::0;::::1;;42063:122::o:0;33051:157::-;33163:39;33180:4;33186:2;33190:7;33163:39;;;;;;;;;;;;:16;:39::i;:::-;33051:157;;;:::o;27472:177::-;27539:7;27571:13;:11;:13::i;:::-;27563:5;:21;27555:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;27638:5;27631:12;;27472:177;;;:::o;42403:105::-;6897:12;:10;:12::i;:::-;6886:23;;:7;:5;:7::i;:::-;:23;;;6878:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42493:7:::1;;42478:12;:22;;;;;;;:::i;:::-;;42403:105:::0;;:::o;41290:25::-;;;;;;;;;;;;;:::o;30294:118::-;30358:7;30381:20;30393:7;30381:11;:20::i;:::-;:25;;;30374:32;;30294:118;;;:::o;41919:132::-;6897:12;:10;:12::i;:::-;6886:23;;:7;:5;:7::i;:::-;:23;;;6878:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42010:33:::1;42020:9;42031:11;42010:9;:33::i;:::-;41919:132:::0;;:::o;29171:211::-;29235:7;29276:1;29259:19;;:5;:19;;;29251:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;29348:12;:19;29361:5;29348:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;29340:36;;29333:43;;29171:211;;;:::o;7317:94::-;6897:12;:10;:12::i;:::-;6886:23;;:7;:5;:7::i;:::-;:23;;;6878:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7382:21:::1;7400:1;7382:9;:21::i;:::-;7317:94::o:0;6666:87::-;6712:7;6739:6;;;;;;;;;;;6732:13;;6666:87;:::o;30626:98::-;30682:13;30711:7;30704:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30626:98;:::o;41414:497::-;1812:1;2410:7;;:19;2402:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1812:1;2543:7;:18;;;;41490:14:::1;41507:13;:11;:13::i;:::-;41490:30;;41553:1;41539:11;:15;41531:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;41193:1;41590:11;:30;;41582:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;41662:6;;;;;;;;;;;41661:7;41653:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;41148:3;41724:11;41715:6;:20;;;;:::i;:::-;:36;;41707:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;41233:10;41806:11;:26;;;;:::i;:::-;41792:9;:41;;41784:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;41870:33;41880:10;41891:11;41870:9;:33::i;:::-;41479:432;1768:1:::0;2722:7;:22;;;;41414:497;:::o;32264:274::-;32367:12;:10;:12::i;:::-;32355:24;;:8;:24;;;32347:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;32464:8;32419:18;:32;32438:12;:10;:12::i;:::-;32419:32;;;;;;;;;;;;;;;:42;32452:8;32419:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;32513:8;32484:48;;32499:12;:10;:12::i;:::-;32484:48;;;32523:8;32484:48;;;;;;:::i;:::-;;;;;;;;32264:274;;:::o;33271:311::-;33408:28;33418:4;33424:2;33428:7;33408:9;:28::i;:::-;33459:48;33482:4;33488:2;33492:7;33501:5;33459:22;:48::i;:::-;33443:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;33271:311;;;;:::o;30787:394::-;30885:13;30926:16;30934:7;30926;:16::i;:::-;30910:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;31016:21;31040:10;:8;:10::i;:::-;31016:34;;31095:1;31077:7;31071:21;:25;:104;;;;;;;;;;;;;;;;;31132:7;31141:18;:7;:16;:18::i;:::-;31115:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;31071:104;31057:118;;;30787:394;;;:::o;41252:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37602:43::-;;;;:::o;32601:186::-;32723:4;32746:18;:25;32765:5;32746:25;;;;;;;;;;;;;;;:35;32772:8;32746:35;;;;;;;;;;;;;;;;;;;;;;;;;32739:42;;32601:186;;;;:::o;7566:192::-;6897:12;:10;:12::i;:::-;6886:23;;:7;:5;:7::i;:::-;:23;;;6878:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7675:1:::1;7655:22;;:8;:22;;::::0;7647:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;7731:19;7741:8;7731:9;:19::i;:::-;7566:192:::0;:::o;18652:157::-;18737:4;18776:25;18761:40;;;:11;:40;;;;18754:47;;18652:157;;;:::o;5454:98::-;5507:7;5534:10;5527:17;;5454:98;:::o;33821:105::-;33878:4;33908:12;;33898:7;:22;33891:29;;33821:105;;;:::o;37424:172::-;37548:2;37521:15;:24;37537:7;37521:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;37582:7;37578:2;37562:28;;37571:5;37562:28;;;;;;;;;;;;37424:172;;;:::o;35789:1529::-;35886:35;35924:20;35936:7;35924:11;:20::i;:::-;35886:58;;35953:22;35995:13;:18;;;35979:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;36048:12;:10;:12::i;:::-;36024:36;;:20;36036:7;36024:11;:20::i;:::-;:36;;;35979:81;:142;;;;36071:50;36088:13;:18;;;36108:12;:10;:12::i;:::-;36071:16;:50::i;:::-;35979:142;35953:169;;36147:17;36131:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;36279:4;36257:26;;:13;:18;;;:26;;;36241:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;36368:1;36354:16;;:2;:16;;;36346:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;36421:43;36443:4;36449:2;36453:7;36462:1;36421:21;:43::i;:::-;36521:49;36538:1;36542:7;36551:13;:18;;;36521:8;:49::i;:::-;36609:1;36579:12;:18;36592:4;36579:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;36645:1;36617:12;:16;36630:2;36617:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;36676:43;;;;;;;;36691:2;36676:43;;;;;;36702:15;36676:43;;;;;36653:11;:20;36665:7;36653:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36947:19;36979:1;36969:7;:11;;;;:::i;:::-;36947:33;;37032:1;36991:43;;:11;:24;37003:11;36991:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;36987:236;;37049:20;37057:11;37049:7;:20::i;:::-;37045:171;;;37109:97;;;;;;;;37136:13;:18;;;37109:97;;;;;;37167:13;:28;;;37109:97;;;;;37082:11;:24;37094:11;37082:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37045:171;36987:236;37255:7;37251:2;37236:27;;37245:4;37236:27;;;;;;;;;;;;37270:42;37291:4;37297:2;37301:7;37310:1;37270:20;:42::i;:::-;35879:1439;;;35789:1529;;;:::o;29634:606::-;29710:21;;:::i;:::-;29751:16;29759:7;29751;:16::i;:::-;29743:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;29823:26;29871:12;29860:7;:23;29856:93;;29940:1;29925:12;29915:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;29894:47;;29856:93;29962:12;29977:7;29962:22;;29957:212;29994:18;29986:4;:26;29957:212;;30031:31;30065:11;:17;30077:4;30065:17;;;;;;;;;;;30031:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30121:1;30095:28;;:9;:14;;;:28;;;30091:71;;30143:9;30136:16;;;;;;;30091:71;30022:147;30014:6;;;;;:::i;:::-;;;;29957:212;;;;30177:57;;;;;;;;;;:::i;:::-;;;;;;;;29634:606;;;;:::o;33932:98::-;33997:27;34007:2;34011:8;33997:27;;;;;;;;;;;;:9;:27::i;:::-;33932:98;;:::o;7766:173::-;7822:16;7841:6;;;;;;;;;;;7822:25;;7867:8;7858:6;;:17;;;;;;;;;;;;;;;;;;7922:8;7891:40;;7912:8;7891:40;;;;;;;;;;;;7811:128;7766:173;:::o;39135:690::-;39272:4;39289:15;:2;:13;;;:15::i;:::-;39285:535;;;39344:2;39328:36;;;39365:12;:10;:12::i;:::-;39379:4;39385:7;39394:5;39328:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;39315:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39576:1;39559:6;:13;:18;39555:215;;39592:61;;;;;;;;;;:::i;:::-;;;;;;;;39555:215;39738:6;39732:13;39723:6;39719:2;39715:15;39708:38;39315:464;39460:45;;;39450:55;;;:6;:55;;;;39443:62;;;;;39285:535;39808:4;39801:11;;39135:690;;;;;;;:::o;42282:113::-;42342:13;42375:12;42368:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42282:113;:::o;3070:723::-;3126:13;3356:1;3347:5;:10;3343:53;;3374:10;;;;;;;;;;;;;;;;;;;;;3343:53;3406:12;3421:5;3406:20;;3437:14;3462:78;3477:1;3469:4;:9;3462:78;;3495:8;;;;;:::i;:::-;;;;3526:2;3518:10;;;;;:::i;:::-;;;3462:78;;;3550:19;3582:6;3572:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3550:39;;3600:154;3616:1;3607:5;:10;3600:154;;3644:1;3634:11;;;;;:::i;:::-;;;3711:2;3703:5;:10;;;;:::i;:::-;3690:2;:24;;;;:::i;:::-;3677:39;;3660:6;3667;3660:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3740:2;3731:11;;;;;:::i;:::-;;;3600:154;;;3778:6;3764:21;;;;;3070:723;;;;:::o;40287:141::-;;;;;:::o;40814:140::-;;;;;:::o;34285:1272::-;34390:20;34413:12;;34390:35;;34454:1;34440:16;;:2;:16;;;34432:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;34631:21;34639:12;34631:7;:21::i;:::-;34630:22;34622:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;34713:12;34701:8;:24;;34693:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;34773:61;34803:1;34807:2;34811:12;34825:8;34773:21;:61::i;:::-;34843:30;34876:12;:16;34889:2;34876:16;;;;;;;;;;;;;;;34843:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34918:119;;;;;;;;34968:8;34938:11;:19;;;:39;;;;:::i;:::-;34918:119;;;;;;35021:8;34986:11;:24;;;:44;;;;:::i;:::-;34918:119;;;;;34899:12;:16;34912:2;34899:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35072:43;;;;;;;;35087:2;35072:43;;;;;;35098:15;35072:43;;;;;35044:11;:25;35056:12;35044:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35124:20;35147:12;35124:35;;35173:9;35168:281;35192:8;35188:1;:12;35168:281;;;35246:12;35242:2;35221:38;;35238:1;35221:38;;;;;;;;;;;;35286:59;35317:1;35321:2;35325:12;35339:5;35286:22;:59::i;:::-;35268:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;35427:14;;;;;:::i;:::-;;;;35202:3;;;;;:::i;:::-;;;;35168:281;;;;35472:12;35457;:27;;;;35491:60;35520:1;35524:2;35528:12;35542:8;35491:20;:60::i;:::-;34383:1174;;;34285:1272;;;:::o;8712:387::-;8772:4;8980:12;9047:7;9035:20;9027:28;;9090:1;9083:4;:8;9076:15;;;8712:387;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:116::-;1588:21;1603:5;1588:21;:::i;:::-;1581:5;1578:32;1568:60;;1624:1;1621;1614:12;1568:60;1518:116;:::o;1640:133::-;1683:5;1721:6;1708:20;1699:29;;1737:30;1761:5;1737:30;:::i;:::-;1640:133;;;;:::o;1779:323::-;1835:6;1884:2;1872:9;1863:7;1859:23;1855:32;1852:119;;;1890:79;;:::i;:::-;1852:119;2010:1;2035:50;2077:7;2068:6;2057:9;2053:22;2035:50;:::i;:::-;2025:60;;1981:114;1779:323;;;;:::o;2108:99::-;2160:6;2194:5;2188:12;2178:22;;2108:99;;;:::o;2213:169::-;2297:11;2331:6;2326:3;2319:19;2371:4;2366:3;2362:14;2347:29;;2213:169;;;;:::o;2388:307::-;2456:1;2466:113;2480:6;2477:1;2474:13;2466:113;;;2565:1;2560:3;2556:11;2550:18;2546:1;2541:3;2537:11;2530:39;2502:2;2499:1;2495:10;2490:15;;2466:113;;;2597:6;2594:1;2591:13;2588:101;;;2677:1;2668:6;2663:3;2659:16;2652:27;2588:101;2437:258;2388:307;;;:::o;2701:102::-;2742:6;2793:2;2789:7;2784:2;2777:5;2773:14;2769:28;2759:38;;2701:102;;;:::o;2809:364::-;2897:3;2925:39;2958:5;2925:39;:::i;:::-;2980:71;3044:6;3039:3;2980:71;:::i;:::-;2973:78;;3060:52;3105:6;3100:3;3093:4;3086:5;3082:16;3060:52;:::i;:::-;3137:29;3159:6;3137:29;:::i;:::-;3132:3;3128:39;3121:46;;2901:272;2809:364;;;;:::o;3179:313::-;3292:4;3330:2;3319:9;3315:18;3307:26;;3379:9;3373:4;3369:20;3365:1;3354:9;3350:17;3343:47;3407:78;3480:4;3471:6;3407:78;:::i;:::-;3399:86;;3179:313;;;;:::o;3498:77::-;3535:7;3564:5;3553:16;;3498:77;;;:::o;3581:122::-;3654:24;3672:5;3654:24;:::i;:::-;3647:5;3644:35;3634:63;;3693:1;3690;3683:12;3634:63;3581:122;:::o;3709:139::-;3755:5;3793:6;3780:20;3771:29;;3809:33;3836:5;3809:33;:::i;:::-;3709:139;;;;:::o;3854:329::-;3913:6;3962:2;3950:9;3941:7;3937:23;3933:32;3930:119;;;3968:79;;:::i;:::-;3930:119;4088:1;4113:53;4158:7;4149:6;4138:9;4134:22;4113:53;:::i;:::-;4103:63;;4059:117;3854:329;;;;:::o;4189:126::-;4226:7;4266:42;4259:5;4255:54;4244:65;;4189:126;;;:::o;4321:96::-;4358:7;4387:24;4405:5;4387:24;:::i;:::-;4376:35;;4321:96;;;:::o;4423:118::-;4510:24;4528:5;4510:24;:::i;:::-;4505:3;4498:37;4423:118;;:::o;4547:222::-;4640:4;4678:2;4667:9;4663:18;4655:26;;4691:71;4759:1;4748:9;4744:17;4735:6;4691:71;:::i;:::-;4547:222;;;;:::o;4775:122::-;4848:24;4866:5;4848:24;:::i;:::-;4841:5;4838:35;4828:63;;4887:1;4884;4877:12;4828:63;4775:122;:::o;4903:139::-;4949:5;4987:6;4974:20;4965:29;;5003:33;5030:5;5003:33;:::i;:::-;4903:139;;;;:::o;5048:474::-;5116:6;5124;5173:2;5161:9;5152:7;5148:23;5144:32;5141:119;;;5179:79;;:::i;:::-;5141:119;5299:1;5324:53;5369:7;5360:6;5349:9;5345:22;5324:53;:::i;:::-;5314:63;;5270:117;5426:2;5452:53;5497:7;5488:6;5477:9;5473:22;5452:53;:::i;:::-;5442:63;;5397:118;5048:474;;;;;:::o;5528:118::-;5615:24;5633:5;5615:24;:::i;:::-;5610:3;5603:37;5528:118;;:::o;5652:222::-;5745:4;5783:2;5772:9;5768:18;5760:26;;5796:71;5864:1;5853:9;5849:17;5840:6;5796:71;:::i;:::-;5652:222;;;;:::o;5880:619::-;5957:6;5965;5973;6022:2;6010:9;6001:7;5997:23;5993:32;5990:119;;;6028:79;;:::i;:::-;5990:119;6148:1;6173:53;6218:7;6209:6;6198:9;6194:22;6173:53;:::i;:::-;6163:63;;6119:117;6275:2;6301:53;6346:7;6337:6;6326:9;6322:22;6301:53;:::i;:::-;6291:63;;6246:118;6403:2;6429:53;6474:7;6465:6;6454:9;6450:22;6429:53;:::i;:::-;6419:63;;6374:118;5880:619;;;;;:::o;6505:117::-;6614:1;6611;6604:12;6628:117;6737:1;6734;6727:12;6751:117;6860:1;6857;6850:12;6888:553;6946:8;6956:6;7006:3;6999:4;6991:6;6987:17;6983:27;6973:122;;7014:79;;:::i;:::-;6973:122;7127:6;7114:20;7104:30;;7157:18;7149:6;7146:30;7143:117;;;7179:79;;:::i;:::-;7143:117;7293:4;7285:6;7281:17;7269:29;;7347:3;7339:4;7331:6;7327:17;7317:8;7313:32;7310:41;7307:128;;;7354:79;;:::i;:::-;7307:128;6888:553;;;;;:::o;7447:529::-;7518:6;7526;7575:2;7563:9;7554:7;7550:23;7546:32;7543:119;;;7581:79;;:::i;:::-;7543:119;7729:1;7718:9;7714:17;7701:31;7759:18;7751:6;7748:30;7745:117;;;7781:79;;:::i;:::-;7745:117;7894:65;7951:7;7942:6;7931:9;7927:22;7894:65;:::i;:::-;7876:83;;;;7672:297;7447:529;;;;;:::o;7982:474::-;8050:6;8058;8107:2;8095:9;8086:7;8082:23;8078:32;8075:119;;;8113:79;;:::i;:::-;8075:119;8233:1;8258:53;8303:7;8294:6;8283:9;8279:22;8258:53;:::i;:::-;8248:63;;8204:117;8360:2;8386:53;8431:7;8422:6;8411:9;8407:22;8386:53;:::i;:::-;8376:63;;8331:118;7982:474;;;;;:::o;8462:329::-;8521:6;8570:2;8558:9;8549:7;8545:23;8541:32;8538:119;;;8576:79;;:::i;:::-;8538:119;8696:1;8721:53;8766:7;8757:6;8746:9;8742:22;8721:53;:::i;:::-;8711:63;;8667:117;8462:329;;;;:::o;8797:468::-;8862:6;8870;8919:2;8907:9;8898:7;8894:23;8890:32;8887:119;;;8925:79;;:::i;:::-;8887:119;9045:1;9070:53;9115:7;9106:6;9095:9;9091:22;9070:53;:::i;:::-;9060:63;;9016:117;9172:2;9198:50;9240:7;9231:6;9220:9;9216:22;9198:50;:::i;:::-;9188:60;;9143:115;8797:468;;;;;:::o;9271:117::-;9380:1;9377;9370:12;9394:180;9442:77;9439:1;9432:88;9539:4;9536:1;9529:15;9563:4;9560:1;9553:15;9580:281;9663:27;9685:4;9663:27;:::i;:::-;9655:6;9651:40;9793:6;9781:10;9778:22;9757:18;9745:10;9742:34;9739:62;9736:88;;;9804:18;;:::i;:::-;9736:88;9844:10;9840:2;9833:22;9623:238;9580:281;;:::o;9867:129::-;9901:6;9928:20;;:::i;:::-;9918:30;;9957:33;9985:4;9977:6;9957:33;:::i;:::-;9867:129;;;:::o;10002:307::-;10063:4;10153:18;10145:6;10142:30;10139:56;;;10175:18;;:::i;:::-;10139:56;10213:29;10235:6;10213:29;:::i;:::-;10205:37;;10297:4;10291;10287:15;10279:23;;10002:307;;;:::o;10315:154::-;10399:6;10394:3;10389;10376:30;10461:1;10452:6;10447:3;10443:16;10436:27;10315:154;;;:::o;10475:410::-;10552:5;10577:65;10593:48;10634:6;10593:48;:::i;:::-;10577:65;:::i;:::-;10568:74;;10665:6;10658:5;10651:21;10703:4;10696:5;10692:16;10741:3;10732:6;10727:3;10723:16;10720:25;10717:112;;;10748:79;;:::i;:::-;10717:112;10838:41;10872:6;10867:3;10862;10838:41;:::i;:::-;10558:327;10475:410;;;;;:::o;10904:338::-;10959:5;11008:3;11001:4;10993:6;10989:17;10985:27;10975:122;;11016:79;;:::i;:::-;10975:122;11133:6;11120:20;11158:78;11232:3;11224:6;11217:4;11209:6;11205:17;11158:78;:::i;:::-;11149:87;;10965:277;10904:338;;;;:::o;11248:943::-;11343:6;11351;11359;11367;11416:3;11404:9;11395:7;11391:23;11387:33;11384:120;;;11423:79;;:::i;:::-;11384:120;11543:1;11568:53;11613:7;11604:6;11593:9;11589:22;11568:53;:::i;:::-;11558:63;;11514:117;11670:2;11696:53;11741:7;11732:6;11721:9;11717:22;11696:53;:::i;:::-;11686:63;;11641:118;11798:2;11824:53;11869:7;11860:6;11849:9;11845:22;11824:53;:::i;:::-;11814:63;;11769:118;11954:2;11943:9;11939:18;11926:32;11985:18;11977:6;11974:30;11971:117;;;12007:79;;:::i;:::-;11971:117;12112:62;12166:7;12157:6;12146:9;12142:22;12112:62;:::i;:::-;12102:72;;11897:287;11248:943;;;;;;;:::o;12197:474::-;12265:6;12273;12322:2;12310:9;12301:7;12297:23;12293:32;12290:119;;;12328:79;;:::i;:::-;12290:119;12448:1;12473:53;12518:7;12509:6;12498:9;12494:22;12473:53;:::i;:::-;12463:63;;12419:117;12575:2;12601:53;12646:7;12637:6;12626:9;12622:22;12601:53;:::i;:::-;12591:63;;12546:118;12197:474;;;;;:::o;12677:182::-;12817:34;12813:1;12805:6;12801:14;12794:58;12677:182;:::o;12865:366::-;13007:3;13028:67;13092:2;13087:3;13028:67;:::i;:::-;13021:74;;13104:93;13193:3;13104:93;:::i;:::-;13222:2;13217:3;13213:12;13206:19;;12865:366;;;:::o;13237:419::-;13403:4;13441:2;13430:9;13426:18;13418:26;;13490:9;13484:4;13480:20;13476:1;13465:9;13461:17;13454:47;13518:131;13644:4;13518:131;:::i;:::-;13510:139;;13237:419;;;:::o;13662:180::-;13710:77;13707:1;13700:88;13807:4;13804:1;13797:15;13831:4;13828:1;13821:15;13848:320;13892:6;13929:1;13923:4;13919:12;13909:22;;13976:1;13970:4;13966:12;13997:18;13987:81;;14053:4;14045:6;14041:17;14031:27;;13987:81;14115:2;14107:6;14104:14;14084:18;14081:38;14078:84;;14134:18;;:::i;:::-;14078:84;13899:269;13848:320;;;:::o;14174:232::-;14314:34;14310:1;14302:6;14298:14;14291:58;14383:15;14378:2;14370:6;14366:15;14359:40;14174:232;:::o;14412:366::-;14554:3;14575:67;14639:2;14634:3;14575:67;:::i;:::-;14568:74;;14651:93;14740:3;14651:93;:::i;:::-;14769:2;14764:3;14760:12;14753:19;;14412:366;;;:::o;14784:419::-;14950:4;14988:2;14977:9;14973:18;14965:26;;15037:9;15031:4;15027:20;15023:1;15012:9;15008:17;15001:47;15065:131;15191:4;15065:131;:::i;:::-;15057:139;;14784:419;;;:::o;15209:221::-;15349:34;15345:1;15337:6;15333:14;15326:58;15418:4;15413:2;15405:6;15401:15;15394:29;15209:221;:::o;15436:366::-;15578:3;15599:67;15663:2;15658:3;15599:67;:::i;:::-;15592:74;;15675:93;15764:3;15675:93;:::i;:::-;15793:2;15788:3;15784:12;15777:19;;15436:366;;;:::o;15808:419::-;15974:4;16012:2;16001:9;15997:18;15989:26;;16061:9;16055:4;16051:20;16047:1;16036:9;16032:17;16025:47;16089:131;16215:4;16089:131;:::i;:::-;16081:139;;15808:419;;;:::o;16233:244::-;16373:34;16369:1;16361:6;16357:14;16350:58;16442:27;16437:2;16429:6;16425:15;16418:52;16233:244;:::o;16483:366::-;16625:3;16646:67;16710:2;16705:3;16646:67;:::i;:::-;16639:74;;16722:93;16811:3;16722:93;:::i;:::-;16840:2;16835:3;16831:12;16824:19;;16483:366;;;:::o;16855:419::-;17021:4;17059:2;17048:9;17044:18;17036:26;;17108:9;17102:4;17098:20;17094:1;17083:9;17079:17;17072:47;17136:131;17262:4;17136:131;:::i;:::-;17128:139;;16855:419;;;:::o;17280:221::-;17420:34;17416:1;17408:6;17404:14;17397:58;17489:4;17484:2;17476:6;17472:15;17465:29;17280:221;:::o;17507:366::-;17649:3;17670:67;17734:2;17729:3;17670:67;:::i;:::-;17663:74;;17746:93;17835:3;17746:93;:::i;:::-;17864:2;17859:3;17855:12;17848:19;;17507:366;;;:::o;17879:419::-;18045:4;18083:2;18072:9;18068:18;18060:26;;18132:9;18126:4;18122:20;18118:1;18107:9;18103:17;18096:47;18160:131;18286:4;18160:131;:::i;:::-;18152:139;;17879:419;;;:::o;18304:180::-;18352:77;18349:1;18342:88;18449:4;18446:1;18439:15;18473:4;18470:1;18463:15;18490:233;18529:3;18552:24;18570:5;18552:24;:::i;:::-;18543:33;;18598:66;18591:5;18588:77;18585:103;;18668:18;;:::i;:::-;18585:103;18715:1;18708:5;18704:13;18697:20;;18490:233;;;:::o;18729:::-;18869:34;18865:1;18857:6;18853:14;18846:58;18938:16;18933:2;18925:6;18921:15;18914:41;18729:233;:::o;18968:366::-;19110:3;19131:67;19195:2;19190:3;19131:67;:::i;:::-;19124:74;;19207:93;19296:3;19207:93;:::i;:::-;19325:2;19320:3;19316:12;19309:19;;18968:366;;;:::o;19340:419::-;19506:4;19544:2;19533:9;19529:18;19521:26;;19593:9;19587:4;19583:20;19579:1;19568:9;19564:17;19557:47;19621:131;19747:4;19621:131;:::i;:::-;19613:139;;19340:419;;;:::o;19765:222::-;19905:34;19901:1;19893:6;19889:14;19882:58;19974:5;19969:2;19961:6;19957:15;19950:30;19765:222;:::o;19993:366::-;20135:3;20156:67;20220:2;20215:3;20156:67;:::i;:::-;20149:74;;20232:93;20321:3;20232:93;:::i;:::-;20350:2;20345:3;20341:12;20334:19;;19993:366;;;:::o;20365:419::-;20531:4;20569:2;20558:9;20554:18;20546:26;;20618:9;20612:4;20608:20;20604:1;20593:9;20589:17;20582:47;20646:131;20772:4;20646:131;:::i;:::-;20638:139;;20365:419;;;:::o;20790:97::-;20849:6;20877:3;20867:13;;20790:97;;;;:::o;20893:141::-;20942:4;20965:3;20957:11;;20988:3;20985:1;20978:14;21022:4;21019:1;21009:18;21001:26;;20893:141;;;:::o;21040:93::-;21077:6;21124:2;21119;21112:5;21108:14;21104:23;21094:33;;21040:93;;;:::o;21139:107::-;21183:8;21233:5;21227:4;21223:16;21202:37;;21139:107;;;;:::o;21252:393::-;21321:6;21371:1;21359:10;21355:18;21394:97;21424:66;21413:9;21394:97;:::i;:::-;21512:39;21542:8;21531:9;21512:39;:::i;:::-;21500:51;;21584:4;21580:9;21573:5;21569:21;21560:30;;21633:4;21623:8;21619:19;21612:5;21609:30;21599:40;;21328:317;;21252:393;;;;;:::o;21651:60::-;21679:3;21700:5;21693:12;;21651:60;;;:::o;21717:142::-;21767:9;21800:53;21818:34;21827:24;21845:5;21827:24;:::i;:::-;21818:34;:::i;:::-;21800:53;:::i;:::-;21787:66;;21717:142;;;:::o;21865:75::-;21908:3;21929:5;21922:12;;21865:75;;;:::o;21946:269::-;22056:39;22087:7;22056:39;:::i;:::-;22117:91;22166:41;22190:16;22166:41;:::i;:::-;22158:6;22151:4;22145:11;22117:91;:::i;:::-;22111:4;22104:105;22022:193;21946:269;;;:::o;22221:73::-;22266:3;22221:73;:::o;22300:189::-;22377:32;;:::i;:::-;22418:65;22476:6;22468;22462:4;22418:65;:::i;:::-;22353:136;22300:189;;:::o;22495:186::-;22555:120;22572:3;22565:5;22562:14;22555:120;;;22626:39;22663:1;22656:5;22626:39;:::i;:::-;22599:1;22592:5;22588:13;22579:22;;22555:120;;;22495:186;;:::o;22687:543::-;22788:2;22783:3;22780:11;22777:446;;;22822:38;22854:5;22822:38;:::i;:::-;22906:29;22924:10;22906:29;:::i;:::-;22896:8;22892:44;23089:2;23077:10;23074:18;23071:49;;;23110:8;23095:23;;23071:49;23133:80;23189:22;23207:3;23189:22;:::i;:::-;23179:8;23175:37;23162:11;23133:80;:::i;:::-;22792:431;;22777:446;22687:543;;;:::o;23236:117::-;23290:8;23340:5;23334:4;23330:16;23309:37;;23236:117;;;;:::o;23359:169::-;23403:6;23436:51;23484:1;23480:6;23472:5;23469:1;23465:13;23436:51;:::i;:::-;23432:56;23517:4;23511;23507:15;23497:25;;23410:118;23359:169;;;;:::o;23533:295::-;23609:4;23755:29;23780:3;23774:4;23755:29;:::i;:::-;23747:37;;23817:3;23814:1;23810:11;23804:4;23801:21;23793:29;;23533:295;;;;:::o;23833:1403::-;23957:44;23997:3;23992;23957:44;:::i;:::-;24066:18;24058:6;24055:30;24052:56;;;24088:18;;:::i;:::-;24052:56;24132:38;24164:4;24158:11;24132:38;:::i;:::-;24217:67;24277:6;24269;24263:4;24217:67;:::i;:::-;24311:1;24340:2;24332:6;24329:14;24357:1;24352:632;;;;25028:1;25045:6;25042:84;;;25101:9;25096:3;25092:19;25079:33;25070:42;;25042:84;25152:67;25212:6;25205:5;25152:67;:::i;:::-;25146:4;25139:81;25001:229;24322:908;;24352:632;24404:4;24400:9;24392:6;24388:22;24438:37;24470:4;24438:37;:::i;:::-;24497:1;24511:215;24525:7;24522:1;24519:14;24511:215;;;24611:9;24606:3;24602:19;24589:33;24581:6;24574:49;24662:1;24654:6;24650:14;24640:24;;24709:2;24698:9;24694:18;24681:31;;24548:4;24545:1;24541:12;24536:17;;24511:215;;;24754:6;24745:7;24742:19;24739:186;;;24819:9;24814:3;24810:19;24797:33;24862:48;24904:4;24896:6;24892:17;24881:9;24862:48;:::i;:::-;24854:6;24847:64;24762:163;24739:186;24971:1;24967;24959:6;24955:14;24951:22;24945:4;24938:36;24359:625;;;24322:908;;23932:1304;;;23833:1403;;;:::o;25242:230::-;25382:34;25378:1;25370:6;25366:14;25359:58;25451:13;25446:2;25438:6;25434:15;25427:38;25242:230;:::o;25478:366::-;25620:3;25641:67;25705:2;25700:3;25641:67;:::i;:::-;25634:74;;25717:93;25806:3;25717:93;:::i;:::-;25835:2;25830:3;25826:12;25819:19;;25478:366;;;:::o;25850:419::-;26016:4;26054:2;26043:9;26039:18;26031:26;;26103:9;26097:4;26093:20;26089:1;26078:9;26074:17;26067:47;26131:131;26257:4;26131:131;:::i;:::-;26123:139;;25850:419;;;:::o;26275:181::-;26415:33;26411:1;26403:6;26399:14;26392:57;26275:181;:::o;26462:366::-;26604:3;26625:67;26689:2;26684:3;26625:67;:::i;:::-;26618:74;;26701:93;26790:3;26701:93;:::i;:::-;26819:2;26814:3;26810:12;26803:19;;26462:366;;;:::o;26834:419::-;27000:4;27038:2;27027:9;27023:18;27015:26;;27087:9;27081:4;27077:20;27073:1;27062:9;27058:17;27051:47;27115:131;27241:4;27115:131;:::i;:::-;27107:139;;26834:419;;;:::o;27259:163::-;27399:15;27395:1;27387:6;27383:14;27376:39;27259:163;:::o;27428:366::-;27570:3;27591:67;27655:2;27650:3;27591:67;:::i;:::-;27584:74;;27667:93;27756:3;27667:93;:::i;:::-;27785:2;27780:3;27776:12;27769:19;;27428:366;;;:::o;27800:419::-;27966:4;28004:2;27993:9;27989:18;27981:26;;28053:9;28047:4;28043:20;28039:1;28028:9;28024:17;28017:47;28081:131;28207:4;28081:131;:::i;:::-;28073:139;;27800:419;;;:::o;28225:168::-;28365:20;28361:1;28353:6;28349:14;28342:44;28225:168;:::o;28399:366::-;28541:3;28562:67;28626:2;28621:3;28562:67;:::i;:::-;28555:74;;28638:93;28727:3;28638:93;:::i;:::-;28756:2;28751:3;28747:12;28740:19;;28399:366;;;:::o;28771:419::-;28937:4;28975:2;28964:9;28960:18;28952:26;;29024:9;29018:4;29014:20;29010:1;28999:9;28995:17;28988:47;29052:131;29178:4;29052:131;:::i;:::-;29044:139;;28771:419;;;:::o;29196:171::-;29336:23;29332:1;29324:6;29320:14;29313:47;29196:171;:::o;29373:366::-;29515:3;29536:67;29600:2;29595:3;29536:67;:::i;:::-;29529:74;;29612:93;29701:3;29612:93;:::i;:::-;29730:2;29725:3;29721:12;29714:19;;29373:366;;;:::o;29745:419::-;29911:4;29949:2;29938:9;29934:18;29926:26;;29998:9;29992:4;29988:20;29984:1;29973:9;29969:17;29962:47;30026:131;30152:4;30026:131;:::i;:::-;30018:139;;29745:419;;;:::o;30170:305::-;30210:3;30229:20;30247:1;30229:20;:::i;:::-;30224:25;;30263:20;30281:1;30263:20;:::i;:::-;30258:25;;30417:1;30349:66;30345:74;30342:1;30339:81;30336:107;;;30423:18;;:::i;:::-;30336:107;30467:1;30464;30460:9;30453:16;;30170:305;;;;:::o;30481:168::-;30621:20;30617:1;30609:6;30605:14;30598:44;30481:168;:::o;30655:366::-;30797:3;30818:67;30882:2;30877:3;30818:67;:::i;:::-;30811:74;;30894:93;30983:3;30894:93;:::i;:::-;31012:2;31007:3;31003:12;30996:19;;30655:366;;;:::o;31027:419::-;31193:4;31231:2;31220:9;31216:18;31208:26;;31280:9;31274:4;31270:20;31266:1;31255:9;31251:17;31244:47;31308:131;31434:4;31308:131;:::i;:::-;31300:139;;31027:419;;;:::o;31452:348::-;31492:7;31515:20;31533:1;31515:20;:::i;:::-;31510:25;;31549:20;31567:1;31549:20;:::i;:::-;31544:25;;31737:1;31669:66;31665:74;31662:1;31659:81;31654:1;31647:9;31640:17;31636:105;31633:131;;;31744:18;;:::i;:::-;31633:131;31792:1;31789;31785:9;31774:20;;31452:348;;;;:::o;31806:172::-;31946:24;31942:1;31934:6;31930:14;31923:48;31806:172;:::o;31984:366::-;32126:3;32147:67;32211:2;32206:3;32147:67;:::i;:::-;32140:74;;32223:93;32312:3;32223:93;:::i;:::-;32341:2;32336:3;32332:12;32325:19;;31984:366;;;:::o;32356:419::-;32522:4;32560:2;32549:9;32545:18;32537:26;;32609:9;32603:4;32599:20;32595:1;32584:9;32580:17;32573:47;32637:131;32763:4;32637:131;:::i;:::-;32629:139;;32356:419;;;:::o;32781:176::-;32921:28;32917:1;32909:6;32905:14;32898:52;32781:176;:::o;32963:366::-;33105:3;33126:67;33190:2;33185:3;33126:67;:::i;:::-;33119:74;;33202:93;33291:3;33202:93;:::i;:::-;33320:2;33315:3;33311:12;33304:19;;32963:366;;;:::o;33335:419::-;33501:4;33539:2;33528:9;33524:18;33516:26;;33588:9;33582:4;33578:20;33574:1;33563:9;33559:17;33552:47;33616:131;33742:4;33616:131;:::i;:::-;33608:139;;33335:419;;;:::o;33760:238::-;33900:34;33896:1;33888:6;33884:14;33877:58;33969:21;33964:2;33956:6;33952:15;33945:46;33760:238;:::o;34004:366::-;34146:3;34167:67;34231:2;34226:3;34167:67;:::i;:::-;34160:74;;34243:93;34332:3;34243:93;:::i;:::-;34361:2;34356:3;34352:12;34345:19;;34004:366;;;:::o;34376:419::-;34542:4;34580:2;34569:9;34565:18;34557:26;;34629:9;34623:4;34619:20;34615:1;34604:9;34600:17;34593:47;34657:131;34783:4;34657:131;:::i;:::-;34649:139;;34376:419;;;:::o;34801:234::-;34941:34;34937:1;34929:6;34925:14;34918:58;35010:17;35005:2;34997:6;34993:15;34986:42;34801:234;:::o;35041:366::-;35183:3;35204:67;35268:2;35263:3;35204:67;:::i;:::-;35197:74;;35280:93;35369:3;35280:93;:::i;:::-;35398:2;35393:3;35389:12;35382:19;;35041:366;;;:::o;35413:419::-;35579:4;35617:2;35606:9;35602:18;35594:26;;35666:9;35660:4;35656:20;35652:1;35641:9;35637:17;35630:47;35694:131;35820:4;35694:131;:::i;:::-;35686:139;;35413:419;;;:::o;35838:148::-;35940:11;35977:3;35962:18;;35838:148;;;;:::o;35992:377::-;36098:3;36126:39;36159:5;36126:39;:::i;:::-;36181:89;36263:6;36258:3;36181:89;:::i;:::-;36174:96;;36279:52;36324:6;36319:3;36312:4;36305:5;36301:16;36279:52;:::i;:::-;36356:6;36351:3;36347:16;36340:23;;36102:267;35992:377;;;;:::o;36375:435::-;36555:3;36577:95;36668:3;36659:6;36577:95;:::i;:::-;36570:102;;36689:95;36780:3;36771:6;36689:95;:::i;:::-;36682:102;;36801:3;36794:10;;36375:435;;;;;:::o;36816:225::-;36956:34;36952:1;36944:6;36940:14;36933:58;37025:8;37020:2;37012:6;37008:15;37001:33;36816:225;:::o;37047:366::-;37189:3;37210:67;37274:2;37269:3;37210:67;:::i;:::-;37203:74;;37286:93;37375:3;37286:93;:::i;:::-;37404:2;37399:3;37395:12;37388:19;;37047:366;;;:::o;37419:419::-;37585:4;37623:2;37612:9;37608:18;37600:26;;37672:9;37666:4;37662:20;37658:1;37647:9;37643:17;37636:47;37700:131;37826:4;37700:131;:::i;:::-;37692:139;;37419:419;;;:::o;37844:237::-;37984:34;37980:1;37972:6;37968:14;37961:58;38053:20;38048:2;38040:6;38036:15;38029:45;37844:237;:::o;38087:366::-;38229:3;38250:67;38314:2;38309:3;38250:67;:::i;:::-;38243:74;;38326:93;38415:3;38326:93;:::i;:::-;38444:2;38439:3;38435:12;38428:19;;38087:366;;;:::o;38459:419::-;38625:4;38663:2;38652:9;38648:18;38640:26;;38712:9;38706:4;38702:20;38698:1;38687:9;38683:17;38676:47;38740:131;38866:4;38740:131;:::i;:::-;38732:139;;38459:419;;;:::o;38884:225::-;39024:34;39020:1;39012:6;39008:14;39001:58;39093:8;39088:2;39080:6;39076:15;39069:33;38884:225;:::o;39115:366::-;39257:3;39278:67;39342:2;39337:3;39278:67;:::i;:::-;39271:74;;39354:93;39443:3;39354:93;:::i;:::-;39472:2;39467:3;39463:12;39456:19;;39115:366;;;:::o;39487:419::-;39653:4;39691:2;39680:9;39676:18;39668:26;;39740:9;39734:4;39730:20;39726:1;39715:9;39711:17;39704:47;39768:131;39894:4;39768:131;:::i;:::-;39760:139;;39487:419;;;:::o;39912:224::-;40052:34;40048:1;40040:6;40036:14;40029:58;40121:7;40116:2;40108:6;40104:15;40097:32;39912:224;:::o;40142:366::-;40284:3;40305:67;40369:2;40364:3;40305:67;:::i;:::-;40298:74;;40381:93;40470:3;40381:93;:::i;:::-;40499:2;40494:3;40490:12;40483:19;;40142:366;;;:::o;40514:419::-;40680:4;40718:2;40707:9;40703:18;40695:26;;40767:9;40761:4;40757:20;40753:1;40742:9;40738:17;40731:47;40795:131;40921:4;40795:131;:::i;:::-;40787:139;;40514:419;;;:::o;40939:118::-;40976:7;41016:34;41009:5;41005:46;40994:57;;40939:118;;;:::o;41063:191::-;41103:4;41123:20;41141:1;41123:20;:::i;:::-;41118:25;;41157:20;41175:1;41157:20;:::i;:::-;41152:25;;41196:1;41193;41190:8;41187:34;;;41201:18;;:::i;:::-;41187:34;41246:1;41243;41239:9;41231:17;;41063:191;;;;:::o;41260:273::-;41300:3;41319:20;41337:1;41319:20;:::i;:::-;41314:25;;41353:20;41371:1;41353:20;:::i;:::-;41348:25;;41475:1;41439:34;41435:42;41432:1;41429:49;41426:75;;;41481:18;;:::i;:::-;41426:75;41525:1;41522;41518:9;41511:16;;41260:273;;;;:::o;41539:229::-;41679:34;41675:1;41667:6;41663:14;41656:58;41748:12;41743:2;41735:6;41731:15;41724:37;41539:229;:::o;41774:366::-;41916:3;41937:67;42001:2;41996:3;41937:67;:::i;:::-;41930:74;;42013:93;42102:3;42013:93;:::i;:::-;42131:2;42126:3;42122:12;42115:19;;41774:366;;;:::o;42146:419::-;42312:4;42350:2;42339:9;42335:18;42327:26;;42399:9;42393:4;42389:20;42385:1;42374:9;42370:17;42363:47;42427:131;42553:4;42427:131;:::i;:::-;42419:139;;42146:419;;;:::o;42571:191::-;42611:4;42631:20;42649:1;42631:20;:::i;:::-;42626:25;;42665:20;42683:1;42665:20;:::i;:::-;42660:25;;42704:1;42701;42698:8;42695:34;;;42709:18;;:::i;:::-;42695:34;42754:1;42751;42747:9;42739:17;;42571:191;;;;:::o;42768:171::-;42807:3;42830:24;42848:5;42830:24;:::i;:::-;42821:33;;42876:4;42869:5;42866:15;42863:41;;42884:18;;:::i;:::-;42863:41;42931:1;42924:5;42920:13;42913:20;;42768:171;;;:::o;42945:234::-;43085:34;43081:1;43073:6;43069:14;43062:58;43154:17;43149:2;43141:6;43137:15;43130:42;42945:234;:::o;43185:366::-;43327:3;43348:67;43412:2;43407:3;43348:67;:::i;:::-;43341:74;;43424:93;43513:3;43424:93;:::i;:::-;43542:2;43537:3;43533:12;43526:19;;43185:366;;;:::o;43557:419::-;43723:4;43761:2;43750:9;43746:18;43738:26;;43810:9;43804:4;43800:20;43796:1;43785:9;43781:17;43774:47;43838:131;43964:4;43838:131;:::i;:::-;43830:139;;43557:419;;;:::o;43982:98::-;44033:6;44067:5;44061:12;44051:22;;43982:98;;;:::o;44086:168::-;44169:11;44203:6;44198:3;44191:19;44243:4;44238:3;44234:14;44219:29;;44086:168;;;;:::o;44260:360::-;44346:3;44374:38;44406:5;44374:38;:::i;:::-;44428:70;44491:6;44486:3;44428:70;:::i;:::-;44421:77;;44507:52;44552:6;44547:3;44540:4;44533:5;44529:16;44507:52;:::i;:::-;44584:29;44606:6;44584:29;:::i;:::-;44579:3;44575:39;44568:46;;44350:270;44260:360;;;;:::o;44626:640::-;44821:4;44859:3;44848:9;44844:19;44836:27;;44873:71;44941:1;44930:9;44926:17;44917:6;44873:71;:::i;:::-;44954:72;45022:2;45011:9;45007:18;44998:6;44954:72;:::i;:::-;45036;45104:2;45093:9;45089:18;45080:6;45036:72;:::i;:::-;45155:9;45149:4;45145:20;45140:2;45129:9;45125:18;45118:48;45183:76;45254:4;45245:6;45183:76;:::i;:::-;45175:84;;44626:640;;;;;;;:::o;45272:141::-;45328:5;45359:6;45353:13;45344:22;;45375:32;45401:5;45375:32;:::i;:::-;45272:141;;;;:::o;45419:349::-;45488:6;45537:2;45525:9;45516:7;45512:23;45508:32;45505:119;;;45543:79;;:::i;:::-;45505:119;45663:1;45688:63;45743:7;45734:6;45723:9;45719:22;45688:63;:::i;:::-;45678:73;;45634:127;45419:349;;;;:::o;45774:180::-;45822:77;45819:1;45812:88;45919:4;45916:1;45909:15;45943:4;45940:1;45933:15;45960:185;46000:1;46017:20;46035:1;46017:20;:::i;:::-;46012:25;;46051:20;46069:1;46051:20;:::i;:::-;46046:25;;46090:1;46080:35;;46095:18;;:::i;:::-;46080:35;46137:1;46134;46130:9;46125:14;;45960:185;;;;:::o;46151:176::-;46183:1;46200:20;46218:1;46200:20;:::i;:::-;46195:25;;46234:20;46252:1;46234:20;:::i;:::-;46229:25;;46273:1;46263:35;;46278:18;;:::i;:::-;46263:35;46319:1;46316;46312:9;46307:14;;46151:176;;;;:::o;46333:180::-;46381:77;46378:1;46371:88;46478:4;46475:1;46468:15;46502:4;46499:1;46492:15;46519:220;46659:34;46655:1;46647:6;46643:14;46636:58;46728:3;46723:2;46715:6;46711:15;46704:28;46519:220;:::o;46745:366::-;46887:3;46908:67;46972:2;46967:3;46908:67;:::i;:::-;46901:74;;46984:93;47073:3;46984:93;:::i;:::-;47102:2;47097:3;47093:12;47086:19;;46745:366;;;:::o;47117:419::-;47283:4;47321:2;47310:9;47306:18;47298:26;;47370:9;47364:4;47360:20;47356:1;47345:9;47341:17;47334:47;47398:131;47524:4;47398:131;:::i;:::-;47390:139;;47117:419;;;:::o;47542:179::-;47682:31;47678:1;47670:6;47666:14;47659:55;47542:179;:::o;47727:366::-;47869:3;47890:67;47954:2;47949:3;47890:67;:::i;:::-;47883:74;;47966:93;48055:3;47966:93;:::i;:::-;48084:2;48079:3;48075:12;48068:19;;47727:366;;;:::o;48099:419::-;48265:4;48303:2;48292:9;48288:18;48280:26;;48352:9;48346:4;48342:20;48338:1;48327:9;48323:17;48316:47;48380:131;48506:4;48380:131;:::i;:::-;48372:139;;48099:419;;;:::o;48524:221::-;48664:34;48660:1;48652:6;48648:14;48641:58;48733:4;48728:2;48720:6;48716:15;48709:29;48524:221;:::o;48751:366::-;48893:3;48914:67;48978:2;48973:3;48914:67;:::i;:::-;48907:74;;48990:93;49079:3;48990:93;:::i;:::-;49108:2;49103:3;49099:12;49092:19;;48751:366;;;:::o;49123:419::-;49289:4;49327:2;49316:9;49312:18;49304:26;;49376:9;49370:4;49366:20;49362:1;49351:9;49347:17;49340:47;49404:131;49530:4;49404:131;:::i;:::-;49396:139;;49123:419;;;:::o
Swarm Source
ipfs://1211602ab4a75d6a5b349150d622f92b93fc468eb38da3fcc753636419c7e922
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.