Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
256 CAMO
Holders
137
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
14 CAMOLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CAMOsplinters
Compiler Version
v0.8.5+commit.a4f2e591
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-09-08 */ /** *Submitted for verification at Etherscan.io on 2021-08-23 */ // Sources flattened with hardhat v2.4.3 https://hardhat.org // File @openzeppelin/contracts/utils/[email protected] // SPDX-License-Identifier: MIT 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/[email protected] 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/math/[email protected] pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File @openzeppelin/contracts/utils/introspection/[email protected] 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/token/ERC721/[email protected] 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/[email protected] 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/token/ERC721/extensions/[email protected] pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File @openzeppelin/contracts/utils/[email protected] 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/utils/[email protected] 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/introspection/[email protected] 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/[email protected] pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require( owner != address(0), "ERC721: balance query for the zero address" ); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require( owner != address(0), "ERC721: owner query for nonexistent token" ); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require( _exists(tokenId), "ERC721: approved query for nonexistent token" ); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved" ); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved" ); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require( _exists(tokenId), "ERC721: operator query for nonexistent token" ); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require( ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own" ); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received( _msgSender(), from, tokenId, _data ) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert( "ERC721: transfer to non ERC721Receiver implementer" ); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File @openzeppelin/contracts/security/[email protected] pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] pragma solidity ^0.8.0; /** * @dev ERC721 token with pausable token transfers, minting and burning. * * Useful for scenarios such as preventing trades until the end of an evaluation * period, or having an emergency switch for freezing all token transfers in the * event of a large bug. */ abstract contract ERC721Pausable is ERC721, Pausable { /** * @dev See {ERC721-_beforeTokenTransfer}. * * Requirements: * * - the contract must not be paused. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); require(!paused(), "ERC721Pausable: token transfer while paused"); } } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] 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/[email protected] pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require( index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds" ); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require( index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds" ); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File @openzeppelin/contracts/utils/introspection/[email protected] pragma solidity ^0.8.0; /** * @dev Storage based implementation of the {IERC165} interface. * * Contracts may inherit from this and call {_registerInterface} to declare * their support of an interface. */ abstract contract ERC165Storage is ERC165 { /** * @dev Mapping of interface ids to whether or not it's supported. */ mapping(bytes4 => bool) private _supportedInterfaces; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return super.supportsInterface(interfaceId) || _supportedInterfaces[interfaceId]; } /** * @dev Registers the contract as an implementer of the interface defined by * `interfaceId`. Support of the actual ERC165 interface is automatic and * registering its interface id is not required. * * See {IERC165-supportsInterface}. * * Requirements: * * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`). */ function _registerInterface(bytes4 interfaceId) internal virtual { require(interfaceId != 0xffffffff, "ERC165: invalid interface id"); _supportedInterfaces[interfaceId] = true; } } // File @openzeppelin/contracts/security/[email protected] 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 make 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; } } // ODDBALL // CREATED BY @GERAINTTAYLOR pragma solidity ^0.8.5; pragma experimental ABIEncoderV2; interface NInterface { function ownerOf(uint256 tokenId) external view returns (address owner); } contract CAMOsplinters is Ownable, ERC721Enumerable, ReentrancyGuard { using SafeMath for uint256; using Address for address; address public nAddress = 0x05a46f1E545526FB803FF974C790aCeA34D1f2D6; NInterface nContract = NInterface(nAddress); bool public presaleActive = false; bool public publicSaleActive = false; bool public burnt = false; uint256 public presalePrice = 0.015 ether; uint256 public publicPrice = 0.015 ether; string public baseTokenURI; address public team1Address = 0x8633C9ccBBD3c0B8a8912bDf9db78b9dCcB28d1a; address public team2Address = 0xe16087BeA4471B7a3ea01f1c084b04D19Ada7892; uint256 public constant TEAM_1_SELL_PERCENT = 20; uint256 public constant TEAM_2_SELL_PERCENT = 5; event licenseisLocked(string _licenseText); constructor() ERC721('CAMOsplinters', 'CAMO') { } // Override so the openzeppelin tokenURI() method will use this method to create the full tokenURI instead function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } // See which address owns which tokens function tokensOfOwner(address _ownerAddress) public view returns (uint256[] memory) { uint256 tokenCount = balanceOf(_ownerAddress); uint256[] memory tokenIds = new uint256[](tokenCount); for (uint256 i; i < tokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_ownerAddress, i); } return tokenIds; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token'); return super.tokenURI(tokenId); } // Exclusive presale minting with N function mintWithN(uint256 _nId) public payable nonReentrant { require(presaleActive, 'Presale not started'); require(msg.value == presalePrice, 'Wrong amount of ETH sent'); require(nContract.ownerOf(_nId) == msg.sender, 'Not the owner of this N'); require(!burnt, 'Contract burnt. No minting can happen'); _safeMint(msg.sender, _nId); sendTeamValue(); } // Standard mint function function mint(uint256 _nId) public payable { require(publicSaleActive, 'Public sale not started'); require(msg.value == publicPrice, 'Ether value sent is not correct'); require(_nId > 0 && _nId <= 8888, 'Token ID invalid'); require(!burnt, 'Contract burnt. No minting can happen'); _safeMint(msg.sender, _nId); sendTeamValue(); } function flipPreSaleState() public onlyOwner { presaleActive = !presaleActive; } function flipPublicSaleState() public onlyOwner { publicSaleActive = !publicSaleActive; } function burn()public onlyOwner { // WARNING ONCE DONE THIS WILL BLOCK THE CONTRACT FOREVER burnt = true; } // Set new baseURI function setBaseURI(string memory _newBaseURI) public onlyOwner { baseTokenURI = _newBaseURI; } function withdraw() public onlyOwner { sendValueTo(msg.sender, address(this).balance); } function sendTeamValue() internal { uint256 value = msg.value; sendValueTo(team1Address,(value * TEAM_1_SELL_PERCENT) / 100); sendValueTo(team2Address, (value * TEAM_2_SELL_PERCENT) / 100); } function sendValueTo(address to_, uint256 value) internal { address payable to = payable(to_); (bool success, ) = to.call{value: value}(""); require(success, "Transfer failed."); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_licenseText","type":"string"}],"name":"licenseisLocked","type":"event"},{"inputs":[],"name":"TEAM_1_SELL_PERCENT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TEAM_2_SELL_PERCENT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPreSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPublicSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"_nId","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nId","type":"uint256"}],"name":"mintWithN","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"nAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleActive","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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"team1Address","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"team2Address","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_ownerAddress","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040527305a46f1e545526fb803ff974c790acea34d1f2d6600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600d60146101000a81548160ff0219169083151502179055506000600d60156101000a81548160ff0219169083151502179055506000600d60166101000a81548160ff02191690831515021790555066354a6ba7a18000600e5566354a6ba7a18000600f55738633c9ccbbd3c0b8a8912bdf9db78b9dccb28d1a601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073e16087bea4471b7a3ea01f1c084b04d19ada7892601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620001da57600080fd5b506040518060400160405280600d81526020017f43414d4f73706c696e74657273000000000000000000000000000000000000008152506040518060400160405280600481526020017f43414d4f00000000000000000000000000000000000000000000000000000000815250620002676200025b620002a960201b60201c565b620002b160201b60201c565b81600190805190602001906200027f92919062000375565b5080600290805190602001906200029892919062000375565b5050506001600b819055506200048a565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620003839062000425565b90600052602060002090601f016020900481019282620003a75760008555620003f3565b82601f10620003c257805160ff1916838001178555620003f3565b82800160010185558215620003f3579182015b82811115620003f2578251825591602001919060010190620003d5565b5b50905062000402919062000406565b5090565b5b808211156200042157600081600090555060010162000407565b5090565b600060028204905060018216806200043e57607f821691505b602082108114156200045557620004546200045b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614951806200049a6000396000f3fe6080604052600436106102245760003560e01c8063715018a611610123578063b192da2d116100ab578063d333232c1161006f578063d333232c146107ca578063d547cfb7146107f5578063e985e9c514610820578063f03255491461085d578063f2fde38b1461087457610224565b8063b192da2d146106e3578063b405522d1461070e578063b88d4fde14610739578063bc8893b414610762578063c87b56dd1461078d57610224565b8063973ea9d5116100f2578063973ea9d514610631578063a0712d681461065c578063a10866ef14610678578063a22cb4651461068f578063a945bf80146106b857610224565b8063715018a6146105875780638462151c1461059e5780638da5cb5b146105db57806395d89b411461060657610224565b80632f745c59116101b15780634f6ccce7116101755780634f6ccce71461047c57806353135ca0146104b957806355f804b3146104e45780636352211e1461050d57806370a082311461054a57610224565b80632f745c59146103bd5780633ccfd60b146103fa57806342842e0e1461041157806344df8e701461043a5780634811c0701461045157610224565b80630860b12c116101f85780630860b12c146102f9578063095ea7b31461031557806318160ddd1461033e5780631c0a258e1461036957806323b872dd1461039457610224565b80620e7fa81461022957806301ffc9a71461025457806306fdde0314610291578063081812fc146102bc575b600080fd5b34801561023557600080fd5b5061023e61089d565b60405161024b9190613d1f565b60405180910390f35b34801561026057600080fd5b5061027b600480360381019061027691906132c7565b6108a3565b6040516102889190613982565b60405180910390f35b34801561029d57600080fd5b506102a661091d565b6040516102b3919061399d565b60405180910390f35b3480156102c857600080fd5b506102e360048036038101906102de919061336a565b6109af565b6040516102f091906138f9565b60405180910390f35b610313600480360381019061030e919061336a565b610a34565b005b34801561032157600080fd5b5061033c60048036038101906103379190613287565b610c9a565b005b34801561034a57600080fd5b50610353610db2565b6040516103609190613d1f565b60405180910390f35b34801561037557600080fd5b5061037e610dbf565b60405161038b9190613d1f565b60405180910390f35b3480156103a057600080fd5b506103bb60048036038101906103b69190613171565b610dc4565b005b3480156103c957600080fd5b506103e460048036038101906103df9190613287565b610e24565b6040516103f19190613d1f565b60405180910390f35b34801561040657600080fd5b5061040f610ec9565b005b34801561041d57600080fd5b5061043860048036038101906104339190613171565b610f51565b005b34801561044657600080fd5b5061044f610f71565b005b34801561045d57600080fd5b5061046661100a565b60405161047391906138f9565b60405180910390f35b34801561048857600080fd5b506104a3600480360381019061049e919061336a565b611030565b6040516104b09190613d1f565b60405180910390f35b3480156104c557600080fd5b506104ce6110a1565b6040516104db9190613982565b60405180910390f35b3480156104f057600080fd5b5061050b60048036038101906105069190613321565b6110b4565b005b34801561051957600080fd5b50610534600480360381019061052f919061336a565b61114a565b60405161054191906138f9565b60405180910390f35b34801561055657600080fd5b50610571600480360381019061056c91906130d7565b6111fc565b60405161057e9190613d1f565b60405180910390f35b34801561059357600080fd5b5061059c6112b4565b005b3480156105aa57600080fd5b506105c560048036038101906105c091906130d7565b61133c565b6040516105d29190613960565b60405180910390f35b3480156105e757600080fd5b506105f06113ea565b6040516105fd91906138f9565b60405180910390f35b34801561061257600080fd5b5061061b611413565b604051610628919061399d565b60405180910390f35b34801561063d57600080fd5b506106466114a5565b60405161065391906138f9565b60405180910390f35b6106766004803603810190610671919061336a565b6114cb565b005b34801561068457600080fd5b5061068d611614565b005b34801561069b57600080fd5b506106b660048036038101906106b19190613247565b6116bc565b005b3480156106c457600080fd5b506106cd61183d565b6040516106da9190613d1f565b60405180910390f35b3480156106ef57600080fd5b506106f8611843565b6040516107059190613982565b60405180910390f35b34801561071a57600080fd5b50610723611856565b6040516107309190613d1f565b60405180910390f35b34801561074557600080fd5b50610760600480360381019061075b91906131c4565b61185b565b005b34801561076e57600080fd5b506107776118bd565b6040516107849190613982565b60405180910390f35b34801561079957600080fd5b506107b460048036038101906107af919061336a565b6118d0565b6040516107c1919061399d565b60405180910390f35b3480156107d657600080fd5b506107df61192a565b6040516107ec91906138f9565b60405180910390f35b34801561080157600080fd5b5061080a611950565b604051610817919061399d565b60405180910390f35b34801561082c57600080fd5b5061084760048036038101906108429190613131565b6119de565b6040516108549190613982565b60405180910390f35b34801561086957600080fd5b50610872611a72565b005b34801561088057600080fd5b5061089b600480360381019061089691906130d7565b611b1a565b005b600e5481565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610916575061091582611c12565b5b9050919050565b60606001805461092c90614013565b80601f016020809104026020016040519081016040528092919081815260200182805461095890614013565b80156109a55780601f1061097a576101008083540402835291602001916109a5565b820191906000526020600020905b81548152906001019060200180831161098857829003601f168201915b5050505050905090565b60006109ba82611cf4565b6109f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f090613b9f565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6002600b541415610a7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7190613cdf565b60405180910390fd5b6002600b81905550600d60149054906101000a900460ff16610ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac890613b5f565b60405180910390fd5b600e543414610b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0c90613cff565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b8152600401610b879190613d1f565b60206040518083038186803b158015610b9f57600080fd5b505afa158015610bb3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bd79190613104565b73ffffffffffffffffffffffffffffffffffffffff1614610c2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2490613adf565b60405180910390fd5b600d60169054906101000a900460ff1615610c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7490613c5f565b60405180910390fd5b610c873382611d60565b610c8f611d7e565b6001600b8190555050565b6000610ca58261114a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0d90613c3f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d35611e0e565b73ffffffffffffffffffffffffffffffffffffffff161480610d645750610d6381610d5e611e0e565b6119de565b5b610da3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9a90613aff565b60405180910390fd5b610dad8383611e16565b505050565b6000600980549050905090565b600581565b610dd5610dcf611e0e565b82611ecf565b610e14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0b90613c9f565b60405180910390fd5b610e1f838383611fad565b505050565b6000610e2f836111fc565b8210610e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e67906139bf565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610ed1611e0e565b73ffffffffffffffffffffffffffffffffffffffff16610eef6113ea565b73ffffffffffffffffffffffffffffffffffffffff1614610f45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3c90613bbf565b60405180910390fd5b610f4f3347612209565b565b610f6c8383836040518060200160405280600081525061185b565b505050565b610f79611e0e565b73ffffffffffffffffffffffffffffffffffffffff16610f976113ea565b73ffffffffffffffffffffffffffffffffffffffff1614610fed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe490613bbf565b60405180910390fd5b6001600d60166101000a81548160ff021916908315150217905550565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061103a610db2565b821061107b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107290613cbf565b60405180910390fd5b6009828154811061108f5761108e6141ac565b5b90600052602060002001549050919050565b600d60149054906101000a900460ff1681565b6110bc611e0e565b73ffffffffffffffffffffffffffffffffffffffff166110da6113ea565b73ffffffffffffffffffffffffffffffffffffffff1614611130576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112790613bbf565b60405180910390fd5b8060109080519060200190611146929190612ed6565b5050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ea90613b3f565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561126d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126490613b1f565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112bc611e0e565b73ffffffffffffffffffffffffffffffffffffffff166112da6113ea565b73ffffffffffffffffffffffffffffffffffffffff1614611330576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132790613bbf565b60405180910390fd5b61133a60006122c0565b565b60606000611349836111fc565b905060008167ffffffffffffffff811115611367576113666141db565b5b6040519080825280602002602001820160405280156113955781602001602082028036833780820191505090505b50905060005b828110156113df576113ad8582610e24565b8282815181106113c0576113bf6141ac565b5b60200260200101818152505080806113d790614076565b91505061139b565b508092505050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461142290614013565b80601f016020809104026020016040519081016040528092919081815260200182805461144e90614013565b801561149b5780601f106114705761010080835404028352916020019161149b565b820191906000526020600020905b81548152906001019060200180831161147e57829003601f168201915b5050505050905090565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d60159054906101000a900460ff1661151a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151190613a7f565b60405180910390fd5b600f54341461155e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155590613a9f565b60405180910390fd5b60008111801561157057506122b88111155b6115af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a690613bdf565b60405180910390fd5b600d60169054906101000a900460ff16156115ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f690613c5f565b60405180910390fd5b6116093382611d60565b611611611d7e565b50565b61161c611e0e565b73ffffffffffffffffffffffffffffffffffffffff1661163a6113ea565b73ffffffffffffffffffffffffffffffffffffffff1614611690576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168790613bbf565b60405180910390fd5b600d60159054906101000a900460ff1615600d60156101000a81548160ff021916908315150217905550565b6116c4611e0e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611732576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172990613a5f565b60405180910390fd5b806006600061173f611e0e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117ec611e0e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118319190613982565b60405180910390a35050565b600f5481565b600d60169054906101000a900460ff1681565b601481565b61186c611866611e0e565b83611ecf565b6118ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a290613c9f565b60405180910390fd5b6118b784848484612384565b50505050565b600d60159054906101000a900460ff1681565b60606118db82611cf4565b61191a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191190613c1f565b60405180910390fd5b611923826123e0565b9050919050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6010805461195d90614013565b80601f016020809104026020016040519081016040528092919081815260200182805461198990614013565b80156119d65780601f106119ab576101008083540402835291602001916119d6565b820191906000526020600020905b8154815290600101906020018083116119b957829003601f168201915b505050505081565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a7a611e0e565b73ffffffffffffffffffffffffffffffffffffffff16611a986113ea565b73ffffffffffffffffffffffffffffffffffffffff1614611aee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae590613bbf565b60405180910390fd5b600d60149054906101000a900460ff1615600d60146101000a81548160ff021916908315150217905550565b611b22611e0e565b73ffffffffffffffffffffffffffffffffffffffff16611b406113ea565b73ffffffffffffffffffffffffffffffffffffffff1614611b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8d90613bbf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfd906139ff565b60405180910390fd5b611c0f816122c0565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611cdd57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611ced5750611cec82612487565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b611d7a8282604051806020016040528060008152506124f1565b5050565b6000349050611dc7601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166064601484611db89190613ecf565b611dc29190613e9e565b612209565b611e0b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166064600584611dfc9190613ecf565b611e069190613e9e565b612209565b50565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611e898361114a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611eda82611cf4565b611f19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1090613abf565b60405180910390fd5b6000611f248361114a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f9357508373ffffffffffffffffffffffffffffffffffffffff16611f7b846109af565b73ffffffffffffffffffffffffffffffffffffffff16145b80611fa45750611fa381856119de565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611fcd8261114a565b73ffffffffffffffffffffffffffffffffffffffff1614612023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201a90613bff565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208a90613a3f565b60405180910390fd5b61209e83838361254c565b6120a9600082611e16565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120f99190613f29565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121509190613e48565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600082905060008173ffffffffffffffffffffffffffffffffffffffff1683604051612234906138e4565b60006040518083038185875af1925050503d8060008114612271576040519150601f19603f3d011682016040523d82523d6000602084013e612276565b606091505b50509050806122ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b190613c7f565b60405180910390fd5b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61238f848484611fad565b61239b84848484612660565b6123da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d1906139df565b60405180910390fd5b50505050565b60606123eb82611cf4565b61242a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242190613c1f565b60405180910390fd5b60006124346127f7565b90506000815111612454576040518060200160405280600081525061247f565b8061245e84612889565b60405160200161246f9291906138c0565b6040516020818303038152906040525b915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6124fb83836129ea565b6125086000848484612660565b612547576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253e906139df565b60405180910390fd5b505050565b612557838383612bb8565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561259a5761259581612bbd565b6125d9565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146125d8576125d78382612c06565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561261c5761261781612d73565b61265b565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461265a576126598282612e44565b5b5b505050565b60006126818473ffffffffffffffffffffffffffffffffffffffff16612ec3565b156127ea578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126aa611e0e565b8786866040518563ffffffff1660e01b81526004016126cc9493929190613914565b602060405180830381600087803b1580156126e657600080fd5b505af192505050801561271757506040513d601f19601f8201168201806040525081019061271491906132f4565b60015b61279a573d8060008114612747576040519150601f19603f3d011682016040523d82523d6000602084013e61274c565b606091505b50600081511415612792576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612789906139df565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127ef565b600190505b949350505050565b60606010805461280690614013565b80601f016020809104026020016040519081016040528092919081815260200182805461283290614013565b801561287f5780601f106128545761010080835404028352916020019161287f565b820191906000526020600020905b81548152906001019060200180831161286257829003601f168201915b5050505050905090565b606060008214156128d1576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129e5565b600082905060005b600082146129035780806128ec90614076565b915050600a826128fc9190613e9e565b91506128d9565b60008167ffffffffffffffff81111561291f5761291e6141db565b5b6040519080825280601f01601f1916602001820160405280156129515781602001600182028036833780820191505090505b5090505b600085146129de5760018261296a9190613f29565b9150600a8561297991906140bf565b60306129859190613e48565b60f81b81838151811061299b5761299a6141ac565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129d79190613e9e565b9450612955565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5190613b7f565b60405180910390fd5b612a6381611cf4565b15612aa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9a90613a1f565b60405180910390fd5b612aaf6000838361254c565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612aff9190613e48565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612c13846111fc565b612c1d9190613f29565b9050600060086000848152602001908152602001600020549050818114612d02576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600980549050612d879190613f29565b90506000600a6000848152602001908152602001600020549050600060098381548110612db757612db66141ac565b5b906000526020600020015490508060098381548110612dd957612dd86141ac565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a6000858152602001908152602001600020600090556009805480612e2857612e2761417d565b5b6001900381819060005260206000200160009055905550505050565b6000612e4f836111fc565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b828054612ee290614013565b90600052602060002090601f016020900481019282612f045760008555612f4b565b82601f10612f1d57805160ff1916838001178555612f4b565b82800160010185558215612f4b579182015b82811115612f4a578251825591602001919060010190612f2f565b5b509050612f589190612f5c565b5090565b5b80821115612f75576000816000905550600101612f5d565b5090565b6000612f8c612f8784613d5f565b613d3a565b905082815260208101848484011115612fa857612fa761420f565b5b612fb3848285613fd1565b509392505050565b6000612fce612fc984613d90565b613d3a565b905082815260208101848484011115612fea57612fe961420f565b5b612ff5848285613fd1565b509392505050565b60008135905061300c816148bf565b92915050565b600081519050613021816148bf565b92915050565b600081359050613036816148d6565b92915050565b60008135905061304b816148ed565b92915050565b600081519050613060816148ed565b92915050565b600082601f83011261307b5761307a61420a565b5b813561308b848260208601612f79565b91505092915050565b600082601f8301126130a9576130a861420a565b5b81356130b9848260208601612fbb565b91505092915050565b6000813590506130d181614904565b92915050565b6000602082840312156130ed576130ec614219565b5b60006130fb84828501612ffd565b91505092915050565b60006020828403121561311a57613119614219565b5b600061312884828501613012565b91505092915050565b6000806040838503121561314857613147614219565b5b600061315685828601612ffd565b925050602061316785828601612ffd565b9150509250929050565b60008060006060848603121561318a57613189614219565b5b600061319886828701612ffd565b93505060206131a986828701612ffd565b92505060406131ba868287016130c2565b9150509250925092565b600080600080608085870312156131de576131dd614219565b5b60006131ec87828801612ffd565b94505060206131fd87828801612ffd565b935050604061320e878288016130c2565b925050606085013567ffffffffffffffff81111561322f5761322e614214565b5b61323b87828801613066565b91505092959194509250565b6000806040838503121561325e5761325d614219565b5b600061326c85828601612ffd565b925050602061327d85828601613027565b9150509250929050565b6000806040838503121561329e5761329d614219565b5b60006132ac85828601612ffd565b92505060206132bd858286016130c2565b9150509250929050565b6000602082840312156132dd576132dc614219565b5b60006132eb8482850161303c565b91505092915050565b60006020828403121561330a57613309614219565b5b600061331884828501613051565b91505092915050565b60006020828403121561333757613336614219565b5b600082013567ffffffffffffffff81111561335557613354614214565b5b61336184828501613094565b91505092915050565b6000602082840312156133805761337f614219565b5b600061338e848285016130c2565b91505092915050565b60006133a383836138a2565b60208301905092915050565b6133b881613f5d565b82525050565b60006133c982613dd1565b6133d38185613dff565b93506133de83613dc1565b8060005b8381101561340f5781516133f68882613397565b975061340183613df2565b9250506001810190506133e2565b5085935050505092915050565b61342581613f6f565b82525050565b600061343682613ddc565b6134408185613e10565b9350613450818560208601613fe0565b6134598161421e565b840191505092915050565b600061346f82613de7565b6134798185613e2c565b9350613489818560208601613fe0565b6134928161421e565b840191505092915050565b60006134a882613de7565b6134b28185613e3d565b93506134c2818560208601613fe0565b80840191505092915050565b60006134db602b83613e2c565b91506134e68261422f565b604082019050919050565b60006134fe603283613e2c565b91506135098261427e565b604082019050919050565b6000613521602683613e2c565b915061352c826142cd565b604082019050919050565b6000613544601c83613e2c565b915061354f8261431c565b602082019050919050565b6000613567602483613e2c565b915061357282614345565b604082019050919050565b600061358a601983613e2c565b915061359582614394565b602082019050919050565b60006135ad601783613e2c565b91506135b8826143bd565b602082019050919050565b60006135d0601f83613e2c565b91506135db826143e6565b602082019050919050565b60006135f3602c83613e2c565b91506135fe8261440f565b604082019050919050565b6000613616601783613e2c565b91506136218261445e565b602082019050919050565b6000613639603883613e2c565b915061364482614487565b604082019050919050565b600061365c602a83613e2c565b9150613667826144d6565b604082019050919050565b600061367f602983613e2c565b915061368a82614525565b604082019050919050565b60006136a2601383613e2c565b91506136ad82614574565b602082019050919050565b60006136c5602083613e2c565b91506136d08261459d565b602082019050919050565b60006136e8602c83613e2c565b91506136f3826145c6565b604082019050919050565b600061370b602083613e2c565b915061371682614615565b602082019050919050565b600061372e601083613e2c565b91506137398261463e565b602082019050919050565b6000613751602983613e2c565b915061375c82614667565b604082019050919050565b6000613774602f83613e2c565b915061377f826146b6565b604082019050919050565b6000613797602183613e2c565b91506137a282614705565b604082019050919050565b60006137ba602583613e2c565b91506137c582614754565b604082019050919050565b60006137dd600083613e21565b91506137e8826147a3565b600082019050919050565b6000613800601083613e2c565b915061380b826147a6565b602082019050919050565b6000613823603183613e2c565b915061382e826147cf565b604082019050919050565b6000613846602c83613e2c565b91506138518261481e565b604082019050919050565b6000613869601f83613e2c565b91506138748261486d565b602082019050919050565b600061388c601883613e2c565b915061389782614896565b602082019050919050565b6138ab81613fc7565b82525050565b6138ba81613fc7565b82525050565b60006138cc828561349d565b91506138d8828461349d565b91508190509392505050565b60006138ef826137d0565b9150819050919050565b600060208201905061390e60008301846133af565b92915050565b600060808201905061392960008301876133af565b61393660208301866133af565b61394360408301856138b1565b8181036060830152613955818461342b565b905095945050505050565b6000602082019050818103600083015261397a81846133be565b905092915050565b6000602082019050613997600083018461341c565b92915050565b600060208201905081810360008301526139b78184613464565b905092915050565b600060208201905081810360008301526139d8816134ce565b9050919050565b600060208201905081810360008301526139f8816134f1565b9050919050565b60006020820190508181036000830152613a1881613514565b9050919050565b60006020820190508181036000830152613a3881613537565b9050919050565b60006020820190508181036000830152613a588161355a565b9050919050565b60006020820190508181036000830152613a788161357d565b9050919050565b60006020820190508181036000830152613a98816135a0565b9050919050565b60006020820190508181036000830152613ab8816135c3565b9050919050565b60006020820190508181036000830152613ad8816135e6565b9050919050565b60006020820190508181036000830152613af881613609565b9050919050565b60006020820190508181036000830152613b188161362c565b9050919050565b60006020820190508181036000830152613b388161364f565b9050919050565b60006020820190508181036000830152613b5881613672565b9050919050565b60006020820190508181036000830152613b7881613695565b9050919050565b60006020820190508181036000830152613b98816136b8565b9050919050565b60006020820190508181036000830152613bb8816136db565b9050919050565b60006020820190508181036000830152613bd8816136fe565b9050919050565b60006020820190508181036000830152613bf881613721565b9050919050565b60006020820190508181036000830152613c1881613744565b9050919050565b60006020820190508181036000830152613c3881613767565b9050919050565b60006020820190508181036000830152613c588161378a565b9050919050565b60006020820190508181036000830152613c78816137ad565b9050919050565b60006020820190508181036000830152613c98816137f3565b9050919050565b60006020820190508181036000830152613cb881613816565b9050919050565b60006020820190508181036000830152613cd881613839565b9050919050565b60006020820190508181036000830152613cf88161385c565b9050919050565b60006020820190508181036000830152613d188161387f565b9050919050565b6000602082019050613d3460008301846138b1565b92915050565b6000613d44613d55565b9050613d508282614045565b919050565b6000604051905090565b600067ffffffffffffffff821115613d7a57613d796141db565b5b613d838261421e565b9050602081019050919050565b600067ffffffffffffffff821115613dab57613daa6141db565b5b613db48261421e565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613e5382613fc7565b9150613e5e83613fc7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e9357613e926140f0565b5b828201905092915050565b6000613ea982613fc7565b9150613eb483613fc7565b925082613ec457613ec361411f565b5b828204905092915050565b6000613eda82613fc7565b9150613ee583613fc7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f1e57613f1d6140f0565b5b828202905092915050565b6000613f3482613fc7565b9150613f3f83613fc7565b925082821015613f5257613f516140f0565b5b828203905092915050565b6000613f6882613fa7565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613ffe578082015181840152602081019050613fe3565b8381111561400d576000848401525b50505050565b6000600282049050600182168061402b57607f821691505b6020821081141561403f5761403e61414e565b5b50919050565b61404e8261421e565b810181811067ffffffffffffffff8211171561406d5761406c6141db565b5b80604052505050565b600061408182613fc7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156140b4576140b36140f0565b5b600182019050919050565b60006140ca82613fc7565b91506140d583613fc7565b9250826140e5576140e461411f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f5075626c69632073616c65206e6f742073746172746564000000000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4e6f7420746865206f776e6572206f662074686973204e000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f50726573616c65206e6f74207374617274656400000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f546f6b656e20494420696e76616c696400000000000000000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f436f6e7472616374206275726e742e204e6f206d696e74696e672063616e206860008201527f617070656e000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f57726f6e6720616d6f756e74206f66204554482073656e740000000000000000600082015250565b6148c881613f5d565b81146148d357600080fd5b50565b6148df81613f6f565b81146148ea57600080fd5b50565b6148f681613f7b565b811461490157600080fd5b50565b61490d81613fc7565b811461491857600080fd5b5056fea2646970667358221220c4093e5da433ce874d0d458e02c6ddb1bdee2bc1c500c46a479eb1840599c68564736f6c63430008050033
Deployed Bytecode
0x6080604052600436106102245760003560e01c8063715018a611610123578063b192da2d116100ab578063d333232c1161006f578063d333232c146107ca578063d547cfb7146107f5578063e985e9c514610820578063f03255491461085d578063f2fde38b1461087457610224565b8063b192da2d146106e3578063b405522d1461070e578063b88d4fde14610739578063bc8893b414610762578063c87b56dd1461078d57610224565b8063973ea9d5116100f2578063973ea9d514610631578063a0712d681461065c578063a10866ef14610678578063a22cb4651461068f578063a945bf80146106b857610224565b8063715018a6146105875780638462151c1461059e5780638da5cb5b146105db57806395d89b411461060657610224565b80632f745c59116101b15780634f6ccce7116101755780634f6ccce71461047c57806353135ca0146104b957806355f804b3146104e45780636352211e1461050d57806370a082311461054a57610224565b80632f745c59146103bd5780633ccfd60b146103fa57806342842e0e1461041157806344df8e701461043a5780634811c0701461045157610224565b80630860b12c116101f85780630860b12c146102f9578063095ea7b31461031557806318160ddd1461033e5780631c0a258e1461036957806323b872dd1461039457610224565b80620e7fa81461022957806301ffc9a71461025457806306fdde0314610291578063081812fc146102bc575b600080fd5b34801561023557600080fd5b5061023e61089d565b60405161024b9190613d1f565b60405180910390f35b34801561026057600080fd5b5061027b600480360381019061027691906132c7565b6108a3565b6040516102889190613982565b60405180910390f35b34801561029d57600080fd5b506102a661091d565b6040516102b3919061399d565b60405180910390f35b3480156102c857600080fd5b506102e360048036038101906102de919061336a565b6109af565b6040516102f091906138f9565b60405180910390f35b610313600480360381019061030e919061336a565b610a34565b005b34801561032157600080fd5b5061033c60048036038101906103379190613287565b610c9a565b005b34801561034a57600080fd5b50610353610db2565b6040516103609190613d1f565b60405180910390f35b34801561037557600080fd5b5061037e610dbf565b60405161038b9190613d1f565b60405180910390f35b3480156103a057600080fd5b506103bb60048036038101906103b69190613171565b610dc4565b005b3480156103c957600080fd5b506103e460048036038101906103df9190613287565b610e24565b6040516103f19190613d1f565b60405180910390f35b34801561040657600080fd5b5061040f610ec9565b005b34801561041d57600080fd5b5061043860048036038101906104339190613171565b610f51565b005b34801561044657600080fd5b5061044f610f71565b005b34801561045d57600080fd5b5061046661100a565b60405161047391906138f9565b60405180910390f35b34801561048857600080fd5b506104a3600480360381019061049e919061336a565b611030565b6040516104b09190613d1f565b60405180910390f35b3480156104c557600080fd5b506104ce6110a1565b6040516104db9190613982565b60405180910390f35b3480156104f057600080fd5b5061050b60048036038101906105069190613321565b6110b4565b005b34801561051957600080fd5b50610534600480360381019061052f919061336a565b61114a565b60405161054191906138f9565b60405180910390f35b34801561055657600080fd5b50610571600480360381019061056c91906130d7565b6111fc565b60405161057e9190613d1f565b60405180910390f35b34801561059357600080fd5b5061059c6112b4565b005b3480156105aa57600080fd5b506105c560048036038101906105c091906130d7565b61133c565b6040516105d29190613960565b60405180910390f35b3480156105e757600080fd5b506105f06113ea565b6040516105fd91906138f9565b60405180910390f35b34801561061257600080fd5b5061061b611413565b604051610628919061399d565b60405180910390f35b34801561063d57600080fd5b506106466114a5565b60405161065391906138f9565b60405180910390f35b6106766004803603810190610671919061336a565b6114cb565b005b34801561068457600080fd5b5061068d611614565b005b34801561069b57600080fd5b506106b660048036038101906106b19190613247565b6116bc565b005b3480156106c457600080fd5b506106cd61183d565b6040516106da9190613d1f565b60405180910390f35b3480156106ef57600080fd5b506106f8611843565b6040516107059190613982565b60405180910390f35b34801561071a57600080fd5b50610723611856565b6040516107309190613d1f565b60405180910390f35b34801561074557600080fd5b50610760600480360381019061075b91906131c4565b61185b565b005b34801561076e57600080fd5b506107776118bd565b6040516107849190613982565b60405180910390f35b34801561079957600080fd5b506107b460048036038101906107af919061336a565b6118d0565b6040516107c1919061399d565b60405180910390f35b3480156107d657600080fd5b506107df61192a565b6040516107ec91906138f9565b60405180910390f35b34801561080157600080fd5b5061080a611950565b604051610817919061399d565b60405180910390f35b34801561082c57600080fd5b5061084760048036038101906108429190613131565b6119de565b6040516108549190613982565b60405180910390f35b34801561086957600080fd5b50610872611a72565b005b34801561088057600080fd5b5061089b600480360381019061089691906130d7565b611b1a565b005b600e5481565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610916575061091582611c12565b5b9050919050565b60606001805461092c90614013565b80601f016020809104026020016040519081016040528092919081815260200182805461095890614013565b80156109a55780601f1061097a576101008083540402835291602001916109a5565b820191906000526020600020905b81548152906001019060200180831161098857829003601f168201915b5050505050905090565b60006109ba82611cf4565b6109f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f090613b9f565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6002600b541415610a7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7190613cdf565b60405180910390fd5b6002600b81905550600d60149054906101000a900460ff16610ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac890613b5f565b60405180910390fd5b600e543414610b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0c90613cff565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b8152600401610b879190613d1f565b60206040518083038186803b158015610b9f57600080fd5b505afa158015610bb3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bd79190613104565b73ffffffffffffffffffffffffffffffffffffffff1614610c2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2490613adf565b60405180910390fd5b600d60169054906101000a900460ff1615610c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7490613c5f565b60405180910390fd5b610c873382611d60565b610c8f611d7e565b6001600b8190555050565b6000610ca58261114a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0d90613c3f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d35611e0e565b73ffffffffffffffffffffffffffffffffffffffff161480610d645750610d6381610d5e611e0e565b6119de565b5b610da3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9a90613aff565b60405180910390fd5b610dad8383611e16565b505050565b6000600980549050905090565b600581565b610dd5610dcf611e0e565b82611ecf565b610e14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0b90613c9f565b60405180910390fd5b610e1f838383611fad565b505050565b6000610e2f836111fc565b8210610e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e67906139bf565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610ed1611e0e565b73ffffffffffffffffffffffffffffffffffffffff16610eef6113ea565b73ffffffffffffffffffffffffffffffffffffffff1614610f45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3c90613bbf565b60405180910390fd5b610f4f3347612209565b565b610f6c8383836040518060200160405280600081525061185b565b505050565b610f79611e0e565b73ffffffffffffffffffffffffffffffffffffffff16610f976113ea565b73ffffffffffffffffffffffffffffffffffffffff1614610fed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe490613bbf565b60405180910390fd5b6001600d60166101000a81548160ff021916908315150217905550565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061103a610db2565b821061107b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107290613cbf565b60405180910390fd5b6009828154811061108f5761108e6141ac565b5b90600052602060002001549050919050565b600d60149054906101000a900460ff1681565b6110bc611e0e565b73ffffffffffffffffffffffffffffffffffffffff166110da6113ea565b73ffffffffffffffffffffffffffffffffffffffff1614611130576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112790613bbf565b60405180910390fd5b8060109080519060200190611146929190612ed6565b5050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ea90613b3f565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561126d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126490613b1f565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112bc611e0e565b73ffffffffffffffffffffffffffffffffffffffff166112da6113ea565b73ffffffffffffffffffffffffffffffffffffffff1614611330576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132790613bbf565b60405180910390fd5b61133a60006122c0565b565b60606000611349836111fc565b905060008167ffffffffffffffff811115611367576113666141db565b5b6040519080825280602002602001820160405280156113955781602001602082028036833780820191505090505b50905060005b828110156113df576113ad8582610e24565b8282815181106113c0576113bf6141ac565b5b60200260200101818152505080806113d790614076565b91505061139b565b508092505050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461142290614013565b80601f016020809104026020016040519081016040528092919081815260200182805461144e90614013565b801561149b5780601f106114705761010080835404028352916020019161149b565b820191906000526020600020905b81548152906001019060200180831161147e57829003601f168201915b5050505050905090565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d60159054906101000a900460ff1661151a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151190613a7f565b60405180910390fd5b600f54341461155e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155590613a9f565b60405180910390fd5b60008111801561157057506122b88111155b6115af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a690613bdf565b60405180910390fd5b600d60169054906101000a900460ff16156115ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f690613c5f565b60405180910390fd5b6116093382611d60565b611611611d7e565b50565b61161c611e0e565b73ffffffffffffffffffffffffffffffffffffffff1661163a6113ea565b73ffffffffffffffffffffffffffffffffffffffff1614611690576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168790613bbf565b60405180910390fd5b600d60159054906101000a900460ff1615600d60156101000a81548160ff021916908315150217905550565b6116c4611e0e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611732576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172990613a5f565b60405180910390fd5b806006600061173f611e0e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117ec611e0e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118319190613982565b60405180910390a35050565b600f5481565b600d60169054906101000a900460ff1681565b601481565b61186c611866611e0e565b83611ecf565b6118ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a290613c9f565b60405180910390fd5b6118b784848484612384565b50505050565b600d60159054906101000a900460ff1681565b60606118db82611cf4565b61191a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191190613c1f565b60405180910390fd5b611923826123e0565b9050919050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6010805461195d90614013565b80601f016020809104026020016040519081016040528092919081815260200182805461198990614013565b80156119d65780601f106119ab576101008083540402835291602001916119d6565b820191906000526020600020905b8154815290600101906020018083116119b957829003601f168201915b505050505081565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a7a611e0e565b73ffffffffffffffffffffffffffffffffffffffff16611a986113ea565b73ffffffffffffffffffffffffffffffffffffffff1614611aee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae590613bbf565b60405180910390fd5b600d60149054906101000a900460ff1615600d60146101000a81548160ff021916908315150217905550565b611b22611e0e565b73ffffffffffffffffffffffffffffffffffffffff16611b406113ea565b73ffffffffffffffffffffffffffffffffffffffff1614611b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8d90613bbf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfd906139ff565b60405180910390fd5b611c0f816122c0565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611cdd57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611ced5750611cec82612487565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b611d7a8282604051806020016040528060008152506124f1565b5050565b6000349050611dc7601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166064601484611db89190613ecf565b611dc29190613e9e565b612209565b611e0b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166064600584611dfc9190613ecf565b611e069190613e9e565b612209565b50565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611e898361114a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611eda82611cf4565b611f19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1090613abf565b60405180910390fd5b6000611f248361114a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f9357508373ffffffffffffffffffffffffffffffffffffffff16611f7b846109af565b73ffffffffffffffffffffffffffffffffffffffff16145b80611fa45750611fa381856119de565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611fcd8261114a565b73ffffffffffffffffffffffffffffffffffffffff1614612023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201a90613bff565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208a90613a3f565b60405180910390fd5b61209e83838361254c565b6120a9600082611e16565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120f99190613f29565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121509190613e48565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600082905060008173ffffffffffffffffffffffffffffffffffffffff1683604051612234906138e4565b60006040518083038185875af1925050503d8060008114612271576040519150601f19603f3d011682016040523d82523d6000602084013e612276565b606091505b50509050806122ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b190613c7f565b60405180910390fd5b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61238f848484611fad565b61239b84848484612660565b6123da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d1906139df565b60405180910390fd5b50505050565b60606123eb82611cf4565b61242a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242190613c1f565b60405180910390fd5b60006124346127f7565b90506000815111612454576040518060200160405280600081525061247f565b8061245e84612889565b60405160200161246f9291906138c0565b6040516020818303038152906040525b915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6124fb83836129ea565b6125086000848484612660565b612547576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253e906139df565b60405180910390fd5b505050565b612557838383612bb8565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561259a5761259581612bbd565b6125d9565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146125d8576125d78382612c06565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561261c5761261781612d73565b61265b565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461265a576126598282612e44565b5b5b505050565b60006126818473ffffffffffffffffffffffffffffffffffffffff16612ec3565b156127ea578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126aa611e0e565b8786866040518563ffffffff1660e01b81526004016126cc9493929190613914565b602060405180830381600087803b1580156126e657600080fd5b505af192505050801561271757506040513d601f19601f8201168201806040525081019061271491906132f4565b60015b61279a573d8060008114612747576040519150601f19603f3d011682016040523d82523d6000602084013e61274c565b606091505b50600081511415612792576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612789906139df565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127ef565b600190505b949350505050565b60606010805461280690614013565b80601f016020809104026020016040519081016040528092919081815260200182805461283290614013565b801561287f5780601f106128545761010080835404028352916020019161287f565b820191906000526020600020905b81548152906001019060200180831161286257829003601f168201915b5050505050905090565b606060008214156128d1576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129e5565b600082905060005b600082146129035780806128ec90614076565b915050600a826128fc9190613e9e565b91506128d9565b60008167ffffffffffffffff81111561291f5761291e6141db565b5b6040519080825280601f01601f1916602001820160405280156129515781602001600182028036833780820191505090505b5090505b600085146129de5760018261296a9190613f29565b9150600a8561297991906140bf565b60306129859190613e48565b60f81b81838151811061299b5761299a6141ac565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129d79190613e9e565b9450612955565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5190613b7f565b60405180910390fd5b612a6381611cf4565b15612aa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9a90613a1f565b60405180910390fd5b612aaf6000838361254c565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612aff9190613e48565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612c13846111fc565b612c1d9190613f29565b9050600060086000848152602001908152602001600020549050818114612d02576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600980549050612d879190613f29565b90506000600a6000848152602001908152602001600020549050600060098381548110612db757612db66141ac565b5b906000526020600020015490508060098381548110612dd957612dd86141ac565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a6000858152602001908152602001600020600090556009805480612e2857612e2761417d565b5b6001900381819060005260206000200160009055905550505050565b6000612e4f836111fc565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b828054612ee290614013565b90600052602060002090601f016020900481019282612f045760008555612f4b565b82601f10612f1d57805160ff1916838001178555612f4b565b82800160010185558215612f4b579182015b82811115612f4a578251825591602001919060010190612f2f565b5b509050612f589190612f5c565b5090565b5b80821115612f75576000816000905550600101612f5d565b5090565b6000612f8c612f8784613d5f565b613d3a565b905082815260208101848484011115612fa857612fa761420f565b5b612fb3848285613fd1565b509392505050565b6000612fce612fc984613d90565b613d3a565b905082815260208101848484011115612fea57612fe961420f565b5b612ff5848285613fd1565b509392505050565b60008135905061300c816148bf565b92915050565b600081519050613021816148bf565b92915050565b600081359050613036816148d6565b92915050565b60008135905061304b816148ed565b92915050565b600081519050613060816148ed565b92915050565b600082601f83011261307b5761307a61420a565b5b813561308b848260208601612f79565b91505092915050565b600082601f8301126130a9576130a861420a565b5b81356130b9848260208601612fbb565b91505092915050565b6000813590506130d181614904565b92915050565b6000602082840312156130ed576130ec614219565b5b60006130fb84828501612ffd565b91505092915050565b60006020828403121561311a57613119614219565b5b600061312884828501613012565b91505092915050565b6000806040838503121561314857613147614219565b5b600061315685828601612ffd565b925050602061316785828601612ffd565b9150509250929050565b60008060006060848603121561318a57613189614219565b5b600061319886828701612ffd565b93505060206131a986828701612ffd565b92505060406131ba868287016130c2565b9150509250925092565b600080600080608085870312156131de576131dd614219565b5b60006131ec87828801612ffd565b94505060206131fd87828801612ffd565b935050604061320e878288016130c2565b925050606085013567ffffffffffffffff81111561322f5761322e614214565b5b61323b87828801613066565b91505092959194509250565b6000806040838503121561325e5761325d614219565b5b600061326c85828601612ffd565b925050602061327d85828601613027565b9150509250929050565b6000806040838503121561329e5761329d614219565b5b60006132ac85828601612ffd565b92505060206132bd858286016130c2565b9150509250929050565b6000602082840312156132dd576132dc614219565b5b60006132eb8482850161303c565b91505092915050565b60006020828403121561330a57613309614219565b5b600061331884828501613051565b91505092915050565b60006020828403121561333757613336614219565b5b600082013567ffffffffffffffff81111561335557613354614214565b5b61336184828501613094565b91505092915050565b6000602082840312156133805761337f614219565b5b600061338e848285016130c2565b91505092915050565b60006133a383836138a2565b60208301905092915050565b6133b881613f5d565b82525050565b60006133c982613dd1565b6133d38185613dff565b93506133de83613dc1565b8060005b8381101561340f5781516133f68882613397565b975061340183613df2565b9250506001810190506133e2565b5085935050505092915050565b61342581613f6f565b82525050565b600061343682613ddc565b6134408185613e10565b9350613450818560208601613fe0565b6134598161421e565b840191505092915050565b600061346f82613de7565b6134798185613e2c565b9350613489818560208601613fe0565b6134928161421e565b840191505092915050565b60006134a882613de7565b6134b28185613e3d565b93506134c2818560208601613fe0565b80840191505092915050565b60006134db602b83613e2c565b91506134e68261422f565b604082019050919050565b60006134fe603283613e2c565b91506135098261427e565b604082019050919050565b6000613521602683613e2c565b915061352c826142cd565b604082019050919050565b6000613544601c83613e2c565b915061354f8261431c565b602082019050919050565b6000613567602483613e2c565b915061357282614345565b604082019050919050565b600061358a601983613e2c565b915061359582614394565b602082019050919050565b60006135ad601783613e2c565b91506135b8826143bd565b602082019050919050565b60006135d0601f83613e2c565b91506135db826143e6565b602082019050919050565b60006135f3602c83613e2c565b91506135fe8261440f565b604082019050919050565b6000613616601783613e2c565b91506136218261445e565b602082019050919050565b6000613639603883613e2c565b915061364482614487565b604082019050919050565b600061365c602a83613e2c565b9150613667826144d6565b604082019050919050565b600061367f602983613e2c565b915061368a82614525565b604082019050919050565b60006136a2601383613e2c565b91506136ad82614574565b602082019050919050565b60006136c5602083613e2c565b91506136d08261459d565b602082019050919050565b60006136e8602c83613e2c565b91506136f3826145c6565b604082019050919050565b600061370b602083613e2c565b915061371682614615565b602082019050919050565b600061372e601083613e2c565b91506137398261463e565b602082019050919050565b6000613751602983613e2c565b915061375c82614667565b604082019050919050565b6000613774602f83613e2c565b915061377f826146b6565b604082019050919050565b6000613797602183613e2c565b91506137a282614705565b604082019050919050565b60006137ba602583613e2c565b91506137c582614754565b604082019050919050565b60006137dd600083613e21565b91506137e8826147a3565b600082019050919050565b6000613800601083613e2c565b915061380b826147a6565b602082019050919050565b6000613823603183613e2c565b915061382e826147cf565b604082019050919050565b6000613846602c83613e2c565b91506138518261481e565b604082019050919050565b6000613869601f83613e2c565b91506138748261486d565b602082019050919050565b600061388c601883613e2c565b915061389782614896565b602082019050919050565b6138ab81613fc7565b82525050565b6138ba81613fc7565b82525050565b60006138cc828561349d565b91506138d8828461349d565b91508190509392505050565b60006138ef826137d0565b9150819050919050565b600060208201905061390e60008301846133af565b92915050565b600060808201905061392960008301876133af565b61393660208301866133af565b61394360408301856138b1565b8181036060830152613955818461342b565b905095945050505050565b6000602082019050818103600083015261397a81846133be565b905092915050565b6000602082019050613997600083018461341c565b92915050565b600060208201905081810360008301526139b78184613464565b905092915050565b600060208201905081810360008301526139d8816134ce565b9050919050565b600060208201905081810360008301526139f8816134f1565b9050919050565b60006020820190508181036000830152613a1881613514565b9050919050565b60006020820190508181036000830152613a3881613537565b9050919050565b60006020820190508181036000830152613a588161355a565b9050919050565b60006020820190508181036000830152613a788161357d565b9050919050565b60006020820190508181036000830152613a98816135a0565b9050919050565b60006020820190508181036000830152613ab8816135c3565b9050919050565b60006020820190508181036000830152613ad8816135e6565b9050919050565b60006020820190508181036000830152613af881613609565b9050919050565b60006020820190508181036000830152613b188161362c565b9050919050565b60006020820190508181036000830152613b388161364f565b9050919050565b60006020820190508181036000830152613b5881613672565b9050919050565b60006020820190508181036000830152613b7881613695565b9050919050565b60006020820190508181036000830152613b98816136b8565b9050919050565b60006020820190508181036000830152613bb8816136db565b9050919050565b60006020820190508181036000830152613bd8816136fe565b9050919050565b60006020820190508181036000830152613bf881613721565b9050919050565b60006020820190508181036000830152613c1881613744565b9050919050565b60006020820190508181036000830152613c3881613767565b9050919050565b60006020820190508181036000830152613c588161378a565b9050919050565b60006020820190508181036000830152613c78816137ad565b9050919050565b60006020820190508181036000830152613c98816137f3565b9050919050565b60006020820190508181036000830152613cb881613816565b9050919050565b60006020820190508181036000830152613cd881613839565b9050919050565b60006020820190508181036000830152613cf88161385c565b9050919050565b60006020820190508181036000830152613d188161387f565b9050919050565b6000602082019050613d3460008301846138b1565b92915050565b6000613d44613d55565b9050613d508282614045565b919050565b6000604051905090565b600067ffffffffffffffff821115613d7a57613d796141db565b5b613d838261421e565b9050602081019050919050565b600067ffffffffffffffff821115613dab57613daa6141db565b5b613db48261421e565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613e5382613fc7565b9150613e5e83613fc7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e9357613e926140f0565b5b828201905092915050565b6000613ea982613fc7565b9150613eb483613fc7565b925082613ec457613ec361411f565b5b828204905092915050565b6000613eda82613fc7565b9150613ee583613fc7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f1e57613f1d6140f0565b5b828202905092915050565b6000613f3482613fc7565b9150613f3f83613fc7565b925082821015613f5257613f516140f0565b5b828203905092915050565b6000613f6882613fa7565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613ffe578082015181840152602081019050613fe3565b8381111561400d576000848401525b50505050565b6000600282049050600182168061402b57607f821691505b6020821081141561403f5761403e61414e565b5b50919050565b61404e8261421e565b810181811067ffffffffffffffff8211171561406d5761406c6141db565b5b80604052505050565b600061408182613fc7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156140b4576140b36140f0565b5b600182019050919050565b60006140ca82613fc7565b91506140d583613fc7565b9250826140e5576140e461411f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f5075626c69632073616c65206e6f742073746172746564000000000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4e6f7420746865206f776e6572206f662074686973204e000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f50726573616c65206e6f74207374617274656400000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f546f6b656e20494420696e76616c696400000000000000000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f436f6e7472616374206275726e742e204e6f206d696e74696e672063616e206860008201527f617070656e000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f57726f6e6720616d6f756e74206f66204554482073656e740000000000000000600082015250565b6148c881613f5d565b81146148d357600080fd5b50565b6148df81613f6f565b81146148ea57600080fd5b50565b6148f681613f7b565b811461490157600080fd5b50565b61490d81613fc7565b811461491857600080fd5b5056fea2646970667358221220c4093e5da433ce874d0d458e02c6ddb1bdee2bc1c500c46a479eb1840599c68564736f6c63430008050033
Deployed Bytecode Sourcemap
59907:3729:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60294:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49146:300;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32147:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33840:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61728:417;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33363:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49949:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60639:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34899:376;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49530:343;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63078:102;;;;;;;;;;;;;:::i;:::-;;35346:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62797:130;;;;;;;;;;;;;:::i;:::-;;60426:72;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50139:320;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60177:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62959:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31754:326;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31397:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2686:94;;;;;;;;;;;;;:::i;:::-;;61085:360;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2035:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32316:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60505:72;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62184:392;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62686:103;;;;;;;;;;;;;:::i;:::-;;34220:327;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60342:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60260:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60584:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35602:365;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60217:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61453:226;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60050:68;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60391:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34618:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62584:94;;;;;;;;;;;;;:::i;:::-;;2935:229;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60294:41;;;;:::o;49146:300::-;49293:4;49350:35;49335:50;;;:11;:50;;;;:103;;;;49402:36;49426:11;49402:23;:36::i;:::-;49335:103;49315:123;;49146:300;;;:::o;32147:100::-;32201:13;32234:5;32227:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32147:100;:::o;33840:308::-;33961:7;34008:16;34016:7;34008;:16::i;:::-;33986:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;34116:15;:24;34132:7;34116:24;;;;;;;;;;;;;;;;;;;;;34109:31;;33840:308;;;:::o;61728:417::-;58751:1;59347:7;;:19;;59339:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;58751:1;59480:7;:18;;;;61808:13:::1;;;;;;;;;;;61800:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;61877:12;;61864:9;:25;61856:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;61964:10;61937:37;;:9;;;;;;;;;;;:17;;;61955:4;61937:23;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:37;;;61929:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;62022:5;;;;;;;;;;;62021:6;62013:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;62082:27;62092:10;62104:4;62082:9;:27::i;:::-;62122:15;:13;:15::i;:::-;58707:1:::0;59659:7;:22;;;;61728:417;:::o;33363:411::-;33444:13;33460:23;33475:7;33460:14;:23::i;:::-;33444:39;;33508:5;33502:11;;:2;:11;;;;33494:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;33602:5;33586:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;33611:37;33628:5;33635:12;:10;:12::i;:::-;33611:16;:37::i;:::-;33586:62;33564:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;33745:21;33754:2;33758:7;33745:8;:21::i;:::-;33433:341;33363:411;;:::o;49949:113::-;50010:7;50037:10;:17;;;;50030:24;;49949:113;:::o;60639:47::-;60685:1;60639:47;:::o;34899:376::-;35108:41;35127:12;:10;:12::i;:::-;35141:7;35108:18;:41::i;:::-;35086:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;35239:28;35249:4;35255:2;35259:7;35239:9;:28::i;:::-;34899:376;;;:::o;49530:343::-;49672:7;49727:23;49744:5;49727:16;:23::i;:::-;49719:5;:31;49697:124;;;;;;;;;;;;:::i;:::-;;;;;;;;;49839:12;:19;49852:5;49839:19;;;;;;;;;;;;;;;:26;49859:5;49839:26;;;;;;;;;;;;49832:33;;49530:343;;;;:::o;63078:102::-;2266:12;:10;:12::i;:::-;2255:23;;:7;:5;:7::i;:::-;:23;;;2247:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;63126:46:::1;63138:10;63150:21;63126:11;:46::i;:::-;63078:102::o:0;35346:185::-;35484:39;35501:4;35507:2;35511:7;35484:39;;;;;;;;;;;;:16;:39::i;:::-;35346:185;;;:::o;62797:130::-;2266:12;:10;:12::i;:::-;2255:23;;:7;:5;:7::i;:::-;:23;;;2247:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62915:4:::1;62907:5;;:12;;;;;;;;;;;;;;;;;;62797:130::o:0;60426:72::-;;;;;;;;;;;;;:::o;50139:320::-;50259:7;50314:30;:28;:30::i;:::-;50306:5;:38;50284:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;50434:10;50445:5;50434:17;;;;;;;;:::i;:::-;;;;;;;;;;50427:24;;50139:320;;;:::o;60177:33::-;;;;;;;;;;;;;:::o;62959:109::-;2266:12;:10;:12::i;:::-;2255:23;;:7;:5;:7::i;:::-;:23;;;2247:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;63049:11:::1;63034:12;:26;;;;;;;;;;;;:::i;:::-;;62959:109:::0;:::o;31754:326::-;31871:7;31896:13;31912:7;:16;31920:7;31912:16;;;;;;;;;;;;;;;;;;;;;31896:32;;31978:1;31961:19;;:5;:19;;;;31939:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;32067:5;32060:12;;;31754:326;;;:::o;31397:295::-;31514:7;31578:1;31561:19;;:5;:19;;;;31539:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;31668:9;:16;31678:5;31668:16;;;;;;;;;;;;;;;;31661:23;;31397:295;;;:::o;2686:94::-;2266:12;:10;:12::i;:::-;2255:23;;:7;:5;:7::i;:::-;:23;;;2247:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2751:21:::1;2769:1;2751:9;:21::i;:::-;2686:94::o:0;61085:360::-;61152:16;61181:18;61202:24;61212:13;61202:9;:24::i;:::-;61181:45;;61237:25;61279:10;61265:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61237:53;;61306:9;61301:111;61321:10;61317:1;:14;61301:111;;;61363:37;61383:13;61398:1;61363:19;:37::i;:::-;61349:8;61358:1;61349:11;;;;;;;;:::i;:::-;;;;;;;:51;;;;;61333:3;;;;;:::i;:::-;;;;61301:111;;;;61429:8;61422:15;;;;61085:360;;;:::o;2035:87::-;2081:7;2108:6;;;;;;;;;;;2101:13;;2035:87;:::o;32316:104::-;32372:13;32405:7;32398:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32316:104;:::o;60505:72::-;;;;;;;;;;;;;:::o;62184:392::-;62246:16;;;;;;;;;;;62238:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;62322:11;;62309:9;:24;62301:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62395:1;62388:4;:8;:24;;;;;62408:4;62400;:12;;62388:24;62380:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;62453:5;;;;;;;;;;;62452:6;62444:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;62513:27;62523:10;62535:4;62513:9;:27::i;:::-;62553:15;:13;:15::i;:::-;62184:392;:::o;62686:103::-;2266:12;:10;:12::i;:::-;2255:23;;:7;:5;:7::i;:::-;:23;;;2247:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62765:16:::1;;;;;;;;;;;62764:17;62745:16;;:36;;;;;;;;;;;;;;;;;;62686:103::o:0;34220:327::-;34367:12;:10;:12::i;:::-;34355:24;;:8;:24;;;;34347:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;34467:8;34422:18;:32;34441:12;:10;:12::i;:::-;34422:32;;;;;;;;;;;;;;;:42;34455:8;34422:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34520:8;34491:48;;34506:12;:10;:12::i;:::-;34491:48;;;34530:8;34491:48;;;;;;:::i;:::-;;;;;;;;34220:327;;:::o;60342:40::-;;;;:::o;60260:25::-;;;;;;;;;;;;;:::o;60584:48::-;60630:2;60584:48;:::o;35602:365::-;35791:41;35810:12;:10;:12::i;:::-;35824:7;35791:18;:41::i;:::-;35769:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;35920:39;35934:4;35940:2;35944:7;35953:5;35920:13;:39::i;:::-;35602:365;;;;:::o;60217:36::-;;;;;;;;;;;;;:::o;61453:226::-;61526:13;61560:16;61568:7;61560;:16::i;:::-;61552:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;61648:23;61663:7;61648:14;:23::i;:::-;61641:30;;61453:226;;;:::o;60050:68::-;;;;;;;;;;;;;:::o;60391:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;34618:214::-;34760:4;34789:18;:25;34808:5;34789:25;;;;;;;;;;;;;;;:35;34815:8;34789:35;;;;;;;;;;;;;;;;;;;;;;;;;34782:42;;34618:214;;;;:::o;62584:94::-;2266:12;:10;:12::i;:::-;2255:23;;:7;:5;:7::i;:::-;:23;;;2247:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62657:13:::1;;;;;;;;;;;62656:14;62640:13;;:30;;;;;;;;;;;;;;;;;;62584:94::o:0;2935:229::-;2266:12;:10;:12::i;:::-;2255:23;;:7;:5;:7::i;:::-;:23;;;2247:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3058:1:::1;3038:22;;:8;:22;;;;3016:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;3137:19;3147:8;3137:9;:19::i;:::-;2935:229:::0;:::o;30978:355::-;31125:4;31182:25;31167:40;;;:11;:40;;;;:105;;;;31239:33;31224:48;;;:11;:48;;;;31167:105;:158;;;;31289:36;31313:11;31289:23;:36::i;:::-;31167:158;31147:178;;30978:355;;;:::o;37514:127::-;37579:4;37631:1;37603:30;;:7;:16;37611:7;37603:16;;;;;;;;;;;;;;;;;;;;;:30;;;;37596:37;;37514:127;;;:::o;38602:110::-;38678:26;38688:2;38692:7;38678:26;;;;;;;;;;;;:9;:26::i;:::-;38602:110;;:::o;63188:223::-;63233:13;63249:9;63233:25;;63269:61;63281:12;;;;;;;;;;;63326:3;60630:2;63295:5;:27;;;;:::i;:::-;63294:35;;;;:::i;:::-;63269:11;:61::i;:::-;63341:62;63353:12;;;;;;;;;;;63399:3;60685:1;63368:5;:27;;;;:::i;:::-;63367:35;;;;:::i;:::-;63341:11;:62::i;:::-;63222:189;63188:223::o;798:98::-;851:7;878:10;871:17;;798:98;:::o;41637:174::-;41739:2;41712:15;:24;41728:7;41712:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;41795:7;41791:2;41757:46;;41766:23;41781:7;41766:14;:23::i;:::-;41757:46;;;;;;;;;;;;41637:174;;:::o;37808:452::-;37937:4;37981:16;37989:7;37981;:16::i;:::-;37959:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;38080:13;38096:23;38111:7;38096:14;:23::i;:::-;38080:39;;38149:5;38138:16;;:7;:16;;;:64;;;;38195:7;38171:31;;:20;38183:7;38171:11;:20::i;:::-;:31;;;38138:64;:113;;;;38219:32;38236:5;38243:7;38219:16;:32::i;:::-;38138:113;38130:122;;;37808:452;;;;:::o;40904:615::-;41077:4;41050:31;;:23;41065:7;41050:14;:23::i;:::-;:31;;;41028:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;41183:1;41169:16;;:2;:16;;;;41161:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;41239:39;41260:4;41266:2;41270:7;41239:20;:39::i;:::-;41343:29;41360:1;41364:7;41343:8;:29::i;:::-;41404:1;41385:9;:15;41395:4;41385:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;41433:1;41416:9;:13;41426:2;41416:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;41464:2;41445:7;:16;41453:7;41445:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;41503:7;41499:2;41484:27;;41493:4;41484:27;;;;;;;;;;;;40904:615;;;:::o;63419:212::-;63488:18;63517:3;63488:33;;63533:12;63551:2;:7;;63566:5;63551:25;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63532:44;;;63595:7;63587:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;63477:154;;63419:212;;:::o;3172:173::-;3228:16;3247:6;;;;;;;;;;;3228:25;;3273:8;3264:6;;:17;;;;;;;;;;;;;;;;;;3328:8;3297:40;;3318:8;3297:40;;;;;;;;;;;;3217:128;3172:173;:::o;36849:352::-;37006:28;37016:4;37022:2;37026:7;37006:9;:28::i;:::-;37067:48;37090:4;37096:2;37100:7;37109:5;37067:22;:48::i;:::-;37045:148;;;;;;;;;;;;:::i;:::-;;;;;;;;;36849:352;;;;:::o;32491:468::-;32609:13;32662:16;32670:7;32662;:16::i;:::-;32640:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;32766:21;32790:10;:8;:10::i;:::-;32766:34;;32855:1;32837:7;32831:21;:25;:120;;;;;;;;;;;;;;;;;32900:7;32909:18;:7;:16;:18::i;:::-;32883:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;32831:120;32811:140;;;32491:468;;;:::o;29444:207::-;29574:4;29618:25;29603:40;;;:11;:40;;;;29596:47;;29444:207;;;:::o;38939:321::-;39069:18;39075:2;39079:7;39069:5;:18::i;:::-;39120:54;39151:1;39155:2;39159:7;39168:5;39120:22;:54::i;:::-;39098:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;38939:321;;;:::o;51072:589::-;51216:45;51243:4;51249:2;51253:7;51216:26;:45::i;:::-;51294:1;51278:18;;:4;:18;;;51274:187;;;51313:40;51345:7;51313:31;:40::i;:::-;51274:187;;;51383:2;51375:10;;:4;:10;;;51371:90;;51402:47;51435:4;51441:7;51402:32;:47::i;:::-;51371:90;51274:187;51489:1;51475:16;;:2;:16;;;51471:183;;;51508:45;51545:7;51508:36;:45::i;:::-;51471:183;;;51581:4;51575:10;;:2;:10;;;51571:83;;51602:40;51630:2;51634:7;51602:27;:40::i;:::-;51571:83;51471:183;51072:589;;;:::o;42376:980::-;42531:4;42552:15;:2;:13;;;:15::i;:::-;42548:801;;;42621:2;42605:36;;;42664:12;:10;:12::i;:::-;42699:4;42726:7;42756:5;42605:175;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42584:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42980:1;42963:6;:13;:18;42959:320;;;43006:108;;;;;;;;;;:::i;:::-;;;;;;;;42959:320;43229:6;43223:13;43214:6;43210:2;43206:15;43199:38;42584:710;42854:41;;;42844:51;;;:6;:51;;;;42837:58;;;;;42548:801;43333:4;43326:11;;42376:980;;;;;;;:::o;60920:113::-;60980:13;61013:12;61006:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60920:113;:::o;26855:723::-;26911:13;27141:1;27132:5;:10;27128:53;;;27159:10;;;;;;;;;;;;;;;;;;;;;27128:53;27191:12;27206:5;27191:20;;27222:14;27247:78;27262:1;27254:4;:9;27247:78;;27280:8;;;;;:::i;:::-;;;;27311:2;27303:10;;;;;:::i;:::-;;;27247:78;;;27335:19;27367:6;27357:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27335:39;;27385:154;27401:1;27392:5;:10;27385:154;;27429:1;27419:11;;;;;:::i;:::-;;;27496:2;27488:5;:10;;;;:::i;:::-;27475:2;:24;;;;:::i;:::-;27462:39;;27445:6;27452;27445:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;27525:2;27516:11;;;;;:::i;:::-;;;27385:154;;;27563:6;27549:21;;;;;26855:723;;;;:::o;39596:382::-;39690:1;39676:16;;:2;:16;;;;39668:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;39749:16;39757:7;39749;:16::i;:::-;39748:17;39740:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;39811:45;39840:1;39844:2;39848:7;39811:20;:45::i;:::-;39886:1;39869:9;:13;39879:2;39869:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;39917:2;39898:7;:16;39906:7;39898:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;39962:7;39958:2;39937:33;;39954:1;39937:33;;;;;;;;;;;;39596:382;;:::o;43928:126::-;;;;:::o;52384:164::-;52488:10;:17;;;;52461:15;:24;52477:7;52461:24;;;;;;;;;;;:44;;;;52516:10;52532:7;52516:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52384:164;:::o;53175:1002::-;53455:22;53505:1;53480:22;53497:4;53480:16;:22::i;:::-;:26;;;;:::i;:::-;53455:51;;53517:18;53538:17;:26;53556:7;53538:26;;;;;;;;;;;;53517:47;;53685:14;53671:10;:28;53667:328;;53716:19;53738:12;:18;53751:4;53738:18;;;;;;;;;;;;;;;:34;53757:14;53738:34;;;;;;;;;;;;53716:56;;53822:11;53789:12;:18;53802:4;53789:18;;;;;;;;;;;;;;;:30;53808:10;53789:30;;;;;;;;;;;:44;;;;53939:10;53906:17;:30;53924:11;53906:30;;;;;;;;;;;:43;;;;53701:294;53667:328;54091:17;:26;54109:7;54091:26;;;;;;;;;;;54084:33;;;54135:12;:18;54148:4;54135:18;;;;;;;;;;;;;;;:34;54154:14;54135:34;;;;;;;;;;;54128:41;;;53270:907;;53175:1002;;:::o;54472:1079::-;54725:22;54770:1;54750:10;:17;;;;:21;;;;:::i;:::-;54725:46;;54782:18;54803:15;:24;54819:7;54803:24;;;;;;;;;;;;54782:45;;55154:19;55176:10;55187:14;55176:26;;;;;;;;:::i;:::-;;;;;;;;;;55154:48;;55240:11;55215:10;55226;55215:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;55351:10;55320:15;:28;55336:11;55320:28;;;;;;;;;;;:41;;;;55492:15;:24;55508:7;55492:24;;;;;;;;;;;55485:31;;;55527:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;54543:1008;;;54472:1079;:::o;51962:221::-;52047:14;52064:20;52081:2;52064:16;:20::i;:::-;52047:37;;52122:7;52095:12;:16;52108:2;52095:16;;;;;;;;;;;;;;;:24;52112:6;52095:24;;;;;;;;;;;:34;;;;52169:6;52140:17;:26;52158:7;52140:26;;;;;;;;;;;:35;;;;52036:147;51962:221;;:::o;18744:387::-;18804:4;19012:12;19079:7;19067:20;19059:28;;19122:1;19115:4;:8;19108:15;;;18744:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;280:79;;:::i;:::-;249:2;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:2;;;698:79;;:::i;:::-;667:2;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;893:87;;;;:::o;986:143::-;1043:5;1074:6;1068:13;1059:22;;1090:33;1117:5;1090:33;:::i;:::-;1049:80;;;;:::o;1135:133::-;1178:5;1216:6;1203:20;1194:29;;1232:30;1256:5;1232:30;:::i;:::-;1184:84;;;;:::o;1274:137::-;1319:5;1357:6;1344:20;1335:29;;1373:32;1399:5;1373:32;:::i;:::-;1325:86;;;;:::o;1417:141::-;1473:5;1504:6;1498:13;1489:22;;1520:32;1546:5;1520:32;:::i;:::-;1479:79;;;;:::o;1577:338::-;1632:5;1681:3;1674:4;1666:6;1662:17;1658:27;1648:2;;1689:79;;:::i;:::-;1648:2;1806:6;1793:20;1831:78;1905:3;1897:6;1890:4;1882:6;1878:17;1831:78;:::i;:::-;1822:87;;1638:277;;;;;:::o;1935:340::-;1991:5;2040:3;2033:4;2025:6;2021:17;2017:27;2007:2;;2048:79;;:::i;:::-;2007:2;2165:6;2152:20;2190:79;2265:3;2257:6;2250:4;2242:6;2238:17;2190:79;:::i;:::-;2181:88;;1997:278;;;;;:::o;2281:139::-;2327:5;2365:6;2352:20;2343:29;;2381:33;2408:5;2381:33;:::i;:::-;2333:87;;;;:::o;2426:329::-;2485:6;2534:2;2522:9;2513:7;2509:23;2505:32;2502:2;;;2540:79;;:::i;:::-;2502:2;2660:1;2685:53;2730:7;2721:6;2710:9;2706:22;2685:53;:::i;:::-;2675:63;;2631:117;2492:263;;;;:::o;2761:351::-;2831:6;2880:2;2868:9;2859:7;2855:23;2851:32;2848:2;;;2886:79;;:::i;:::-;2848:2;3006:1;3031:64;3087:7;3078:6;3067:9;3063:22;3031:64;:::i;:::-;3021:74;;2977:128;2838:274;;;;:::o;3118:474::-;3186:6;3194;3243:2;3231:9;3222:7;3218:23;3214:32;3211:2;;;3249:79;;:::i;:::-;3211:2;3369:1;3394:53;3439:7;3430:6;3419:9;3415:22;3394:53;:::i;:::-;3384:63;;3340:117;3496:2;3522:53;3567:7;3558:6;3547:9;3543:22;3522:53;:::i;:::-;3512:63;;3467:118;3201:391;;;;;:::o;3598:619::-;3675:6;3683;3691;3740:2;3728:9;3719:7;3715:23;3711:32;3708:2;;;3746:79;;:::i;:::-;3708:2;3866:1;3891:53;3936:7;3927:6;3916:9;3912:22;3891:53;:::i;:::-;3881:63;;3837:117;3993:2;4019:53;4064:7;4055:6;4044:9;4040:22;4019:53;:::i;:::-;4009:63;;3964:118;4121:2;4147:53;4192:7;4183:6;4172:9;4168:22;4147:53;:::i;:::-;4137:63;;4092:118;3698:519;;;;;:::o;4223:943::-;4318:6;4326;4334;4342;4391:3;4379:9;4370:7;4366:23;4362:33;4359:2;;;4398:79;;:::i;:::-;4359:2;4518:1;4543:53;4588:7;4579:6;4568:9;4564:22;4543:53;:::i;:::-;4533:63;;4489:117;4645:2;4671:53;4716:7;4707:6;4696:9;4692:22;4671:53;:::i;:::-;4661:63;;4616:118;4773:2;4799:53;4844:7;4835:6;4824:9;4820:22;4799:53;:::i;:::-;4789:63;;4744:118;4929:2;4918:9;4914:18;4901:32;4960:18;4952:6;4949:30;4946:2;;;4982:79;;:::i;:::-;4946:2;5087:62;5141:7;5132:6;5121:9;5117:22;5087:62;:::i;:::-;5077:72;;4872:287;4349:817;;;;;;;:::o;5172:468::-;5237:6;5245;5294:2;5282:9;5273:7;5269:23;5265:32;5262:2;;;5300:79;;:::i;:::-;5262:2;5420:1;5445:53;5490:7;5481:6;5470:9;5466:22;5445:53;:::i;:::-;5435:63;;5391:117;5547:2;5573:50;5615:7;5606:6;5595:9;5591:22;5573:50;:::i;:::-;5563:60;;5518:115;5252:388;;;;;:::o;5646:474::-;5714:6;5722;5771:2;5759:9;5750:7;5746:23;5742:32;5739:2;;;5777:79;;:::i;:::-;5739:2;5897:1;5922:53;5967:7;5958:6;5947:9;5943:22;5922:53;:::i;:::-;5912:63;;5868:117;6024:2;6050:53;6095:7;6086:6;6075:9;6071:22;6050:53;:::i;:::-;6040:63;;5995:118;5729:391;;;;;:::o;6126:327::-;6184:6;6233:2;6221:9;6212:7;6208:23;6204:32;6201:2;;;6239:79;;:::i;:::-;6201:2;6359:1;6384:52;6428:7;6419:6;6408:9;6404:22;6384:52;:::i;:::-;6374:62;;6330:116;6191:262;;;;:::o;6459:349::-;6528:6;6577:2;6565:9;6556:7;6552:23;6548:32;6545:2;;;6583:79;;:::i;:::-;6545:2;6703:1;6728:63;6783:7;6774:6;6763:9;6759:22;6728:63;:::i;:::-;6718:73;;6674:127;6535:273;;;;:::o;6814:509::-;6883:6;6932:2;6920:9;6911:7;6907:23;6903:32;6900:2;;;6938:79;;:::i;:::-;6900:2;7086:1;7075:9;7071:17;7058:31;7116:18;7108:6;7105:30;7102:2;;;7138:79;;:::i;:::-;7102:2;7243:63;7298:7;7289:6;7278:9;7274:22;7243:63;:::i;:::-;7233:73;;7029:287;6890:433;;;;:::o;7329:329::-;7388:6;7437:2;7425:9;7416:7;7412:23;7408:32;7405:2;;;7443:79;;:::i;:::-;7405:2;7563:1;7588:53;7633:7;7624:6;7613:9;7609:22;7588:53;:::i;:::-;7578:63;;7534:117;7395:263;;;;:::o;7664:179::-;7733:10;7754:46;7796:3;7788:6;7754:46;:::i;:::-;7832:4;7827:3;7823:14;7809:28;;7744:99;;;;:::o;7849:118::-;7936:24;7954:5;7936:24;:::i;:::-;7931:3;7924:37;7914:53;;:::o;8003:732::-;8122:3;8151:54;8199:5;8151:54;:::i;:::-;8221:86;8300:6;8295:3;8221:86;:::i;:::-;8214:93;;8331:56;8381:5;8331:56;:::i;:::-;8410:7;8441:1;8426:284;8451:6;8448:1;8445:13;8426:284;;;8527:6;8521:13;8554:63;8613:3;8598:13;8554:63;:::i;:::-;8547:70;;8640:60;8693:6;8640:60;:::i;:::-;8630:70;;8486:224;8473:1;8470;8466:9;8461:14;;8426:284;;;8430:14;8726:3;8719:10;;8127:608;;;;;;;:::o;8741:109::-;8822:21;8837:5;8822:21;:::i;:::-;8817:3;8810:34;8800:50;;:::o;8856:360::-;8942:3;8970:38;9002:5;8970:38;:::i;:::-;9024:70;9087:6;9082:3;9024:70;:::i;:::-;9017:77;;9103:52;9148:6;9143:3;9136:4;9129:5;9125:16;9103:52;:::i;:::-;9180:29;9202:6;9180:29;:::i;:::-;9175:3;9171:39;9164:46;;8946:270;;;;;:::o;9222:364::-;9310:3;9338:39;9371:5;9338:39;:::i;:::-;9393:71;9457:6;9452:3;9393:71;:::i;:::-;9386:78;;9473:52;9518:6;9513:3;9506:4;9499:5;9495:16;9473:52;:::i;:::-;9550:29;9572:6;9550:29;:::i;:::-;9545:3;9541:39;9534:46;;9314:272;;;;;:::o;9592:377::-;9698:3;9726:39;9759:5;9726:39;:::i;:::-;9781:89;9863:6;9858:3;9781:89;:::i;:::-;9774:96;;9879:52;9924:6;9919:3;9912:4;9905:5;9901:16;9879:52;:::i;:::-;9956:6;9951:3;9947:16;9940:23;;9702:267;;;;;:::o;9975:366::-;10117:3;10138:67;10202:2;10197:3;10138:67;:::i;:::-;10131:74;;10214:93;10303:3;10214:93;:::i;:::-;10332:2;10327:3;10323:12;10316:19;;10121:220;;;:::o;10347:366::-;10489:3;10510:67;10574:2;10569:3;10510:67;:::i;:::-;10503:74;;10586:93;10675:3;10586:93;:::i;:::-;10704:2;10699:3;10695:12;10688:19;;10493:220;;;:::o;10719:366::-;10861:3;10882:67;10946:2;10941:3;10882:67;:::i;:::-;10875:74;;10958:93;11047:3;10958:93;:::i;:::-;11076:2;11071:3;11067:12;11060:19;;10865:220;;;:::o;11091:366::-;11233:3;11254:67;11318:2;11313:3;11254:67;:::i;:::-;11247:74;;11330:93;11419:3;11330:93;:::i;:::-;11448:2;11443:3;11439:12;11432:19;;11237:220;;;:::o;11463:366::-;11605:3;11626:67;11690:2;11685:3;11626:67;:::i;:::-;11619:74;;11702:93;11791:3;11702:93;:::i;:::-;11820:2;11815:3;11811:12;11804:19;;11609:220;;;:::o;11835:366::-;11977:3;11998:67;12062:2;12057:3;11998:67;:::i;:::-;11991:74;;12074:93;12163:3;12074:93;:::i;:::-;12192:2;12187:3;12183:12;12176:19;;11981:220;;;:::o;12207:366::-;12349:3;12370:67;12434:2;12429:3;12370:67;:::i;:::-;12363:74;;12446:93;12535:3;12446:93;:::i;:::-;12564:2;12559:3;12555:12;12548:19;;12353:220;;;:::o;12579:366::-;12721:3;12742:67;12806:2;12801:3;12742:67;:::i;:::-;12735:74;;12818:93;12907:3;12818:93;:::i;:::-;12936:2;12931:3;12927:12;12920:19;;12725:220;;;:::o;12951:366::-;13093:3;13114:67;13178:2;13173:3;13114:67;:::i;:::-;13107:74;;13190:93;13279:3;13190:93;:::i;:::-;13308:2;13303:3;13299:12;13292:19;;13097:220;;;:::o;13323:366::-;13465:3;13486:67;13550:2;13545:3;13486:67;:::i;:::-;13479:74;;13562:93;13651:3;13562:93;:::i;:::-;13680:2;13675:3;13671:12;13664:19;;13469:220;;;:::o;13695:366::-;13837:3;13858:67;13922:2;13917:3;13858:67;:::i;:::-;13851:74;;13934:93;14023:3;13934:93;:::i;:::-;14052:2;14047:3;14043:12;14036:19;;13841:220;;;:::o;14067:366::-;14209:3;14230:67;14294:2;14289:3;14230:67;:::i;:::-;14223:74;;14306:93;14395:3;14306:93;:::i;:::-;14424:2;14419:3;14415:12;14408:19;;14213:220;;;:::o;14439:366::-;14581:3;14602:67;14666:2;14661:3;14602:67;:::i;:::-;14595:74;;14678:93;14767:3;14678:93;:::i;:::-;14796:2;14791:3;14787:12;14780:19;;14585:220;;;:::o;14811:366::-;14953:3;14974:67;15038:2;15033:3;14974:67;:::i;:::-;14967:74;;15050:93;15139:3;15050:93;:::i;:::-;15168:2;15163:3;15159:12;15152:19;;14957:220;;;:::o;15183:366::-;15325:3;15346:67;15410:2;15405:3;15346:67;:::i;:::-;15339:74;;15422:93;15511:3;15422:93;:::i;:::-;15540:2;15535:3;15531:12;15524:19;;15329:220;;;:::o;15555:366::-;15697:3;15718:67;15782:2;15777:3;15718:67;:::i;:::-;15711:74;;15794:93;15883:3;15794:93;:::i;:::-;15912:2;15907:3;15903:12;15896:19;;15701:220;;;:::o;15927:366::-;16069:3;16090:67;16154:2;16149:3;16090:67;:::i;:::-;16083:74;;16166:93;16255:3;16166:93;:::i;:::-;16284:2;16279:3;16275:12;16268:19;;16073:220;;;:::o;16299:366::-;16441:3;16462:67;16526:2;16521:3;16462:67;:::i;:::-;16455:74;;16538:93;16627:3;16538:93;:::i;:::-;16656:2;16651:3;16647:12;16640:19;;16445:220;;;:::o;16671:366::-;16813:3;16834:67;16898:2;16893:3;16834:67;:::i;:::-;16827:74;;16910:93;16999:3;16910:93;:::i;:::-;17028:2;17023:3;17019:12;17012:19;;16817:220;;;:::o;17043:366::-;17185:3;17206:67;17270:2;17265:3;17206:67;:::i;:::-;17199:74;;17282:93;17371:3;17282:93;:::i;:::-;17400:2;17395:3;17391:12;17384:19;;17189:220;;;:::o;17415:366::-;17557:3;17578:67;17642:2;17637:3;17578:67;:::i;:::-;17571:74;;17654:93;17743:3;17654:93;:::i;:::-;17772:2;17767:3;17763:12;17756:19;;17561:220;;;:::o;17787:366::-;17929:3;17950:67;18014:2;18009:3;17950:67;:::i;:::-;17943:74;;18026:93;18115:3;18026:93;:::i;:::-;18144:2;18139:3;18135:12;18128:19;;17933:220;;;:::o;18159:398::-;18318:3;18339:83;18420:1;18415:3;18339:83;:::i;:::-;18332:90;;18431:93;18520:3;18431:93;:::i;:::-;18549:1;18544:3;18540:11;18533:18;;18322:235;;;:::o;18563:366::-;18705:3;18726:67;18790:2;18785:3;18726:67;:::i;:::-;18719:74;;18802:93;18891:3;18802:93;:::i;:::-;18920:2;18915:3;18911:12;18904:19;;18709:220;;;:::o;18935:366::-;19077:3;19098:67;19162:2;19157:3;19098:67;:::i;:::-;19091:74;;19174:93;19263:3;19174:93;:::i;:::-;19292:2;19287:3;19283:12;19276:19;;19081:220;;;:::o;19307:366::-;19449:3;19470:67;19534:2;19529:3;19470:67;:::i;:::-;19463:74;;19546:93;19635:3;19546:93;:::i;:::-;19664:2;19659:3;19655:12;19648:19;;19453:220;;;:::o;19679:366::-;19821:3;19842:67;19906:2;19901:3;19842:67;:::i;:::-;19835:74;;19918:93;20007:3;19918:93;:::i;:::-;20036:2;20031:3;20027:12;20020:19;;19825:220;;;:::o;20051:366::-;20193:3;20214:67;20278:2;20273:3;20214:67;:::i;:::-;20207:74;;20290:93;20379:3;20290:93;:::i;:::-;20408:2;20403:3;20399:12;20392:19;;20197:220;;;:::o;20423:108::-;20500:24;20518:5;20500:24;:::i;:::-;20495:3;20488:37;20478:53;;:::o;20537:118::-;20624:24;20642:5;20624:24;:::i;:::-;20619:3;20612:37;20602:53;;:::o;20661:435::-;20841:3;20863:95;20954:3;20945:6;20863:95;:::i;:::-;20856:102;;20975:95;21066:3;21057:6;20975:95;:::i;:::-;20968:102;;21087:3;21080:10;;20845:251;;;;;:::o;21102:379::-;21286:3;21308:147;21451:3;21308:147;:::i;:::-;21301:154;;21472:3;21465:10;;21290:191;;;:::o;21487:222::-;21580:4;21618:2;21607:9;21603:18;21595:26;;21631:71;21699:1;21688:9;21684:17;21675:6;21631:71;:::i;:::-;21585:124;;;;:::o;21715:640::-;21910:4;21948:3;21937:9;21933:19;21925:27;;21962:71;22030:1;22019:9;22015:17;22006:6;21962:71;:::i;:::-;22043:72;22111:2;22100:9;22096:18;22087:6;22043:72;:::i;:::-;22125;22193:2;22182:9;22178:18;22169:6;22125:72;:::i;:::-;22244:9;22238:4;22234:20;22229:2;22218:9;22214:18;22207:48;22272:76;22343:4;22334:6;22272:76;:::i;:::-;22264:84;;21915:440;;;;;;;:::o;22361:373::-;22504:4;22542:2;22531:9;22527:18;22519:26;;22591:9;22585:4;22581:20;22577:1;22566:9;22562:17;22555:47;22619:108;22722:4;22713:6;22619:108;:::i;:::-;22611:116;;22509:225;;;;:::o;22740:210::-;22827:4;22865:2;22854:9;22850:18;22842:26;;22878:65;22940:1;22929:9;22925:17;22916:6;22878:65;:::i;:::-;22832:118;;;;:::o;22956:313::-;23069:4;23107:2;23096:9;23092:18;23084:26;;23156:9;23150:4;23146:20;23142:1;23131:9;23127:17;23120:47;23184:78;23257:4;23248:6;23184:78;:::i;:::-;23176:86;;23074:195;;;;:::o;23275:419::-;23441:4;23479:2;23468:9;23464:18;23456:26;;23528:9;23522:4;23518:20;23514:1;23503:9;23499:17;23492:47;23556:131;23682:4;23556:131;:::i;:::-;23548:139;;23446:248;;;:::o;23700:419::-;23866:4;23904:2;23893:9;23889:18;23881:26;;23953:9;23947:4;23943:20;23939:1;23928:9;23924:17;23917:47;23981:131;24107:4;23981:131;:::i;:::-;23973:139;;23871:248;;;:::o;24125:419::-;24291:4;24329:2;24318:9;24314:18;24306:26;;24378:9;24372:4;24368:20;24364:1;24353:9;24349:17;24342:47;24406:131;24532:4;24406:131;:::i;:::-;24398:139;;24296:248;;;:::o;24550:419::-;24716:4;24754:2;24743:9;24739:18;24731:26;;24803:9;24797:4;24793:20;24789:1;24778:9;24774:17;24767:47;24831:131;24957:4;24831:131;:::i;:::-;24823:139;;24721:248;;;:::o;24975:419::-;25141:4;25179:2;25168:9;25164:18;25156:26;;25228:9;25222:4;25218:20;25214:1;25203:9;25199:17;25192:47;25256:131;25382:4;25256:131;:::i;:::-;25248:139;;25146:248;;;:::o;25400:419::-;25566:4;25604:2;25593:9;25589:18;25581:26;;25653:9;25647:4;25643:20;25639:1;25628:9;25624:17;25617:47;25681:131;25807:4;25681:131;:::i;:::-;25673:139;;25571:248;;;:::o;25825:419::-;25991:4;26029:2;26018:9;26014:18;26006:26;;26078:9;26072:4;26068:20;26064:1;26053:9;26049:17;26042:47;26106:131;26232:4;26106:131;:::i;:::-;26098:139;;25996:248;;;:::o;26250:419::-;26416:4;26454:2;26443:9;26439:18;26431:26;;26503:9;26497:4;26493:20;26489:1;26478:9;26474:17;26467:47;26531:131;26657:4;26531:131;:::i;:::-;26523:139;;26421:248;;;:::o;26675:419::-;26841:4;26879:2;26868:9;26864:18;26856:26;;26928:9;26922:4;26918:20;26914:1;26903:9;26899:17;26892:47;26956:131;27082:4;26956:131;:::i;:::-;26948:139;;26846:248;;;:::o;27100:419::-;27266:4;27304:2;27293:9;27289:18;27281:26;;27353:9;27347:4;27343:20;27339:1;27328:9;27324:17;27317:47;27381:131;27507:4;27381:131;:::i;:::-;27373:139;;27271:248;;;:::o;27525:419::-;27691:4;27729:2;27718:9;27714:18;27706:26;;27778:9;27772:4;27768:20;27764:1;27753:9;27749:17;27742:47;27806:131;27932:4;27806:131;:::i;:::-;27798:139;;27696:248;;;:::o;27950:419::-;28116:4;28154:2;28143:9;28139:18;28131:26;;28203:9;28197:4;28193:20;28189:1;28178:9;28174:17;28167:47;28231:131;28357:4;28231:131;:::i;:::-;28223:139;;28121:248;;;:::o;28375:419::-;28541:4;28579:2;28568:9;28564:18;28556:26;;28628:9;28622:4;28618:20;28614:1;28603:9;28599:17;28592:47;28656:131;28782:4;28656:131;:::i;:::-;28648:139;;28546:248;;;:::o;28800:419::-;28966:4;29004:2;28993:9;28989:18;28981:26;;29053:9;29047:4;29043:20;29039:1;29028:9;29024:17;29017:47;29081:131;29207:4;29081:131;:::i;:::-;29073:139;;28971:248;;;:::o;29225:419::-;29391:4;29429:2;29418:9;29414:18;29406:26;;29478:9;29472:4;29468:20;29464:1;29453:9;29449:17;29442:47;29506:131;29632:4;29506:131;:::i;:::-;29498:139;;29396:248;;;:::o;29650:419::-;29816:4;29854:2;29843:9;29839:18;29831:26;;29903:9;29897:4;29893:20;29889:1;29878:9;29874:17;29867:47;29931:131;30057:4;29931:131;:::i;:::-;29923:139;;29821:248;;;:::o;30075:419::-;30241:4;30279:2;30268:9;30264:18;30256:26;;30328:9;30322:4;30318:20;30314:1;30303:9;30299:17;30292:47;30356:131;30482:4;30356:131;:::i;:::-;30348:139;;30246:248;;;:::o;30500:419::-;30666:4;30704:2;30693:9;30689:18;30681:26;;30753:9;30747:4;30743:20;30739:1;30728:9;30724:17;30717:47;30781:131;30907:4;30781:131;:::i;:::-;30773:139;;30671:248;;;:::o;30925:419::-;31091:4;31129:2;31118:9;31114:18;31106:26;;31178:9;31172:4;31168:20;31164:1;31153:9;31149:17;31142:47;31206:131;31332:4;31206:131;:::i;:::-;31198:139;;31096:248;;;:::o;31350:419::-;31516:4;31554:2;31543:9;31539:18;31531:26;;31603:9;31597:4;31593:20;31589:1;31578:9;31574:17;31567:47;31631:131;31757:4;31631:131;:::i;:::-;31623:139;;31521:248;;;:::o;31775:419::-;31941:4;31979:2;31968:9;31964:18;31956:26;;32028:9;32022:4;32018:20;32014:1;32003:9;31999:17;31992:47;32056:131;32182:4;32056:131;:::i;:::-;32048:139;;31946:248;;;:::o;32200:419::-;32366:4;32404:2;32393:9;32389:18;32381:26;;32453:9;32447:4;32443:20;32439:1;32428:9;32424:17;32417:47;32481:131;32607:4;32481:131;:::i;:::-;32473:139;;32371:248;;;:::o;32625:419::-;32791:4;32829:2;32818:9;32814:18;32806:26;;32878:9;32872:4;32868:20;32864:1;32853:9;32849:17;32842:47;32906:131;33032:4;32906:131;:::i;:::-;32898:139;;32796:248;;;:::o;33050:419::-;33216:4;33254:2;33243:9;33239:18;33231:26;;33303:9;33297:4;33293:20;33289:1;33278:9;33274:17;33267:47;33331:131;33457:4;33331:131;:::i;:::-;33323:139;;33221:248;;;:::o;33475:419::-;33641:4;33679:2;33668:9;33664:18;33656:26;;33728:9;33722:4;33718:20;33714:1;33703:9;33699:17;33692:47;33756:131;33882:4;33756:131;:::i;:::-;33748:139;;33646:248;;;:::o;33900:419::-;34066:4;34104:2;34093:9;34089:18;34081:26;;34153:9;34147:4;34143:20;34139:1;34128:9;34124:17;34117:47;34181:131;34307:4;34181:131;:::i;:::-;34173:139;;34071:248;;;:::o;34325:419::-;34491:4;34529:2;34518:9;34514:18;34506:26;;34578:9;34572:4;34568:20;34564:1;34553:9;34549:17;34542:47;34606:131;34732:4;34606:131;:::i;:::-;34598:139;;34496:248;;;:::o;34750:222::-;34843:4;34881:2;34870:9;34866:18;34858:26;;34894:71;34962:1;34951:9;34947:17;34938:6;34894:71;:::i;:::-;34848:124;;;;:::o;34978:129::-;35012:6;35039:20;;:::i;:::-;35029:30;;35068:33;35096:4;35088:6;35068:33;:::i;:::-;35019:88;;;:::o;35113:75::-;35146:6;35179:2;35173:9;35163:19;;35153:35;:::o;35194:307::-;35255:4;35345:18;35337:6;35334:30;35331:2;;;35367:18;;:::i;:::-;35331:2;35405:29;35427:6;35405:29;:::i;:::-;35397:37;;35489:4;35483;35479:15;35471:23;;35260:241;;;:::o;35507:308::-;35569:4;35659:18;35651:6;35648:30;35645:2;;;35681:18;;:::i;:::-;35645:2;35719:29;35741:6;35719:29;:::i;:::-;35711:37;;35803:4;35797;35793:15;35785:23;;35574:241;;;:::o;35821:132::-;35888:4;35911:3;35903:11;;35941:4;35936:3;35932:14;35924:22;;35893:60;;;:::o;35959:114::-;36026:6;36060:5;36054:12;36044:22;;36033:40;;;:::o;36079:98::-;36130:6;36164:5;36158:12;36148:22;;36137:40;;;:::o;36183:99::-;36235:6;36269:5;36263:12;36253:22;;36242:40;;;:::o;36288:113::-;36358:4;36390;36385:3;36381:14;36373:22;;36363:38;;;:::o;36407:184::-;36506:11;36540:6;36535:3;36528:19;36580:4;36575:3;36571:14;36556:29;;36518:73;;;;:::o;36597:168::-;36680:11;36714:6;36709:3;36702:19;36754:4;36749:3;36745:14;36730:29;;36692:73;;;;:::o;36771:147::-;36872:11;36909:3;36894:18;;36884:34;;;;:::o;36924:169::-;37008:11;37042:6;37037:3;37030:19;37082:4;37077:3;37073:14;37058:29;;37020:73;;;;:::o;37099:148::-;37201:11;37238:3;37223:18;;37213:34;;;;:::o;37253:305::-;37293:3;37312:20;37330:1;37312:20;:::i;:::-;37307:25;;37346:20;37364:1;37346:20;:::i;:::-;37341:25;;37500:1;37432:66;37428:74;37425:1;37422:81;37419:2;;;37506:18;;:::i;:::-;37419:2;37550:1;37547;37543:9;37536:16;;37297:261;;;;:::o;37564:185::-;37604:1;37621:20;37639:1;37621:20;:::i;:::-;37616:25;;37655:20;37673:1;37655:20;:::i;:::-;37650:25;;37694:1;37684:2;;37699:18;;:::i;:::-;37684:2;37741:1;37738;37734:9;37729:14;;37606:143;;;;:::o;37755:348::-;37795:7;37818:20;37836:1;37818:20;:::i;:::-;37813:25;;37852:20;37870:1;37852:20;:::i;:::-;37847:25;;38040:1;37972:66;37968:74;37965:1;37962:81;37957:1;37950:9;37943:17;37939:105;37936:2;;;38047:18;;:::i;:::-;37936:2;38095:1;38092;38088:9;38077:20;;37803:300;;;;:::o;38109:191::-;38149:4;38169:20;38187:1;38169:20;:::i;:::-;38164:25;;38203:20;38221:1;38203:20;:::i;:::-;38198:25;;38242:1;38239;38236:8;38233:2;;;38247:18;;:::i;:::-;38233:2;38292:1;38289;38285:9;38277:17;;38154:146;;;;:::o;38306:96::-;38343:7;38372:24;38390:5;38372:24;:::i;:::-;38361:35;;38351:51;;;:::o;38408:90::-;38442:7;38485:5;38478:13;38471:21;38460:32;;38450:48;;;:::o;38504:149::-;38540:7;38580:66;38573:5;38569:78;38558:89;;38548:105;;;:::o;38659:126::-;38696:7;38736:42;38729:5;38725:54;38714:65;;38704:81;;;:::o;38791:77::-;38828:7;38857:5;38846:16;;38836:32;;;:::o;38874:154::-;38958:6;38953:3;38948;38935:30;39020:1;39011:6;39006:3;39002:16;38995:27;38925:103;;;:::o;39034:307::-;39102:1;39112:113;39126:6;39123:1;39120:13;39112:113;;;39211:1;39206:3;39202:11;39196:18;39192:1;39187:3;39183:11;39176:39;39148:2;39145:1;39141:10;39136:15;;39112:113;;;39243:6;39240:1;39237:13;39234:2;;;39323:1;39314:6;39309:3;39305:16;39298:27;39234:2;39083:258;;;;:::o;39347:320::-;39391:6;39428:1;39422:4;39418:12;39408:22;;39475:1;39469:4;39465:12;39496:18;39486:2;;39552:4;39544:6;39540:17;39530:27;;39486:2;39614;39606:6;39603:14;39583:18;39580:38;39577:2;;;39633:18;;:::i;:::-;39577:2;39398:269;;;;:::o;39673:281::-;39756:27;39778:4;39756:27;:::i;:::-;39748:6;39744:40;39886:6;39874:10;39871:22;39850:18;39838:10;39835:34;39832:62;39829:2;;;39897:18;;:::i;:::-;39829:2;39937:10;39933:2;39926:22;39716:238;;;:::o;39960:233::-;39999:3;40022:24;40040:5;40022:24;:::i;:::-;40013:33;;40068:66;40061:5;40058:77;40055:2;;;40138:18;;:::i;:::-;40055:2;40185:1;40178:5;40174:13;40167:20;;40003:190;;;:::o;40199:176::-;40231:1;40248:20;40266:1;40248:20;:::i;:::-;40243:25;;40282:20;40300:1;40282:20;:::i;:::-;40277:25;;40321:1;40311:2;;40326:18;;:::i;:::-;40311:2;40367:1;40364;40360:9;40355:14;;40233:142;;;;:::o;40381:180::-;40429:77;40426:1;40419:88;40526:4;40523:1;40516:15;40550:4;40547:1;40540:15;40567:180;40615:77;40612:1;40605:88;40712:4;40709:1;40702:15;40736:4;40733:1;40726:15;40753:180;40801:77;40798:1;40791:88;40898:4;40895:1;40888:15;40922:4;40919:1;40912:15;40939:180;40987:77;40984:1;40977:88;41084:4;41081:1;41074:15;41108:4;41105:1;41098:15;41125:180;41173:77;41170:1;41163:88;41270:4;41267:1;41260:15;41294:4;41291:1;41284:15;41311:180;41359:77;41356:1;41349:88;41456:4;41453:1;41446:15;41480:4;41477:1;41470:15;41497:117;41606:1;41603;41596:12;41620:117;41729:1;41726;41719:12;41743:117;41852:1;41849;41842:12;41866:117;41975:1;41972;41965:12;41989:102;42030:6;42081:2;42077:7;42072:2;42065:5;42061:14;42057:28;42047:38;;42037:54;;;:::o;42097:230::-;42237:34;42233:1;42225:6;42221:14;42214:58;42306:13;42301:2;42293:6;42289:15;42282:38;42203:124;:::o;42333:237::-;42473:34;42469:1;42461:6;42457:14;42450:58;42542:20;42537:2;42529:6;42525:15;42518:45;42439:131;:::o;42576:225::-;42716:34;42712:1;42704:6;42700:14;42693:58;42785:8;42780:2;42772:6;42768:15;42761:33;42682:119;:::o;42807:178::-;42947:30;42943:1;42935:6;42931:14;42924:54;42913:72;:::o;42991:223::-;43131:34;43127:1;43119:6;43115:14;43108:58;43200:6;43195:2;43187:6;43183:15;43176:31;43097:117;:::o;43220:175::-;43360:27;43356:1;43348:6;43344:14;43337:51;43326:69;:::o;43401:173::-;43541:25;43537:1;43529:6;43525:14;43518:49;43507:67;:::o;43580:181::-;43720:33;43716:1;43708:6;43704:14;43697:57;43686:75;:::o;43767:231::-;43907:34;43903:1;43895:6;43891:14;43884:58;43976:14;43971:2;43963:6;43959:15;43952:39;43873:125;:::o;44004:173::-;44144:25;44140:1;44132:6;44128:14;44121:49;44110:67;:::o;44183:243::-;44323:34;44319:1;44311:6;44307:14;44300:58;44392:26;44387:2;44379:6;44375:15;44368:51;44289:137;:::o;44432:229::-;44572:34;44568:1;44560:6;44556:14;44549:58;44641:12;44636:2;44628:6;44624:15;44617:37;44538:123;:::o;44667:228::-;44807:34;44803:1;44795:6;44791:14;44784:58;44876:11;44871:2;44863:6;44859:15;44852:36;44773:122;:::o;44901:169::-;45041:21;45037:1;45029:6;45025:14;45018:45;45007:63;:::o;45076:182::-;45216:34;45212:1;45204:6;45200:14;45193:58;45182:76;:::o;45264:231::-;45404:34;45400:1;45392:6;45388:14;45381:58;45473:14;45468:2;45460:6;45456:15;45449:39;45370:125;:::o;45501:182::-;45641:34;45637:1;45629:6;45625:14;45618:58;45607:76;:::o;45689:166::-;45829:18;45825:1;45817:6;45813:14;45806:42;45795:60;:::o;45861:228::-;46001:34;45997:1;45989:6;45985:14;45978:58;46070:11;46065:2;46057:6;46053:15;46046:36;45967:122;:::o;46095:234::-;46235:34;46231:1;46223:6;46219:14;46212:58;46304:17;46299:2;46291:6;46287:15;46280:42;46201:128;:::o;46335:220::-;46475:34;46471:1;46463:6;46459:14;46452:58;46544:3;46539:2;46531:6;46527:15;46520:28;46441:114;:::o;46561:224::-;46701:34;46697:1;46689:6;46685:14;46678:58;46770:7;46765:2;46757:6;46753:15;46746:32;46667:118;:::o;46791:114::-;46897:8;:::o;46911:166::-;47051:18;47047:1;47039:6;47035:14;47028:42;47017:60;:::o;47083:236::-;47223:34;47219:1;47211:6;47207:14;47200:58;47292:19;47287:2;47279:6;47275:15;47268:44;47189:130;:::o;47325:231::-;47465:34;47461:1;47453:6;47449:14;47442:58;47534:14;47529:2;47521:6;47517:15;47510:39;47431:125;:::o;47562:181::-;47702:33;47698:1;47690:6;47686:14;47679:57;47668:75;:::o;47749:174::-;47889:26;47885:1;47877:6;47873:14;47866:50;47855:68;:::o;47929:122::-;48002:24;48020:5;48002:24;:::i;:::-;47995:5;47992:35;47982:2;;48041:1;48038;48031:12;47982:2;47972:79;:::o;48057:116::-;48127:21;48142:5;48127:21;:::i;:::-;48120:5;48117:32;48107:2;;48163:1;48160;48153:12;48107:2;48097:76;:::o;48179:120::-;48251:23;48268:5;48251:23;:::i;:::-;48244:5;48241:34;48231:2;;48289:1;48286;48279:12;48231:2;48221:78;:::o;48305:122::-;48378:24;48396:5;48378:24;:::i;:::-;48371:5;48368:35;48358:2;;48417:1;48414;48407:12;48358:2;48348:79;:::o
Swarm Source
ipfs://c4093e5da433ce874d0d458e02c6ddb1bdee2bc1c500c46a479eb1840599c685
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.