Overview
AVAX Balance
AVAX Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 868 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 60489413 | 5 days ago | IN | 0 AVAX | 0.00003206 | ||||
Set Approval For... | 60489407 | 5 days ago | IN | 0 AVAX | 0.00003643 | ||||
Set Approval For... | 57463503 | 64 days ago | IN | 0 AVAX | 0.0001684 | ||||
Set Approval For... | 57417835 | 65 days ago | IN | 0 AVAX | 0.00003643 | ||||
Set Approval For... | 55418817 | 106 days ago | IN | 0 AVAX | 0.00004625 | ||||
Set Approval For... | 52713445 | 168 days ago | IN | 0 AVAX | 0.00080154 | ||||
Set Approval For... | 50271820 | 227 days ago | IN | 0 AVAX | 0.00127212 | ||||
Set Approval For... | 48950912 | 259 days ago | IN | 0 AVAX | 0.0011796 | ||||
Set Approval For... | 48873722 | 261 days ago | IN | 0 AVAX | 0.0011796 | ||||
Set Approval For... | 48846768 | 261 days ago | IN | 0 AVAX | 0.00118457 | ||||
Set Approval For... | 46381471 | 320 days ago | IN | 0 AVAX | 0.00122586 | ||||
Safe Transfer Fr... | 45287913 | 347 days ago | IN | 0 AVAX | 0.00303295 | ||||
Set Approval For... | 44596706 | 364 days ago | IN | 0 AVAX | 0.00077239 | ||||
Set Approval For... | 44311289 | 371 days ago | IN | 0 AVAX | 0.0011796 | ||||
Safe Transfer Fr... | 43546512 | 389 days ago | IN | 0 AVAX | 0.00295125 | ||||
Set Approval For... | 43206118 | 397 days ago | IN | 0 AVAX | 0.0011796 | ||||
Set Approval For... | 42882838 | 405 days ago | IN | 0 AVAX | 0.00138525 | ||||
Set Approval For... | 42882571 | 405 days ago | IN | 0 AVAX | 0.00150341 | ||||
Set Approval For... | 42735250 | 408 days ago | IN | 0 AVAX | 0.00122586 | ||||
Set Approval For... | 42395646 | 416 days ago | IN | 0 AVAX | 0.00122586 | ||||
Set Approval For... | 42243401 | 420 days ago | IN | 0 AVAX | 0.00122586 | ||||
Set Approval For... | 41596346 | 435 days ago | IN | 0 AVAX | 0.00122586 | ||||
Set Approval For... | 41412067 | 440 days ago | IN | 0 AVAX | 0.00077239 | ||||
Set Approval For... | 41135483 | 446 days ago | IN | 0 AVAX | 0.00115647 | ||||
Set Approval For... | 41000285 | 449 days ago | IN | 0 AVAX | 0.00127212 |
Latest 1 internal transaction
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
17288270 | 1014 days ago | 142 AVAX |
Loading...
Loading
Contract Name:
BeenzCommunityCollection
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at snowscan.xyz on 2022-07-11 */ // File: Beenz Community Collection.sol // File: contracts/ClampedRandomizer.sol //SPDX-License-Identifier: MIT pragma solidity ^0.8.7; contract ClampedRandomizer { uint256 private _scopeIndex = 0; //Clamping cache for random TokenID generation in the anti-sniping algo uint256 private immutable _scopeCap; //Size of initial randomized number pool & max generated value (zero indexed) mapping(uint256 => uint256) _swappedIDs; //TokenID cache for random TokenID generation in the anti-sniping algo constructor(uint256 scopeCap) { _scopeCap = scopeCap; } function _genClampedNonce() internal virtual returns(uint256) { uint256 scope = _scopeCap-_scopeIndex; uint256 swap; uint256 result; uint256 i = randomNumber() % scope; //Setup the value to swap in for the selected number if (_swappedIDs[scope-1] == 0){ swap = scope-1; } else { swap = _swappedIDs[scope-1]; } //Select a random number, swap it out with an unselected one then shorten the selection range by 1 if (_swappedIDs[i] == 0){ result = i; _swappedIDs[i] = swap; } else { result = _swappedIDs[i]; _swappedIDs[i] = swap; } _scopeIndex++; return result; } function randomNumber() internal view returns(uint256){ return uint256(keccak256(abi.encodePacked(block.difficulty, block.timestamp))); } } // 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; // solhint-disable-next-line no-inline-assembly 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" ); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) private 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 // solhint-disable-next-line no-inline-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 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) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant alphabet = "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] = alphabet[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}. Empty by default, can be overriden * in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } function _baseExtension() 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(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert( "ERC721: transfer to non ERC721Receiver implementer" ); } else { // solhint-disable-next-line no-inline-assembly 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` 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 {} } // 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/token/ERC721/extensions/[email protected] pragma solidity ^0.8.0; /** * @dev ERC721 token with storage based token URI management. */ abstract contract ERC721URIStorage is ERC721 { using Strings for uint256; // Optional mapping for token URIs mapping(uint256 => string) private _tokenURIs; /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721URIStorage: URI query for nonexistent token" ); string memory base = _baseURI(); string memory ext = _baseExtension(); return string(abi.encodePacked(base, (tokenId).toString(), ext)); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require( _exists(tokenId), "ERC721URIStorage: URI set of nonexistent token" ); _tokenURIs[tokenId] = _tokenURI; } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual override { super._burn(tokenId); if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } } } // 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/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() { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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" ); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] pragma solidity ^0.8.0; /** * @title ERC721 Burnable Token * @dev ERC721 Token that can be irreversibly burned (destroyed). */ abstract contract ERC721Burnable is Context, ERC721 { /** * @dev Burns `tokenId`. See {ERC721-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual { //solhint-disable-next-line max-line-length require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved" ); _burn(tokenId); } } // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented or decremented by one. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } } pragma solidity ^0.8.7; /** * @dev Interface for the NFT Royalty Standard */ interface IERC2981 is IERC165 { /** * @dev Called with the sale price to determine how much royalty is owed and to whom. * @param tokenId - the NFT asset queried for royalty information * @param salePrice - the sale price of the NFT asset specified by `tokenId` * @return receiver - address of who should be sent the royalty payment * @return royaltyAmount - the royalty payment amount for `salePrice` */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); } interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(address recipient, uint256 amount) external returns (bool); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 amount) external returns (bool); function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); } library SafeMath { function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } pragma solidity ^0.8.0; contract BeenzCommunityCollection is ERC721, ERC721Enumerable, ERC721URIStorage, IERC2981, Pausable, Ownable, ERC721Burnable, ClampedRandomizer { modifier onlyDevs { require(devFees[msg.sender].percent > 0 , "Dev Only: caller is not the developer"); _; } event WithdrawFees(address indexed devAddress, uint256 amount); event WithdrawWrongTokens(address indexed devAddress,address tokenAddress, uint256 amount); event WithdrawWrongNfts(address indexed devAddress,address tokenAddress, uint256 tokenId); event Migration(address indexed _to, uint256 indexed _tokenId); using Counters for Counters.Counter; using SafeMath for uint256; using Address for address; address public royaltyAddress = 0xA6F29Ab1Bf8c731Bc99E5CBacDF4F46409BABa49; string public baseURI; string public baseExtension = ".json"; // VARIABLES uint256 public maxSupply = 142; uint256 public maxPerTx = 1; uint256 public maxPerPerson = 1; uint256 public price = 1 ether; uint256 public royalty = 750; // COLLECTED FESS struct DevFee { uint256 percent; uint256 amount; } mapping(address => DevFee) public devFees; address[] private devList; bool public whitelistedOnly = true; mapping(address => uint256) public whiteListed; constructor(address[] memory _devList, uint256[] memory _fees) ERC721("BeenzCommunityCollection", "BZCC") ClampedRandomizer(maxSupply) { require(_devList.length == _fees.length, "Error: invalid data"); uint256 totalFee = 0; for(uint8 i = 0; i <_devList.length; i++) { devList.push(_devList[i]); devFees[_devList[i]] = DevFee(_fees[i], 0); totalFee += _fees[i]; } require(totalFee == 10000,"Error: invalid total fee"); _pause(); } function _baseExtension() internal view override returns (string memory) { return baseExtension; } function _baseURI() internal view override returns (string memory) { return baseURI; } function splitFees(uint256 sentAmount) internal { for(uint8 i = 0;i < devList.length; i++) { address devAddress = devList[i]; uint256 devFee = devFees[devAddress].percent; uint256 devFeeAmount = sentAmount.mul(devFee).div(10000); devFees[devAddress].amount += devFeeAmount; } } function mint(uint256 amount) public payable whenNotPaused { uint256 supply = totalSupply(); require(amount > 0 && amount <= maxPerTx,"Error: max par tx limit"); require(balanceOf(msg.sender) + 1 <= maxPerPerson,"Error: max per address limit"); require(msg.value == price * amount, "Error: invalid price"); require(supply + amount - 1 < maxSupply, "Error: cannot mint more than total supply"); if(whitelistedOnly) require(whiteListed[msg.sender] >= amount,"Error: you are not whitelisted or amount is higher than limit"); for (uint256 i = 0; i < amount; i++) { internalMint(msg.sender); if(whitelistedOnly) whiteListed[msg.sender] -= 1; } splitFees(msg.value); } function tokenURI(uint256 tokenId) public view override(ERC721, ERC721URIStorage) returns (string memory) { return super.tokenURI(tokenId); } function Owned(address _owner) external view returns (uint256[] memory) { uint256 tokenCount = balanceOf(_owner); if (tokenCount == 0) { return new uint256[](0); } else { uint256[] memory result = new uint256[](tokenCount); uint256 index; for (index = 0; index < tokenCount; index++) { result[index] = tokenOfOwnerByIndex(_owner, index); } return result; } } function tokenExists(uint256 _id) external view returns (bool) { return (_exists(_id)); } function royaltyInfo(uint256, uint256 _salePrice) external view override returns (address receiver, uint256 royaltyAmount) { return (royaltyAddress, (_salePrice * royalty) / 10000); } //dev function whiteList(address[] memory _addressList, uint256 count) external onlyOwner { require(_addressList.length > 0,"Error: list is empty"); for(uint256 i = 0;i < _addressList.length; i++) { require(_addressList[i] != address(0), "Address cannot be 0."); whiteListed[_addressList[i]] = count; } } function removeWhiteList(address[] memory addressList) external onlyOwner { require(addressList.length > 0,"Error: list is empty"); for(uint256 i = 0;i<addressList.length;i++) whiteListed[addressList[i]] = 0; } function updateWhitelistStatus() external onlyOwner { whitelistedOnly = !whitelistedOnly; } function updatePausedStatus() external onlyOwner { paused() ? _unpause() : _pause(); } function setMaxPerPerson(uint256 newMaxBuy) external onlyOwner { maxPerPerson = newMaxBuy; } function setMaxPerTx(uint256 newMaxBuy) external onlyOwner { maxPerTx = newMaxBuy; } function setBaseURI(string memory newBaseURI) external onlyOwner { baseURI = newBaseURI; } function setPrice(uint256 newPrice) external onlyOwner { price = newPrice; } function setURI(uint256 tokenId, string memory uri) external onlyOwner { _setTokenURI(tokenId, uri); } function setRoyalty(uint16 _royalty) external onlyOwner { require(_royalty >= 0, "Royalty must be greater than or equal to 0%"); require(_royalty <= 750, "Royalty must be greater than or equal to 7,5%" ); royalty = _royalty; } function setRoyaltyAddress(address _royaltyAddress) external onlyOwner { royaltyAddress = _royaltyAddress; } //Overrides function internalMint(address to) internal { uint256 tokenId = _genClampedNonce() + 1; _safeMint(to, tokenId); } function safeMint(address to) public onlyOwner { internalMint(to); } function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable, IERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal override(ERC721, ERC721Enumerable) whenNotPaused { super._beforeTokenTransfer(from, to, tokenId); } function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) { super._burn(tokenId); } /// @dev withdraw fees function withdraw() external onlyDevs { uint256 amount = devFees[msg.sender].amount; require(amount > 0,"Error: no fees :("); payable(msg.sender).transfer(amount); devFees[msg.sender].amount = 0; emit WithdrawFees(msg.sender,amount); } /// @dev emergency withdraw contract balance to the contract owner function emergencyWithdraw() external onlyOwner { uint256 amount = address(this).balance; require(amount > 0,"Error: no fees :("); payable(msg.sender).transfer(amount); for(uint8 i = 0;i < devList.length; i++) { address devAddress = devList[i]; devFees[devAddress].amount = 0; } emit WithdrawFees(msg.sender,amount); } /// @dev withdraw ERC20 tokens function withdrawTokens(address _tokenContract) external onlyOwner { IERC20 tokenContract = IERC20(_tokenContract); uint256 _amount = tokenContract.balanceOf(address(this)); tokenContract.transfer(owner(), _amount); emit WithdrawWrongTokens(msg.sender,_tokenContract,_amount); } function airdropsToken(address[] memory _addr, uint256 amount) public onlyOwner { for (uint256 i = 0; i < _addr.length; i++) { airdropTokenInternal(amount,_addr[i]); } } function airdropTokenInternal(uint256 amount, address _addr) internal { for (uint256 i = 0; i < amount; i++) { internalMint(_addr); } } /// @dev withdraw ERC721 tokens to the contract owner function withdrawNFT(address _tokenContract, uint256[] memory _id) external onlyOwner { IERC721 tokenContract = IERC721(_tokenContract); for (uint256 i = 0; i < _id.length; i++) { tokenContract.safeTransferFrom(address(this), owner(), _id[i]); emit WithdrawWrongNfts(msg.sender,_tokenContract,_id[i]); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address[]","name":"_devList","type":"address[]"},{"internalType":"uint256[]","name":"_fees","type":"uint256[]"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"Migration","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"devAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"WithdrawFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"devAddress","type":"address"},{"indexed":false,"internalType":"address","name":"tokenAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"WithdrawWrongNfts","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"devAddress","type":"address"},{"indexed":false,"internalType":"address","name":"tokenAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"WithdrawWrongTokens","type":"event"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"Owned","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addr","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"airdropsToken","outputs":[],"stateMutability":"nonpayable","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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"devFees","outputs":[{"internalType":"uint256","name":"percent","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emergencyWithdraw","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":[],"name":"maxPerPerson","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addressList","type":"address[]"}],"name":"removeWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"royalty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltyAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"safeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxBuy","type":"uint256"}],"name":"setMaxPerPerson","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxBuy","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_royalty","type":"uint16"}],"name":"setRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_royaltyAddress","type":"address"}],"name":"setRoyaltyAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"uri","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"tokenExists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"updatePausedStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"updateWhitelistStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addressList","type":"address[]"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"whiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whiteListed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistedOnly","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenContract","type":"address"},{"internalType":"uint256[]","name":"_id","type":"uint256[]"}],"name":"withdrawNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenContract","type":"address"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6000600c55600e80546001600160a01b03191673a6f29ab1bf8c731bc99e5cbacdf4f46409baba4917905560e0604052600560a081905264173539b7b760d91b60c090815262000053916010919062000415565b50608e601155600160128190556013819055670de0b6b3a76400006014556102ee6015556018805460ff191690911790553480156200009157600080fd5b506040516200424338038062004243833981016040819052620000b4916200059d565b601154604080518082018252601881527f4265656e7a436f6d6d756e697479436f6c6c656374696f6e0000000000000000602080830191825283518085019094526004845263425a434360e01b908401528151919291620001189160009162000415565b5080516200012e90600190602084019062000415565b5050600b80546001600160a81b0319163361010081029190911790915560405190915081906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506080528051825114620001d65760405162461bcd60e51b815260206004820152601360248201527f4572726f723a20696e76616c696420646174610000000000000000000000000060448201526064015b60405180910390fd5b6000805b83518160ff16101562000313576017848260ff16815181106200020157620002016200067b565b60209081029190910181015182546001810184556000938452919092200180546001600160a01b0319166001600160a01b039092169190911790556040805180820190915283518190859060ff85169081106200026257620002626200067b565b60200260200101518152602001600081525060166000868460ff16815181106200029057620002906200067b565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000206000820151816000015560208201518160010155905050828160ff1681518110620002e757620002e76200067b565b602002602001015182620002fc9190620006a7565b9150806200030a81620006c2565b915050620001da565b508061271014620003675760405162461bcd60e51b815260206004820152601860248201527f4572726f723a20696e76616c696420746f74616c2066656500000000000000006044820152606401620001cd565b620003716200037a565b50505062000720565b600b5460ff1615620003c25760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401620001cd565b600b805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620003f83390565b6040516001600160a01b03909116815260200160405180910390a1565b8280546200042390620006e4565b90600052602060002090601f01602090048101928262000447576000855562000492565b82601f106200046257805160ff191683800117855562000492565b8280016001018555821562000492579182015b828111156200049257825182559160200191906001019062000475565b50620004a0929150620004a4565b5090565b5b80821115620004a05760008155600101620004a5565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715620004fc57620004fc620004bb565b604052919050565b60006001600160401b03821115620005205762000520620004bb565b5060051b60200190565b600082601f8301126200053c57600080fd5b81516020620005556200054f8362000504565b620004d1565b82815260059290921b840181019181810190868411156200057557600080fd5b8286015b8481101562000592578051835291830191830162000579565b509695505050505050565b60008060408385031215620005b157600080fd5b82516001600160401b0380821115620005c957600080fd5b818501915085601f830112620005de57600080fd5b81516020620005f16200054f8362000504565b82815260059290921b840181019181810190898411156200061157600080fd5b948201945b83861015620006485785516001600160a01b0381168114620006385760008081fd5b8252948201949082019062000616565b918801519196509093505050808211156200066257600080fd5b5062000671858286016200052a565b9150509250929050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60008219821115620006bd57620006bd62000691565b500190565b600060ff821660ff8103620006db57620006db62000691565b60010192915050565b600181811c90821680620006f957607f821691505b6020821081036200071a57634e487b7160e01b600052602260045260246000fd5b50919050565b608051613b076200073c60003960006128190152613b076000f3fe6080604052600436106103195760003560e01c806370a08231116101ab578063ad2f852a116100f7578063d5abeb0111610095578063f147efeb1161006f578063f147efeb1461092b578063f2fde38b14610974578063f968adbe14610994578063fa0fca84146109aa57600080fd5b8063d5abeb01146108b7578063db2e21bc146108cd578063e985e9c5146108e257600080fd5b8063c6682862116100d1578063c668286214610835578063c6f6f2161461084a578063c87b56dd1461086a578063d2f8dd451461088a57600080fd5b8063ad2f852a146107e0578063b88d4fde14610800578063b9bfa0bc1461082057600080fd5b80639186b425116101645780639bdedea51161013e5780639bdedea514610777578063a035b1fe14610797578063a0712d68146107ad578063a22cb465146107c057600080fd5b80639186b4251461072857806391b7f5ed1461074257806395d89b411461076257600080fd5b806370a082311461067a578063715018a61461069a578063768d7138146106af5780637e0586f1146106c5578063862440e2146106e55780638da5cb5b1461070557600080fd5b8063397457911161026a57806349df728c116102235780635c975abb116101fd5780635c975abb146106185780636352211e1461063057806367dded4d146106505780636c0360eb1461066557600080fd5b806349df728c146105b85780634f6ccce7146105d857806355f804b3146105f857600080fd5b806339745791146105035780633ccfd60b1461052357806340d097c31461053857806342842e0e1461055857806342966c6814610578578063483efda21461059857600080fd5b806318160ddd116102d757806329ee566c116102b157806329ee566c1461046e5780632a55205a146104845780632f745c59146104c357806336e79a5a146104e357600080fd5b806318160ddd1461040f57806323b872dd1461042e57806329413b121461044e57600080fd5b8062923f9e1461031e57806301ffc9a71461035357806306d254da1461037357806306fdde0314610395578063081812fc146103b7578063095ea7b3146103ef575b600080fd5b34801561032a57600080fd5b5061033e610339366004613201565b6109d7565b60405190151581526020015b60405180910390f35b34801561035f57600080fd5b5061033e61036e366004613230565b6109e8565b34801561037f57600080fd5b5061039361038e366004613269565b610a0d565b005b3480156103a157600080fd5b506103aa610a68565b60405161034a91906132dc565b3480156103c357600080fd5b506103d76103d2366004613201565b610afa565b6040516001600160a01b03909116815260200161034a565b3480156103fb57600080fd5b5061039361040a3660046132ef565b610b82565b34801561041b57600080fd5b506008545b60405190815260200161034a565b34801561043a57600080fd5b50610393610449366004613319565b610c97565b34801561045a57600080fd5b50610393610469366004613432565b610cc9565b34801561047a57600080fd5b5061042060155481565b34801561049057600080fd5b506104a461049f366004613477565b610d3a565b604080516001600160a01b03909316835260208301919091520161034a565b3480156104cf57600080fd5b506104206104de3660046132ef565b610d74565b3480156104ef57600080fd5b506103936104fe366004613499565b610e0a565b34801561050f57600080fd5b5061039361051e3660046134bd565b610eaf565b34801561052f57600080fd5b50610393610f8e565b34801561054457600080fd5b50610393610553366004613269565b6110cc565b34801561056457600080fd5b50610393610573366004613319565b611108565b34801561058457600080fd5b50610393610593366004613201565b611123565b3480156105a457600080fd5b506103936105b3366004613201565b61119a565b3480156105c457600080fd5b506103936105d3366004613269565b6111cf565b3480156105e457600080fd5b506104206105f3366004613201565b611350565b34801561060457600080fd5b5061039361061336600461356a565b6113e3565b34801561062457600080fd5b50600b5460ff1661033e565b34801561063c57600080fd5b506103d761064b366004613201565b611426565b34801561065c57600080fd5b5061039361149d565b34801561067157600080fd5b506103aa6114e9565b34801561068657600080fd5b50610420610695366004613269565b611577565b3480156106a657600080fd5b506103936115fe565b3480156106bb57600080fd5b5061042060135481565b3480156106d157600080fd5b506103936106e0366004613432565b61167e565b3480156106f157600080fd5b5061039361070036600461359f565b6117ca565b34801561071157600080fd5b50600b5461010090046001600160a01b03166103d7565b34801561073457600080fd5b5060185461033e9060ff1681565b34801561074e57600080fd5b5061039361075d366004613201565b611804565b34801561076e57600080fd5b506103aa611839565b34801561078357600080fd5b506103936107923660046135e6565b611848565b3480156107a357600080fd5b5061042060145481565b6103936107bb366004613201565b6119b9565b3480156107cc57600080fd5b506103936107db366004613698565b611c68565b3480156107ec57600080fd5b50600e546103d7906001600160a01b031681565b34801561080c57600080fd5b5061039361081b3660046136cf565b611d2c565b34801561082c57600080fd5b50610393611d5e565b34801561084157600080fd5b506103aa611da2565b34801561085657600080fd5b50610393610865366004613201565b611daf565b34801561087657600080fd5b506103aa610885366004613201565b611de4565b34801561089657600080fd5b506108aa6108a5366004613269565b611def565b60405161034a919061374b565b3480156108c357600080fd5b5061042060115481565b3480156108d957600080fd5b50610393611eb1565b3480156108ee57600080fd5b5061033e6108fd36600461378f565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561093757600080fd5b5061095f610946366004613269565b6016602052600090815260409020805460019091015482565b6040805192835260208301919091520161034a565b34801561098057600080fd5b5061039361098f366004613269565b611fe4565b3480156109a057600080fd5b5061042060125481565b3480156109b657600080fd5b506104206109c5366004613269565b60196020526000908152604090205481565b60006109e2826120e0565b92915050565b60006001600160e01b0319821663152a902d60e11b14806109e257506109e2826120fd565b600b546001600160a01b03610100909104163314610a465760405162461bcd60e51b8152600401610a3d906137c2565b60405180910390fd5b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b606060008054610a77906137f7565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa3906137f7565b8015610af05780601f10610ac557610100808354040283529160200191610af0565b820191906000526020600020905b815481529060010190602001808311610ad357829003601f168201915b5050505050905090565b6000610b05826120e0565b610b665760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a3d565b506000908152600460205260409020546001600160a01b031690565b6000610b8d82611426565b9050806001600160a01b0316836001600160a01b031603610bfa5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610a3d565b336001600160a01b0382161480610c165750610c1681336108fd565b610c885760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a3d565b610c928383612122565b505050565b610ca2335b82612190565b610cbe5760405162461bcd60e51b8152600401610a3d9061382b565b610c9283838361227a565b600b546001600160a01b03610100909104163314610cf95760405162461bcd60e51b8152600401610a3d906137c2565b60005b8251811015610c9257610d2882848381518110610d1b57610d1b61387c565b6020026020010151612425565b80610d32816138a8565b915050610cfc565b600e5460155460009182916001600160a01b039091169061271090610d5f90866138c1565b610d6991906138f6565b915091509250929050565b6000610d7f83611577565b8210610de15760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610a3d565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b546001600160a01b03610100909104163314610e3a5760405162461bcd60e51b8152600401610a3d906137c2565b6102ee8161ffff161115610ea65760405162461bcd60e51b815260206004820152602d60248201527f526f79616c7479206d7573742062652067726561746572207468616e206f722060448201526c657175616c20746f20372c352560981b6064820152608401610a3d565b61ffff16601555565b600b546001600160a01b03610100909104163314610edf5760405162461bcd60e51b8152600401610a3d906137c2565b6000815111610f275760405162461bcd60e51b81526020600482015260146024820152734572726f723a206c69737420697320656d70747960601b6044820152606401610a3d565b60005b8151811015610f8a57600060196000848481518110610f4b57610f4b61387c565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080610f82906138a8565b915050610f2a565b5050565b33600090815260166020526040902054610ff85760405162461bcd60e51b815260206004820152602560248201527f446576204f6e6c793a2063616c6c6572206973206e6f742074686520646576656044820152643637b832b960d91b6064820152608401610a3d565b336000908152601660205260409020600101548061104c5760405162461bcd60e51b815260206004820152601160248201527008ae4e4dee47440dcde40cccacae640745607b1b6044820152606401610a3d565b604051339082156108fc029083906000818181858888f19350505050158015611079573d6000803e3d6000fd5b503360008181526016602052604080822060010191909155517f9bba815921f12cb7b1408e14b5ade745234397d39623ae5e7c82d693cb45815f906110c19084815260200190565b60405180910390a250565b600b546001600160a01b036101009091041633146110fc5760405162461bcd60e51b8152600401610a3d906137c2565b6111058161244b565b50565b610c9283838360405180602001604052806000815250611d2c565b61112c33610c9c565b6111915760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b6064820152608401610a3d565b6111058161246c565b600b546001600160a01b036101009091041633146111ca5760405162461bcd60e51b8152600401610a3d906137c2565b601355565b600b546001600160a01b036101009091041633146111ff5760405162461bcd60e51b8152600401610a3d906137c2565b6040516370a0823160e01b815230600482015281906000906001600160a01b038316906370a0823190602401602060405180830381865afa158015611248573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061126c919061390a565b9050816001600160a01b031663a9059cbb611295600b546001600160a01b036101009091041690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af11580156112e2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113069190613923565b50604080516001600160a01b03851681526020810183905233917f5aa586896a67fb05c3b86276f66eecee7da00719d0e7299c403596fa2ec58ca4910160405180910390a2505050565b600061135b60085490565b82106113be5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610a3d565b600882815481106113d1576113d161387c565b90600052602060002001549050919050565b600b546001600160a01b036101009091041633146114135760405162461bcd60e51b8152600401610a3d906137c2565b8051610f8a90600f906020840190613132565b6000818152600260205260408120546001600160a01b0316806109e25760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610a3d565b600b546001600160a01b036101009091041633146114cd5760405162461bcd60e51b8152600401610a3d906137c2565b600b5460ff166114e1576114df612475565b565b6114df6124ea565b600f80546114f6906137f7565b80601f0160208091040260200160405190810160405280929190818152602001828054611522906137f7565b801561156f5780601f106115445761010080835404028352916020019161156f565b820191906000526020600020905b81548152906001019060200180831161155257829003601f168201915b505050505081565b60006001600160a01b0382166115e25760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610a3d565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b0361010090910416331461162e5760405162461bcd60e51b8152600401610a3d906137c2565b600b5460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600b8054610100600160a81b0319169055565b600b546001600160a01b036101009091041633146116ae5760405162461bcd60e51b8152600401610a3d906137c2565b60008251116116f65760405162461bcd60e51b81526020600482015260146024820152734572726f723a206c69737420697320656d70747960601b6044820152606401610a3d565b60005b8251811015610c925760006001600160a01b031683828151811061171f5761171f61387c565b60200260200101516001600160a01b0316036117745760405162461bcd60e51b815260206004820152601460248201527320b2323932b9b99031b0b73737ba10313290181760611b6044820152606401610a3d565b816019600085848151811061178b5761178b61387c565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000208190555080806117c2906138a8565b9150506116f9565b600b546001600160a01b036101009091041633146117fa5760405162461bcd60e51b8152600401610a3d906137c2565b610f8a8282612564565b600b546001600160a01b036101009091041633146118345760405162461bcd60e51b8152600401610a3d906137c2565b601455565b606060018054610a77906137f7565b600b546001600160a01b036101009091041633146118785760405162461bcd60e51b8152600401610a3d906137c2565b8160005b82518110156119b357816001600160a01b03166342842e0e306118ad600b546001600160a01b036101009091041690565b8685815181106118bf576118bf61387c565b60209081029190910101516040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401600060405180830381600087803b15801561191957600080fd5b505af115801561192d573d6000803e3d6000fd5b50505050336001600160a01b03167fb8dbf4ce06446b88ef02ffd28a948c2637ac80fb0bd4d3a31c70878c1046eb7f8585848151811061196f5761196f61387c565b60200260200101516040516119999291906001600160a01b03929092168252602082015260400190565b60405180910390a2806119ab816138a8565b91505061187c565b50505050565b600b5460ff16156119dc5760405162461bcd60e51b8152600401610a3d90613940565b60006119e760085490565b90506000821180156119fb57506012548211155b611a475760405162461bcd60e51b815260206004820152601760248201527f4572726f723a206d617820706172207478206c696d69740000000000000000006044820152606401610a3d565b601354611a5333611577565b611a5e90600161396a565b1115611aac5760405162461bcd60e51b815260206004820152601c60248201527f4572726f723a206d6178207065722061646472657373206c696d6974000000006044820152606401610a3d565b81601454611aba91906138c1565b3414611aff5760405162461bcd60e51b81526020600482015260146024820152734572726f723a20696e76616c696420707269636560601b6044820152606401610a3d565b6011546001611b0e848461396a565b611b189190613982565b10611b775760405162461bcd60e51b815260206004820152602960248201527f4572726f723a2063616e6e6f74206d696e74206d6f7265207468616e20746f74604482015268616c20737570706c7960b81b6064820152608401610a3d565b60185460ff1615611c075733600090815260196020526040902054821115611c075760405162461bcd60e51b815260206004820152603d60248201527f4572726f723a20796f7520617265206e6f742077686974656c6973746564206f60448201527f7220616d6f756e7420697320686967686572207468616e206c696d69740000006064820152608401610a3d565b60005b82811015611c5e57611c1b3361244b565b60185460ff1615611c4c57336000908152601960205260408120805460019290611c46908490613982565b90915550505b80611c56816138a8565b915050611c0a565b50610f8a346125ef565b336001600160a01b03831603611cc05760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a3d565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611d363383612190565b611d525760405162461bcd60e51b8152600401610a3d9061382b565b6119b3848484846126a2565b600b546001600160a01b03610100909104163314611d8e5760405162461bcd60e51b8152600401610a3d906137c2565b6018805460ff19811660ff90911615179055565b601080546114f6906137f7565b600b546001600160a01b03610100909104163314611ddf5760405162461bcd60e51b8152600401610a3d906137c2565b601255565b60606109e2826126d5565b60606000611dfc83611577565b905080600003611e205760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff811115611e3b57611e3b613355565b604051908082528060200260200182016040528015611e64578160200160208202803683370190505b50905060005b82811015611e1857611e7c8582610d74565b828281518110611e8e57611e8e61387c565b602090810291909101015280611ea3816138a8565b915050611e6a565b50919050565b600b546001600160a01b03610100909104163314611ee15760405162461bcd60e51b8152600401610a3d906137c2565b4780611f235760405162461bcd60e51b815260206004820152601160248201527008ae4e4dee47440dcde40cccacae640745607b1b6044820152606401610a3d565b604051339082156108fc029083906000818181858888f19350505050158015611f50573d6000803e3d6000fd5b5060005b60175460ff82161015611fb157600060178260ff1681548110611f7957611f7961387c565b60009182526020808320909101546001600160a01b031682526016905260408120600101555080611fa981613999565b915050611f54565b5060405181815233907f9bba815921f12cb7b1408e14b5ade745234397d39623ae5e7c82d693cb45815f906020016110c1565b600b546001600160a01b036101009091041633146120145760405162461bcd60e51b8152600401610a3d906137c2565b6001600160a01b0381166120795760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a3d565b600b546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600b80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6000908152600260205260409020546001600160a01b0316151590565b60006001600160e01b0319821663780e9d6360e01b14806109e257506109e282612793565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061215782611426565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061219b826120e0565b6121fc5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a3d565b600061220783611426565b9050806001600160a01b0316846001600160a01b031614806122425750836001600160a01b031661223784610afa565b6001600160a01b0316145b8061227257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661228d82611426565b6001600160a01b0316146122f55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610a3d565b6001600160a01b0382166123575760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610a3d565b6123628383836127e3565b61236d600082612122565b6001600160a01b0383166000908152600360205260408120805460019290612396908490613982565b90915550506001600160a01b03821660009081526003602052604081208054600192906123c490849061396a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60005b82811015610c92576124398261244b565b80612443816138a8565b915050612428565b6000612455612811565b61246090600161396a565b9050610f8a8282612919565b61110581612933565b600b5460ff16156124985760405162461bcd60e51b8152600401610a3d90613940565b600b805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586124cd3390565b6040516001600160a01b03909116815260200160405180910390a1565b600b5460ff166125335760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610a3d565b600b805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa336124cd565b61256d826120e0565b6125d05760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b6064820152608401610a3d565b6000828152600a602090815260409091208251610c9292840190613132565b60005b60175460ff82161015610f8a57600060178260ff16815481106126175761261761387c565b60009182526020808320909101546001600160a01b0316808352601690915260408220549092509061265561271061264f8785612973565b906129fc565b6001600160a01b03841660009081526016602052604081206001018054929350839290919061268590849061396a565b92505081905550505050808061269a90613999565b9150506125f2565b6126ad84848461227a565b6126b984848484612a3e565b6119b35760405162461bcd60e51b8152600401610a3d906139b8565b60606126e0826120e0565b6127465760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b6064820152608401610a3d565b6000612750612b3f565b9050600061275c612b4e565b90508161276885612b5d565b8260405160200161277b93929190613a0a565b60405160208183030381529060405292505050919050565b60006001600160e01b031982166380ac58cd60e01b14806127c457506001600160e01b03198216635b5e139f60e01b145b806109e257506301ffc9a760e01b6001600160e01b03198316146109e2565b600b5460ff16156128065760405162461bcd60e51b8152600401610a3d90613940565b610c92838383612c5e565b600080600c547f00000000000000000000000000000000000000000000000000000000000000006128429190613982565b9050600080600083612852612d16565b61285c9190613a4d565b9050600d600061286d600187613982565b8152602001908152602001600020546000036128955761288e600185613982565b92506128b6565b600d60006128a4600187613982565b81526020019081526020016000205492505b6000818152600d602052604081205490036128e4576000818152600d602052604090208390559050806128fb565b6000818152600d6020526040902080549084905591505b600c805490600061290b836138a8565b909155509195945050505050565b610f8a828260405180602001604052806000815250612d52565b61293c81612d85565b6000818152600a602052604090208054612955906137f7565b159050611105576000818152600a60205260408120611105916131b6565b600082600003612985575060006109e2565b600061299183856138c1565b90508261299e85836138f6565b146129f55760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610a3d565b9392505050565b60006129f583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612e2c565b60006001600160a01b0384163b15612b3457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612a82903390899088908890600401613a61565b6020604051808303816000875af1925050508015612abd575060408051601f3d908101601f19168201909252612aba91810190613a9e565b60015b612b1a573d808015612aeb576040519150601f19603f3d011682016040523d82523d6000602084013e612af0565b606091505b508051600003612b125760405162461bcd60e51b8152600401610a3d906139b8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612272565b506001949350505050565b6060600f8054610a77906137f7565b606060108054610a77906137f7565b606081600003612b845750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612bae5780612b98816138a8565b9150612ba79050600a836138f6565b9150612b88565b60008167ffffffffffffffff811115612bc957612bc9613355565b6040519080825280601f01601f191660200182016040528015612bf3576020820181803683370190505b5090505b841561227257612c08600183613982565b9150612c15600a86613a4d565b612c2090603061396a565b60f81b818381518110612c3557612c3561387c565b60200101906001600160f81b031916908160001a905350612c57600a866138f6565b9450612bf7565b6001600160a01b038316612cb957612cb481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612cdc565b816001600160a01b0316836001600160a01b031614612cdc57612cdc8382612e63565b6001600160a01b038216612cf357610c9281612f00565b826001600160a01b0316826001600160a01b031614610c9257610c928282612faf565b60004442604051602001612d34929190918252602082015260400190565b6040516020818303038152906040528051906020012060001c905090565b612d5c8383612ff3565b612d696000848484612a3e565b610c925760405162461bcd60e51b8152600401610a3d906139b8565b6000612d9082611426565b9050612d9e816000846127e3565b612da9600083612122565b6001600160a01b0381166000908152600360205260408120805460019290612dd2908490613982565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60008183612e4d5760405162461bcd60e51b8152600401610a3d91906132dc565b506000612e5a84866138f6565b95945050505050565b60006001612e7084611577565b612e7a9190613982565b600083815260076020526040902054909150808214612ecd576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612f1290600190613982565b60008381526009602052604081205460088054939450909284908110612f3a57612f3a61387c565b906000526020600020015490508060088381548110612f5b57612f5b61387c565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612f9357612f93613abb565b6001900381819060005260206000200160009055905550505050565b6000612fba83611577565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166130495760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a3d565b613052816120e0565b1561309f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a3d565b6130ab600083836127e3565b6001600160a01b03821660009081526003602052604081208054600192906130d490849061396a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461313e906137f7565b90600052602060002090601f01602090048101928261316057600085556131a6565b82601f1061317957805160ff19168380011785556131a6565b828001600101855582156131a6579182015b828111156131a657825182559160200191906001019061318b565b506131b29291506131ec565b5090565b5080546131c2906137f7565b6000825580601f106131d2575050565b601f01602090049060005260206000209081019061110591905b5b808211156131b257600081556001016131ed565b60006020828403121561321357600080fd5b5035919050565b6001600160e01b03198116811461110557600080fd5b60006020828403121561324257600080fd5b81356129f58161321a565b80356001600160a01b038116811461326457600080fd5b919050565b60006020828403121561327b57600080fd5b6129f58261324d565b60005b8381101561329f578181015183820152602001613287565b838111156119b35750506000910152565b600081518084526132c8816020860160208601613284565b601f01601f19169290920160200192915050565b6020815260006129f560208301846132b0565b6000806040838503121561330257600080fd5b61330b8361324d565b946020939093013593505050565b60008060006060848603121561332e57600080fd5b6133378461324d565b92506133456020850161324d565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561339457613394613355565b604052919050565b600067ffffffffffffffff8211156133b6576133b6613355565b5060051b60200190565b600082601f8301126133d157600080fd5b813560206133e66133e18361339c565b61336b565b82815260059290921b8401810191818101908684111561340557600080fd5b8286015b848110156134275761341a8161324d565b8352918301918301613409565b509695505050505050565b6000806040838503121561344557600080fd5b823567ffffffffffffffff81111561345c57600080fd5b613468858286016133c0565b95602094909401359450505050565b6000806040838503121561348a57600080fd5b50508035926020909101359150565b6000602082840312156134ab57600080fd5b813561ffff811681146129f557600080fd5b6000602082840312156134cf57600080fd5b813567ffffffffffffffff8111156134e657600080fd5b612272848285016133c0565b600067ffffffffffffffff83111561350c5761350c613355565b61351f601f8401601f191660200161336b565b905082815283838301111561353357600080fd5b828260208301376000602084830101529392505050565b600082601f83011261355b57600080fd5b6129f5838335602085016134f2565b60006020828403121561357c57600080fd5b813567ffffffffffffffff81111561359357600080fd5b6122728482850161354a565b600080604083850312156135b257600080fd5b82359150602083013567ffffffffffffffff8111156135d057600080fd5b6135dc8582860161354a565b9150509250929050565b600080604083850312156135f957600080fd5b6136028361324d565b915060208084013567ffffffffffffffff81111561361f57600080fd5b8401601f8101861361363057600080fd5b803561363e6133e18261339c565b81815260059190911b8201830190838101908883111561365d57600080fd5b928401925b8284101561367b57833582529284019290840190613662565b80955050505050509250929050565b801515811461110557600080fd5b600080604083850312156136ab57600080fd5b6136b48361324d565b915060208301356136c48161368a565b809150509250929050565b600080600080608085870312156136e557600080fd5b6136ee8561324d565b93506136fc6020860161324d565b925060408501359150606085013567ffffffffffffffff81111561371f57600080fd5b8501601f8101871361373057600080fd5b61373f878235602084016134f2565b91505092959194509250565b6020808252825182820181905260009190848201906040850190845b8181101561378357835183529284019291840191600101613767565b50909695505050505050565b600080604083850312156137a257600080fd5b6137ab8361324d565b91506137b96020840161324d565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061380b57607f821691505b602082108103611eab57634e487b7160e01b600052602260045260246000fd5b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016138ba576138ba613892565b5060010190565b60008160001904831182151516156138db576138db613892565b500290565b634e487b7160e01b600052601260045260246000fd5b600082613905576139056138e0565b500490565b60006020828403121561391c57600080fd5b5051919050565b60006020828403121561393557600080fd5b81516129f58161368a565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6000821982111561397d5761397d613892565b500190565b60008282101561399457613994613892565b500390565b600060ff821660ff81036139af576139af613892565b60010192915050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008451613a1c818460208901613284565b845190830190613a30818360208901613284565b8451910190613a43818360208801613284565b0195945050505050565b600082613a5c57613a5c6138e0565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613a94908301846132b0565b9695505050505050565b600060208284031215613ab057600080fd5b81516129f58161321a565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220402af08337b771eff4a84cd9209affceb8637e5fe2b8e5fe5e39305b44c8b79164736f6c634300080d00330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000010000000000000000000000005e41fb7e76ab5f11fe68ec0fc5cb7497f4103cae00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000002710
Deployed Bytecode
0x6080604052600436106103195760003560e01c806370a08231116101ab578063ad2f852a116100f7578063d5abeb0111610095578063f147efeb1161006f578063f147efeb1461092b578063f2fde38b14610974578063f968adbe14610994578063fa0fca84146109aa57600080fd5b8063d5abeb01146108b7578063db2e21bc146108cd578063e985e9c5146108e257600080fd5b8063c6682862116100d1578063c668286214610835578063c6f6f2161461084a578063c87b56dd1461086a578063d2f8dd451461088a57600080fd5b8063ad2f852a146107e0578063b88d4fde14610800578063b9bfa0bc1461082057600080fd5b80639186b425116101645780639bdedea51161013e5780639bdedea514610777578063a035b1fe14610797578063a0712d68146107ad578063a22cb465146107c057600080fd5b80639186b4251461072857806391b7f5ed1461074257806395d89b411461076257600080fd5b806370a082311461067a578063715018a61461069a578063768d7138146106af5780637e0586f1146106c5578063862440e2146106e55780638da5cb5b1461070557600080fd5b8063397457911161026a57806349df728c116102235780635c975abb116101fd5780635c975abb146106185780636352211e1461063057806367dded4d146106505780636c0360eb1461066557600080fd5b806349df728c146105b85780634f6ccce7146105d857806355f804b3146105f857600080fd5b806339745791146105035780633ccfd60b1461052357806340d097c31461053857806342842e0e1461055857806342966c6814610578578063483efda21461059857600080fd5b806318160ddd116102d757806329ee566c116102b157806329ee566c1461046e5780632a55205a146104845780632f745c59146104c357806336e79a5a146104e357600080fd5b806318160ddd1461040f57806323b872dd1461042e57806329413b121461044e57600080fd5b8062923f9e1461031e57806301ffc9a71461035357806306d254da1461037357806306fdde0314610395578063081812fc146103b7578063095ea7b3146103ef575b600080fd5b34801561032a57600080fd5b5061033e610339366004613201565b6109d7565b60405190151581526020015b60405180910390f35b34801561035f57600080fd5b5061033e61036e366004613230565b6109e8565b34801561037f57600080fd5b5061039361038e366004613269565b610a0d565b005b3480156103a157600080fd5b506103aa610a68565b60405161034a91906132dc565b3480156103c357600080fd5b506103d76103d2366004613201565b610afa565b6040516001600160a01b03909116815260200161034a565b3480156103fb57600080fd5b5061039361040a3660046132ef565b610b82565b34801561041b57600080fd5b506008545b60405190815260200161034a565b34801561043a57600080fd5b50610393610449366004613319565b610c97565b34801561045a57600080fd5b50610393610469366004613432565b610cc9565b34801561047a57600080fd5b5061042060155481565b34801561049057600080fd5b506104a461049f366004613477565b610d3a565b604080516001600160a01b03909316835260208301919091520161034a565b3480156104cf57600080fd5b506104206104de3660046132ef565b610d74565b3480156104ef57600080fd5b506103936104fe366004613499565b610e0a565b34801561050f57600080fd5b5061039361051e3660046134bd565b610eaf565b34801561052f57600080fd5b50610393610f8e565b34801561054457600080fd5b50610393610553366004613269565b6110cc565b34801561056457600080fd5b50610393610573366004613319565b611108565b34801561058457600080fd5b50610393610593366004613201565b611123565b3480156105a457600080fd5b506103936105b3366004613201565b61119a565b3480156105c457600080fd5b506103936105d3366004613269565b6111cf565b3480156105e457600080fd5b506104206105f3366004613201565b611350565b34801561060457600080fd5b5061039361061336600461356a565b6113e3565b34801561062457600080fd5b50600b5460ff1661033e565b34801561063c57600080fd5b506103d761064b366004613201565b611426565b34801561065c57600080fd5b5061039361149d565b34801561067157600080fd5b506103aa6114e9565b34801561068657600080fd5b50610420610695366004613269565b611577565b3480156106a657600080fd5b506103936115fe565b3480156106bb57600080fd5b5061042060135481565b3480156106d157600080fd5b506103936106e0366004613432565b61167e565b3480156106f157600080fd5b5061039361070036600461359f565b6117ca565b34801561071157600080fd5b50600b5461010090046001600160a01b03166103d7565b34801561073457600080fd5b5060185461033e9060ff1681565b34801561074e57600080fd5b5061039361075d366004613201565b611804565b34801561076e57600080fd5b506103aa611839565b34801561078357600080fd5b506103936107923660046135e6565b611848565b3480156107a357600080fd5b5061042060145481565b6103936107bb366004613201565b6119b9565b3480156107cc57600080fd5b506103936107db366004613698565b611c68565b3480156107ec57600080fd5b50600e546103d7906001600160a01b031681565b34801561080c57600080fd5b5061039361081b3660046136cf565b611d2c565b34801561082c57600080fd5b50610393611d5e565b34801561084157600080fd5b506103aa611da2565b34801561085657600080fd5b50610393610865366004613201565b611daf565b34801561087657600080fd5b506103aa610885366004613201565b611de4565b34801561089657600080fd5b506108aa6108a5366004613269565b611def565b60405161034a919061374b565b3480156108c357600080fd5b5061042060115481565b3480156108d957600080fd5b50610393611eb1565b3480156108ee57600080fd5b5061033e6108fd36600461378f565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561093757600080fd5b5061095f610946366004613269565b6016602052600090815260409020805460019091015482565b6040805192835260208301919091520161034a565b34801561098057600080fd5b5061039361098f366004613269565b611fe4565b3480156109a057600080fd5b5061042060125481565b3480156109b657600080fd5b506104206109c5366004613269565b60196020526000908152604090205481565b60006109e2826120e0565b92915050565b60006001600160e01b0319821663152a902d60e11b14806109e257506109e2826120fd565b600b546001600160a01b03610100909104163314610a465760405162461bcd60e51b8152600401610a3d906137c2565b60405180910390fd5b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b606060008054610a77906137f7565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa3906137f7565b8015610af05780601f10610ac557610100808354040283529160200191610af0565b820191906000526020600020905b815481529060010190602001808311610ad357829003601f168201915b5050505050905090565b6000610b05826120e0565b610b665760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a3d565b506000908152600460205260409020546001600160a01b031690565b6000610b8d82611426565b9050806001600160a01b0316836001600160a01b031603610bfa5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610a3d565b336001600160a01b0382161480610c165750610c1681336108fd565b610c885760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a3d565b610c928383612122565b505050565b610ca2335b82612190565b610cbe5760405162461bcd60e51b8152600401610a3d9061382b565b610c9283838361227a565b600b546001600160a01b03610100909104163314610cf95760405162461bcd60e51b8152600401610a3d906137c2565b60005b8251811015610c9257610d2882848381518110610d1b57610d1b61387c565b6020026020010151612425565b80610d32816138a8565b915050610cfc565b600e5460155460009182916001600160a01b039091169061271090610d5f90866138c1565b610d6991906138f6565b915091509250929050565b6000610d7f83611577565b8210610de15760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610a3d565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b546001600160a01b03610100909104163314610e3a5760405162461bcd60e51b8152600401610a3d906137c2565b6102ee8161ffff161115610ea65760405162461bcd60e51b815260206004820152602d60248201527f526f79616c7479206d7573742062652067726561746572207468616e206f722060448201526c657175616c20746f20372c352560981b6064820152608401610a3d565b61ffff16601555565b600b546001600160a01b03610100909104163314610edf5760405162461bcd60e51b8152600401610a3d906137c2565b6000815111610f275760405162461bcd60e51b81526020600482015260146024820152734572726f723a206c69737420697320656d70747960601b6044820152606401610a3d565b60005b8151811015610f8a57600060196000848481518110610f4b57610f4b61387c565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080610f82906138a8565b915050610f2a565b5050565b33600090815260166020526040902054610ff85760405162461bcd60e51b815260206004820152602560248201527f446576204f6e6c793a2063616c6c6572206973206e6f742074686520646576656044820152643637b832b960d91b6064820152608401610a3d565b336000908152601660205260409020600101548061104c5760405162461bcd60e51b815260206004820152601160248201527008ae4e4dee47440dcde40cccacae640745607b1b6044820152606401610a3d565b604051339082156108fc029083906000818181858888f19350505050158015611079573d6000803e3d6000fd5b503360008181526016602052604080822060010191909155517f9bba815921f12cb7b1408e14b5ade745234397d39623ae5e7c82d693cb45815f906110c19084815260200190565b60405180910390a250565b600b546001600160a01b036101009091041633146110fc5760405162461bcd60e51b8152600401610a3d906137c2565b6111058161244b565b50565b610c9283838360405180602001604052806000815250611d2c565b61112c33610c9c565b6111915760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b6064820152608401610a3d565b6111058161246c565b600b546001600160a01b036101009091041633146111ca5760405162461bcd60e51b8152600401610a3d906137c2565b601355565b600b546001600160a01b036101009091041633146111ff5760405162461bcd60e51b8152600401610a3d906137c2565b6040516370a0823160e01b815230600482015281906000906001600160a01b038316906370a0823190602401602060405180830381865afa158015611248573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061126c919061390a565b9050816001600160a01b031663a9059cbb611295600b546001600160a01b036101009091041690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af11580156112e2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113069190613923565b50604080516001600160a01b03851681526020810183905233917f5aa586896a67fb05c3b86276f66eecee7da00719d0e7299c403596fa2ec58ca4910160405180910390a2505050565b600061135b60085490565b82106113be5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610a3d565b600882815481106113d1576113d161387c565b90600052602060002001549050919050565b600b546001600160a01b036101009091041633146114135760405162461bcd60e51b8152600401610a3d906137c2565b8051610f8a90600f906020840190613132565b6000818152600260205260408120546001600160a01b0316806109e25760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610a3d565b600b546001600160a01b036101009091041633146114cd5760405162461bcd60e51b8152600401610a3d906137c2565b600b5460ff166114e1576114df612475565b565b6114df6124ea565b600f80546114f6906137f7565b80601f0160208091040260200160405190810160405280929190818152602001828054611522906137f7565b801561156f5780601f106115445761010080835404028352916020019161156f565b820191906000526020600020905b81548152906001019060200180831161155257829003601f168201915b505050505081565b60006001600160a01b0382166115e25760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610a3d565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b0361010090910416331461162e5760405162461bcd60e51b8152600401610a3d906137c2565b600b5460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600b8054610100600160a81b0319169055565b600b546001600160a01b036101009091041633146116ae5760405162461bcd60e51b8152600401610a3d906137c2565b60008251116116f65760405162461bcd60e51b81526020600482015260146024820152734572726f723a206c69737420697320656d70747960601b6044820152606401610a3d565b60005b8251811015610c925760006001600160a01b031683828151811061171f5761171f61387c565b60200260200101516001600160a01b0316036117745760405162461bcd60e51b815260206004820152601460248201527320b2323932b9b99031b0b73737ba10313290181760611b6044820152606401610a3d565b816019600085848151811061178b5761178b61387c565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000208190555080806117c2906138a8565b9150506116f9565b600b546001600160a01b036101009091041633146117fa5760405162461bcd60e51b8152600401610a3d906137c2565b610f8a8282612564565b600b546001600160a01b036101009091041633146118345760405162461bcd60e51b8152600401610a3d906137c2565b601455565b606060018054610a77906137f7565b600b546001600160a01b036101009091041633146118785760405162461bcd60e51b8152600401610a3d906137c2565b8160005b82518110156119b357816001600160a01b03166342842e0e306118ad600b546001600160a01b036101009091041690565b8685815181106118bf576118bf61387c565b60209081029190910101516040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401600060405180830381600087803b15801561191957600080fd5b505af115801561192d573d6000803e3d6000fd5b50505050336001600160a01b03167fb8dbf4ce06446b88ef02ffd28a948c2637ac80fb0bd4d3a31c70878c1046eb7f8585848151811061196f5761196f61387c565b60200260200101516040516119999291906001600160a01b03929092168252602082015260400190565b60405180910390a2806119ab816138a8565b91505061187c565b50505050565b600b5460ff16156119dc5760405162461bcd60e51b8152600401610a3d90613940565b60006119e760085490565b90506000821180156119fb57506012548211155b611a475760405162461bcd60e51b815260206004820152601760248201527f4572726f723a206d617820706172207478206c696d69740000000000000000006044820152606401610a3d565b601354611a5333611577565b611a5e90600161396a565b1115611aac5760405162461bcd60e51b815260206004820152601c60248201527f4572726f723a206d6178207065722061646472657373206c696d6974000000006044820152606401610a3d565b81601454611aba91906138c1565b3414611aff5760405162461bcd60e51b81526020600482015260146024820152734572726f723a20696e76616c696420707269636560601b6044820152606401610a3d565b6011546001611b0e848461396a565b611b189190613982565b10611b775760405162461bcd60e51b815260206004820152602960248201527f4572726f723a2063616e6e6f74206d696e74206d6f7265207468616e20746f74604482015268616c20737570706c7960b81b6064820152608401610a3d565b60185460ff1615611c075733600090815260196020526040902054821115611c075760405162461bcd60e51b815260206004820152603d60248201527f4572726f723a20796f7520617265206e6f742077686974656c6973746564206f60448201527f7220616d6f756e7420697320686967686572207468616e206c696d69740000006064820152608401610a3d565b60005b82811015611c5e57611c1b3361244b565b60185460ff1615611c4c57336000908152601960205260408120805460019290611c46908490613982565b90915550505b80611c56816138a8565b915050611c0a565b50610f8a346125ef565b336001600160a01b03831603611cc05760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a3d565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611d363383612190565b611d525760405162461bcd60e51b8152600401610a3d9061382b565b6119b3848484846126a2565b600b546001600160a01b03610100909104163314611d8e5760405162461bcd60e51b8152600401610a3d906137c2565b6018805460ff19811660ff90911615179055565b601080546114f6906137f7565b600b546001600160a01b03610100909104163314611ddf5760405162461bcd60e51b8152600401610a3d906137c2565b601255565b60606109e2826126d5565b60606000611dfc83611577565b905080600003611e205760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff811115611e3b57611e3b613355565b604051908082528060200260200182016040528015611e64578160200160208202803683370190505b50905060005b82811015611e1857611e7c8582610d74565b828281518110611e8e57611e8e61387c565b602090810291909101015280611ea3816138a8565b915050611e6a565b50919050565b600b546001600160a01b03610100909104163314611ee15760405162461bcd60e51b8152600401610a3d906137c2565b4780611f235760405162461bcd60e51b815260206004820152601160248201527008ae4e4dee47440dcde40cccacae640745607b1b6044820152606401610a3d565b604051339082156108fc029083906000818181858888f19350505050158015611f50573d6000803e3d6000fd5b5060005b60175460ff82161015611fb157600060178260ff1681548110611f7957611f7961387c565b60009182526020808320909101546001600160a01b031682526016905260408120600101555080611fa981613999565b915050611f54565b5060405181815233907f9bba815921f12cb7b1408e14b5ade745234397d39623ae5e7c82d693cb45815f906020016110c1565b600b546001600160a01b036101009091041633146120145760405162461bcd60e51b8152600401610a3d906137c2565b6001600160a01b0381166120795760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a3d565b600b546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600b80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6000908152600260205260409020546001600160a01b0316151590565b60006001600160e01b0319821663780e9d6360e01b14806109e257506109e282612793565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061215782611426565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061219b826120e0565b6121fc5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a3d565b600061220783611426565b9050806001600160a01b0316846001600160a01b031614806122425750836001600160a01b031661223784610afa565b6001600160a01b0316145b8061227257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661228d82611426565b6001600160a01b0316146122f55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610a3d565b6001600160a01b0382166123575760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610a3d565b6123628383836127e3565b61236d600082612122565b6001600160a01b0383166000908152600360205260408120805460019290612396908490613982565b90915550506001600160a01b03821660009081526003602052604081208054600192906123c490849061396a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60005b82811015610c92576124398261244b565b80612443816138a8565b915050612428565b6000612455612811565b61246090600161396a565b9050610f8a8282612919565b61110581612933565b600b5460ff16156124985760405162461bcd60e51b8152600401610a3d90613940565b600b805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586124cd3390565b6040516001600160a01b03909116815260200160405180910390a1565b600b5460ff166125335760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610a3d565b600b805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa336124cd565b61256d826120e0565b6125d05760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b6064820152608401610a3d565b6000828152600a602090815260409091208251610c9292840190613132565b60005b60175460ff82161015610f8a57600060178260ff16815481106126175761261761387c565b60009182526020808320909101546001600160a01b0316808352601690915260408220549092509061265561271061264f8785612973565b906129fc565b6001600160a01b03841660009081526016602052604081206001018054929350839290919061268590849061396a565b92505081905550505050808061269a90613999565b9150506125f2565b6126ad84848461227a565b6126b984848484612a3e565b6119b35760405162461bcd60e51b8152600401610a3d906139b8565b60606126e0826120e0565b6127465760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b6064820152608401610a3d565b6000612750612b3f565b9050600061275c612b4e565b90508161276885612b5d565b8260405160200161277b93929190613a0a565b60405160208183030381529060405292505050919050565b60006001600160e01b031982166380ac58cd60e01b14806127c457506001600160e01b03198216635b5e139f60e01b145b806109e257506301ffc9a760e01b6001600160e01b03198316146109e2565b600b5460ff16156128065760405162461bcd60e51b8152600401610a3d90613940565b610c92838383612c5e565b600080600c547f000000000000000000000000000000000000000000000000000000000000008e6128429190613982565b9050600080600083612852612d16565b61285c9190613a4d565b9050600d600061286d600187613982565b8152602001908152602001600020546000036128955761288e600185613982565b92506128b6565b600d60006128a4600187613982565b81526020019081526020016000205492505b6000818152600d602052604081205490036128e4576000818152600d602052604090208390559050806128fb565b6000818152600d6020526040902080549084905591505b600c805490600061290b836138a8565b909155509195945050505050565b610f8a828260405180602001604052806000815250612d52565b61293c81612d85565b6000818152600a602052604090208054612955906137f7565b159050611105576000818152600a60205260408120611105916131b6565b600082600003612985575060006109e2565b600061299183856138c1565b90508261299e85836138f6565b146129f55760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610a3d565b9392505050565b60006129f583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612e2c565b60006001600160a01b0384163b15612b3457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612a82903390899088908890600401613a61565b6020604051808303816000875af1925050508015612abd575060408051601f3d908101601f19168201909252612aba91810190613a9e565b60015b612b1a573d808015612aeb576040519150601f19603f3d011682016040523d82523d6000602084013e612af0565b606091505b508051600003612b125760405162461bcd60e51b8152600401610a3d906139b8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612272565b506001949350505050565b6060600f8054610a77906137f7565b606060108054610a77906137f7565b606081600003612b845750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612bae5780612b98816138a8565b9150612ba79050600a836138f6565b9150612b88565b60008167ffffffffffffffff811115612bc957612bc9613355565b6040519080825280601f01601f191660200182016040528015612bf3576020820181803683370190505b5090505b841561227257612c08600183613982565b9150612c15600a86613a4d565b612c2090603061396a565b60f81b818381518110612c3557612c3561387c565b60200101906001600160f81b031916908160001a905350612c57600a866138f6565b9450612bf7565b6001600160a01b038316612cb957612cb481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612cdc565b816001600160a01b0316836001600160a01b031614612cdc57612cdc8382612e63565b6001600160a01b038216612cf357610c9281612f00565b826001600160a01b0316826001600160a01b031614610c9257610c928282612faf565b60004442604051602001612d34929190918252602082015260400190565b6040516020818303038152906040528051906020012060001c905090565b612d5c8383612ff3565b612d696000848484612a3e565b610c925760405162461bcd60e51b8152600401610a3d906139b8565b6000612d9082611426565b9050612d9e816000846127e3565b612da9600083612122565b6001600160a01b0381166000908152600360205260408120805460019290612dd2908490613982565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60008183612e4d5760405162461bcd60e51b8152600401610a3d91906132dc565b506000612e5a84866138f6565b95945050505050565b60006001612e7084611577565b612e7a9190613982565b600083815260076020526040902054909150808214612ecd576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612f1290600190613982565b60008381526009602052604081205460088054939450909284908110612f3a57612f3a61387c565b906000526020600020015490508060088381548110612f5b57612f5b61387c565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612f9357612f93613abb565b6001900381819060005260206000200160009055905550505050565b6000612fba83611577565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166130495760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a3d565b613052816120e0565b1561309f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a3d565b6130ab600083836127e3565b6001600160a01b03821660009081526003602052604081208054600192906130d490849061396a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461313e906137f7565b90600052602060002090601f01602090048101928261316057600085556131a6565b82601f1061317957805160ff19168380011785556131a6565b828001600101855582156131a6579182015b828111156131a657825182559160200191906001019061318b565b506131b29291506131ec565b5090565b5080546131c2906137f7565b6000825580601f106131d2575050565b601f01602090049060005260206000209081019061110591905b5b808211156131b257600081556001016131ed565b60006020828403121561321357600080fd5b5035919050565b6001600160e01b03198116811461110557600080fd5b60006020828403121561324257600080fd5b81356129f58161321a565b80356001600160a01b038116811461326457600080fd5b919050565b60006020828403121561327b57600080fd5b6129f58261324d565b60005b8381101561329f578181015183820152602001613287565b838111156119b35750506000910152565b600081518084526132c8816020860160208601613284565b601f01601f19169290920160200192915050565b6020815260006129f560208301846132b0565b6000806040838503121561330257600080fd5b61330b8361324d565b946020939093013593505050565b60008060006060848603121561332e57600080fd5b6133378461324d565b92506133456020850161324d565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561339457613394613355565b604052919050565b600067ffffffffffffffff8211156133b6576133b6613355565b5060051b60200190565b600082601f8301126133d157600080fd5b813560206133e66133e18361339c565b61336b565b82815260059290921b8401810191818101908684111561340557600080fd5b8286015b848110156134275761341a8161324d565b8352918301918301613409565b509695505050505050565b6000806040838503121561344557600080fd5b823567ffffffffffffffff81111561345c57600080fd5b613468858286016133c0565b95602094909401359450505050565b6000806040838503121561348a57600080fd5b50508035926020909101359150565b6000602082840312156134ab57600080fd5b813561ffff811681146129f557600080fd5b6000602082840312156134cf57600080fd5b813567ffffffffffffffff8111156134e657600080fd5b612272848285016133c0565b600067ffffffffffffffff83111561350c5761350c613355565b61351f601f8401601f191660200161336b565b905082815283838301111561353357600080fd5b828260208301376000602084830101529392505050565b600082601f83011261355b57600080fd5b6129f5838335602085016134f2565b60006020828403121561357c57600080fd5b813567ffffffffffffffff81111561359357600080fd5b6122728482850161354a565b600080604083850312156135b257600080fd5b82359150602083013567ffffffffffffffff8111156135d057600080fd5b6135dc8582860161354a565b9150509250929050565b600080604083850312156135f957600080fd5b6136028361324d565b915060208084013567ffffffffffffffff81111561361f57600080fd5b8401601f8101861361363057600080fd5b803561363e6133e18261339c565b81815260059190911b8201830190838101908883111561365d57600080fd5b928401925b8284101561367b57833582529284019290840190613662565b80955050505050509250929050565b801515811461110557600080fd5b600080604083850312156136ab57600080fd5b6136b48361324d565b915060208301356136c48161368a565b809150509250929050565b600080600080608085870312156136e557600080fd5b6136ee8561324d565b93506136fc6020860161324d565b925060408501359150606085013567ffffffffffffffff81111561371f57600080fd5b8501601f8101871361373057600080fd5b61373f878235602084016134f2565b91505092959194509250565b6020808252825182820181905260009190848201906040850190845b8181101561378357835183529284019291840191600101613767565b50909695505050505050565b600080604083850312156137a257600080fd5b6137ab8361324d565b91506137b96020840161324d565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061380b57607f821691505b602082108103611eab57634e487b7160e01b600052602260045260246000fd5b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016138ba576138ba613892565b5060010190565b60008160001904831182151516156138db576138db613892565b500290565b634e487b7160e01b600052601260045260246000fd5b600082613905576139056138e0565b500490565b60006020828403121561391c57600080fd5b5051919050565b60006020828403121561393557600080fd5b81516129f58161368a565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6000821982111561397d5761397d613892565b500190565b60008282101561399457613994613892565b500390565b600060ff821660ff81036139af576139af613892565b60010192915050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008451613a1c818460208901613284565b845190830190613a30818360208901613284565b8451910190613a43818360208801613284565b0195945050505050565b600082613a5c57613a5c6138e0565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613a94908301846132b0565b9695505050505050565b600060208284031215613ab057600080fd5b81516129f58161321a565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220402af08337b771eff4a84cd9209affceb8637e5fe2b8e5fe5e39305b44c8b79164736f6c634300080d0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000010000000000000000000000005e41fb7e76ab5f11fe68ec0fc5cb7497f4103cae00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000002710
-----Decoded View---------------
Arg [0] : _devList (address[]): 0x5E41FB7E76ab5f11FE68Ec0fC5cB7497F4103CAe
Arg [1] : _fees (uint256[]): 10000
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [3] : 0000000000000000000000005e41fb7e76ab5f11fe68ec0fc5cb7497f4103cae
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [5] : 0000000000000000000000000000000000000000000000000000000000002710
Deployed Bytecode Sourcemap
56139:9349:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60312:103;;;;;;;;;;-1:-1:-1;60312:103:0;;;;;:::i;:::-;;:::i;:::-;;;364:14:1;;357:22;339:41;;327:2;312:18;60312:103:0;;;;;;;;62787:292;;;;;;;;;;-1:-1:-1;62787:292:0;;;;;:::i;:::-;;:::i;62385:122::-;;;;;;;;;;-1:-1:-1;62385:122:0;;;;;:::i;:::-;;:::i;:::-;;24353:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26043:308::-;;;;;;;;;;-1:-1:-1;26043:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2061:32:1;;;2043:51;;2031:2;2016:18;26043:308:0;1897:203:1;25566:411:0;;;;;;;;;;-1:-1:-1;25566:411:0;;;;;:::i;:::-;;:::i;39127:113::-;;;;;;;;;;-1:-1:-1;39215:10:0;:17;39127:113;;;2510:25:1;;;2498:2;2483:18;39127:113:0;2364:177:1;27102:376:0;;;;;;;;;;-1:-1:-1;27102:376:0;;;;;:::i;:::-;;:::i;64667:205::-;;;;;;;;;;-1:-1:-1;64667:205:0;;;;;:::i;:::-;;:::i;57258:28::-;;;;;;;;;;;;;;;;60423:238;;;;;;;;;;-1:-1:-1;60423:238:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;5018:32:1;;;5000:51;;5082:2;5067:18;;5060:34;;;;4973:18;60423:238:0;4826:274:1;38708:343:0;;;;;;;;;;-1:-1:-1;38708:343:0;;;;;:::i;:::-;;:::i;62115:258::-;;;;;;;;;;-1:-1:-1;62115:258:0;;;;;:::i;:::-;;:::i;61073:242::-;;;;;;;;;;-1:-1:-1;61073:242:0;;;;;:::i;:::-;;:::i;63512:285::-;;;;;;;;;;;;;:::i;62687:82::-;;;;;;;;;;-1:-1:-1;62687:82:0;;;;;:::i;:::-;;:::i;27549:185::-;;;;;;;;;;-1:-1:-1;27549:185:0;;;;;:::i;:::-;;:::i;51579:282::-;;;;;;;;;;-1:-1:-1;51579:282:0;;;;;:::i;:::-;;:::i;61545:106::-;;;;;;;;;;-1:-1:-1;61545:106:0;;;;;:::i;:::-;;:::i;64336:319::-;;;;;;;;;;-1:-1:-1;64336:319:0;;;;;:::i;:::-;;:::i;39317:320::-;;;;;;;;;;-1:-1:-1;39317:320:0;;;;;:::i;:::-;;:::i;61765:104::-;;;;;;;;;;-1:-1:-1;61765:104:0;;;;;:::i;:::-;;:::i;47576:86::-;;;;;;;;;;-1:-1:-1;47647:7:0;;;;47576:86;;23960:326;;;;;;;;;;-1:-1:-1;23960:326:0;;;;;:::i;:::-;;:::i;61436:101::-;;;;;;;;;;;;;:::i;57013:21::-;;;;;;;;;;;;;:::i;23603:295::-;;;;;;;;;;-1:-1:-1;23603:295:0;;;;;:::i;:::-;;:::i;50533:148::-;;;;;;;;;;;;;:::i;57179:31::-;;;;;;;;;;;;;;;;60695:370;;;;;;;;;;-1:-1:-1;60695:370:0;;;;;:::i;:::-;;:::i;61985:116::-;;;;;;;;;;-1:-1:-1;61985:116:0;;;;;:::i;:::-;;:::i;49882:87::-;;;;;;;;;;-1:-1:-1;49955:6:0;;;;;-1:-1:-1;;;;;49955:6:0;49882:87;;57477:34;;;;;;;;;;-1:-1:-1;57477:34:0;;;;;;;;61877:90;;;;;;;;;;-1:-1:-1;61877:90:0;;;;;:::i;:::-;;:::i;24522:104::-;;;;;;;;;;;;;:::i;65122:363::-;;;;;;;;;;-1:-1:-1;65122:363:0;;;;;:::i;:::-;;:::i;57217:30::-;;;;;;;;;;;;;;;;58730:828;;;;;;:::i;:::-;;:::i;26423:327::-;;;;;;;;;;-1:-1:-1;26423:327:0;;;;;:::i;:::-;;:::i;56924:75::-;;;;;;;;;;-1:-1:-1;56924:75:0;;;;-1:-1:-1;;;;;56924:75:0;;;27805:365;;;;;;;;;;-1:-1:-1;27805:365:0;;;;;:::i;:::-;;:::i;61323:105::-;;;;;;;;;;;;;:::i;57041:37::-;;;;;;;;;;;;;:::i;61659:98::-;;;;;;;;;;-1:-1:-1;61659:98:0;;;;;:::i;:::-;;:::i;59574:196::-;;;;;;;;;;-1:-1:-1;59574:196:0;;;;;:::i;:::-;;:::i;59778:526::-;;;;;;;;;;-1:-1:-1;59778:526:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;57108:30::-;;;;;;;;;;;;;;;;63877:403;;;;;;;;;;;;;:::i;26821:214::-;;;;;;;;;;-1:-1:-1;26821:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;26992:25:0;;;26963:4;26992:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26821:214;57395:41;;;;;;;;;;-1:-1:-1;57395:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;10257:25:1;;;10313:2;10298:18;;10291:34;;;;10230:18;57395:41:0;10083:248:1;50836:281:0;;;;;;;;;;-1:-1:-1;50836:281:0;;;;;:::i;:::-;;:::i;57145:27::-;;;;;;;;;;;;;;;;57518:46;;;;;;;;;;-1:-1:-1;57518:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;60312:103;60369:4;60394:12;60402:3;60394:7;:12::i;:::-;60386:21;60312:103;-1:-1:-1;;60312:103:0:o;62787:292::-;62935:4;-1:-1:-1;;;;;;62977:41:0;;-1:-1:-1;;;62977:41:0;;:94;;;63035:36;63059:11;63035:23;:36::i;62385:122::-;49955:6;;-1:-1:-1;;;;;49955:6:0;;;;;18488:10;50102:23;50094:68;;;;-1:-1:-1;;;50094:68:0;;;;;;;:::i;:::-;;;;;;;;;62467:14:::1;:32:::0;;-1:-1:-1;;;;;;62467:32:0::1;-1:-1:-1::0;;;;;62467:32:0;;;::::1;::::0;;;::::1;::::0;;62385:122::o;24353:100::-;24407:13;24440:5;24433:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24353:100;:::o;26043:308::-;26164:7;26211:16;26219:7;26211;:16::i;:::-;26189:110;;;;-1:-1:-1;;;26189:110:0;;11284:2:1;26189:110:0;;;11266:21:1;11323:2;11303:18;;;11296:30;11362:34;11342:18;;;11335:62;-1:-1:-1;;;11413:18:1;;;11406:42;11465:19;;26189:110:0;11082:408:1;26189:110:0;-1:-1:-1;26319:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26319:24:0;;26043:308::o;25566:411::-;25647:13;25663:23;25678:7;25663:14;:23::i;:::-;25647:39;;25711:5;-1:-1:-1;;;;;25705:11:0;:2;-1:-1:-1;;;;;25705:11:0;;25697:57;;;;-1:-1:-1;;;25697:57:0;;11697:2:1;25697:57:0;;;11679:21:1;11736:2;11716:18;;;11709:30;11775:34;11755:18;;;11748:62;-1:-1:-1;;;11826:18:1;;;11819:31;11867:19;;25697:57:0;11495:397:1;25697:57:0;18488:10;-1:-1:-1;;;;;25789:21:0;;;;:62;;-1:-1:-1;25814:37:0;25831:5;18488:10;26821:214;:::i;25814:37::-;25767:168;;;;-1:-1:-1;;;25767:168:0;;12099:2:1;25767:168:0;;;12081:21:1;12138:2;12118:18;;;12111:30;12177:34;12157:18;;;12150:62;12248:26;12228:18;;;12221:54;12292:19;;25767:168:0;11897:420:1;25767:168:0;25948:21;25957:2;25961:7;25948:8;:21::i;:::-;25636:341;25566:411;;:::o;27102:376::-;27311:41;18488:10;27330:12;27344:7;27311:18;:41::i;:::-;27289:140;;;;-1:-1:-1;;;27289:140:0;;;;;;;:::i;:::-;27442:28;27452:4;27458:2;27462:7;27442:9;:28::i;64667:205::-;49955:6;;-1:-1:-1;;;;;49955:6:0;;;;;18488:10;50102:23;50094:68;;;;-1:-1:-1;;;50094:68:0;;;;;;;:::i;:::-;64763:9:::1;64758:107;64782:5;:12;64778:1;:16;64758:107;;;64816:37;64837:6;64844:5;64850:1;64844:8;;;;;;;;:::i;:::-;;;;;;;64816:20;:37::i;:::-;64796:3:::0;::::1;::::0;::::1;:::i;:::-;;;;64758:107;;60423:238:::0;60606:14;;60636:7;;60541:16;;;;-1:-1:-1;;;;;60606:14:0;;;;60647:5;;60623:20;;:10;:20;:::i;:::-;60622:30;;;;:::i;:::-;60598:55;;;;60423:238;;;;;:::o;38708:343::-;38850:7;38905:23;38922:5;38905:16;:23::i;:::-;38897:5;:31;38875:124;;;;-1:-1:-1;;;38875:124:0;;13776:2:1;38875:124:0;;;13758:21:1;13815:2;13795:18;;;13788:30;13854:34;13834:18;;;13827:62;-1:-1:-1;;;13905:18:1;;;13898:41;13956:19;;38875:124:0;13574:407:1;38875:124:0;-1:-1:-1;;;;;;39017:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;38708:343::o;62115:258::-;49955:6;;-1:-1:-1;;;;;49955:6:0;;;;;18488:10;50102:23;50094:68;;;;-1:-1:-1;;;50094:68:0;;;;;;;:::i;:::-;62282:3:::1;62270:8;:15;;;;62262:74;;;::::0;-1:-1:-1;;;62262:74:0;;14600:2:1;62262:74:0::1;::::0;::::1;14582:21:1::0;14639:2;14619:18;;;14612:30;14678:34;14658:18;;;14651:62;-1:-1:-1;;;14729:18:1;;;14722:43;14782:19;;62262:74:0::1;14398:409:1::0;62262:74:0::1;62347:18;;:7;:18:::0;62115:258::o;61073:242::-;49955:6;;-1:-1:-1;;;;;49955:6:0;;;;;18488:10;50102:23;50094:68;;;;-1:-1:-1;;;50094:68:0;;;;;;;:::i;:::-;61187:1:::1;61166:11;:18;:22;61158:54;;;::::0;-1:-1:-1;;;61158:54:0;;15014:2:1;61158:54:0::1;::::0;::::1;14996:21:1::0;15053:2;15033:18;;;15026:30;-1:-1:-1;;;15072:18:1;;;15065:50;15132:18;;61158:54:0::1;14812:344:1::0;61158:54:0::1;61227:9;61223:84;61243:11;:18;61241:1;:20;61223:84;;;61306:1;61276:11;:27;61288:11;61300:1;61288:14;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;61276:27:0::1;-1:-1:-1::0;;;;;61276:27:0::1;;;;;;;;;;;;:31;;;;61262:3;;;;;:::i;:::-;;;;61223:84;;;;61073:242:::0;:::o;63512:285::-;56377:10;56399:1;56369:19;;;:7;:19;;;;;:27;56361:82;;;;-1:-1:-1;;;56361:82:0;;15363:2:1;56361:82:0;;;15345:21:1;15402:2;15382:18;;;15375:30;15441:34;15421:18;;;15414:62;-1:-1:-1;;;15492:18:1;;;15485:35;15537:19;;56361:82:0;15161:401:1;56361:82:0;63586:10:::1;63561:14;63578:19:::0;;;:7:::1;:19;::::0;;;;:26:::1;;::::0;63623:10;63615:39:::1;;;::::0;-1:-1:-1;;;63615:39:0;;15769:2:1;63615:39:0::1;::::0;::::1;15751:21:1::0;15808:2;15788:18;;;15781:30;-1:-1:-1;;;15827:18:1;;;15820:47;15884:18;;63615:39:0::1;15567:341:1::0;63615:39:0::1;63665:36;::::0;63673:10:::1;::::0;63665:36;::::1;;;::::0;63694:6;;63665:36:::1;::::0;;;63694:6;63673:10;63665:36;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;63720:10:0::1;63741:1;63712:19:::0;;;:7:::1;:19;::::0;;;;;:26:::1;;:30:::0;;;;63758:31;::::1;::::0;::::1;::::0;63782:6;2510:25:1;;2498:2;2483:18;;2364:177;63758:31:0::1;;;;;;;;63550:247;63512:285::o:0;62687:82::-;49955:6;;-1:-1:-1;;;;;49955:6:0;;;;;18488:10;50102:23;50094:68;;;;-1:-1:-1;;;50094:68:0;;;;;;;:::i;:::-;62745:16:::1;62758:2;62745:12;:16::i;:::-;62687:82:::0;:::o;27549:185::-;27687:39;27704:4;27710:2;27714:7;27687:39;;;;;;;;;;;;:16;:39::i;51579:282::-;51711:41;18488:10;51730:12;18408:98;51711:41;51689:139;;;;-1:-1:-1;;;51689:139:0;;16115:2:1;51689:139:0;;;16097:21:1;16154:2;16134:18;;;16127:30;16193:34;16173:18;;;16166:62;-1:-1:-1;;;16244:18:1;;;16237:46;16300:19;;51689:139:0;15913:412:1;51689:139:0;51839:14;51845:7;51839:5;:14::i;61545:106::-;49955:6;;-1:-1:-1;;;;;49955:6:0;;;;;18488:10;50102:23;50094:68;;;;-1:-1:-1;;;50094:68:0;;;;;;;:::i;:::-;61619:12:::1;:24:::0;61545:106::o;64336:319::-;49955:6;;-1:-1:-1;;;;;49955:6:0;;;;;18488:10;50102:23;50094:68;;;;-1:-1:-1;;;50094:68:0;;;;;;;:::i;:::-;64488:38:::1;::::0;-1:-1:-1;;;64488:38:0;;64520:4:::1;64488:38;::::0;::::1;2043:51:1::0;64444:14:0;;64414:20:::1;::::0;-1:-1:-1;;;;;64488:23:0;::::1;::::0;::::1;::::0;2016:18:1;;64488:38:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;64470:56;;64537:13;-1:-1:-1::0;;;;;64537:22:0::1;;64560:7;49955:6:::0;;-1:-1:-1;;;;;49955:6:0;;;;;;49882:87;64560:7:::1;64537:40;::::0;-1:-1:-1;;;;;;64537:40:0::1;::::0;;;;;;-1:-1:-1;;;;;5018:32:1;;;64537:40:0::1;::::0;::::1;5000:51:1::0;5067:18;;;5060:34;;;4973:18;;64537:40:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;64593:54:0::1;::::0;;-1:-1:-1;;;;;5018:32:1;;5000:51;;5082:2;5067:18;;5060:34;;;64613:10:0::1;::::0;64593:54:::1;::::0;4973:18:1;64593:54:0::1;;;;;;;64403:252;;64336:319:::0;:::o;39317:320::-;39437:7;39492:30;39215:10;:17;;39127:113;39492:30;39484:5;:38;39462:132;;;;-1:-1:-1;;;39462:132:0;;16971:2:1;39462:132:0;;;16953:21:1;17010:2;16990:18;;;16983:30;17049:34;17029:18;;;17022:62;-1:-1:-1;;;17100:18:1;;;17093:42;17152:19;;39462:132:0;16769:408:1;39462:132:0;39612:10;39623:5;39612:17;;;;;;;;:::i;:::-;;;;;;;;;39605:24;;39317:320;;;:::o;61765:104::-;49955:6;;-1:-1:-1;;;;;49955:6:0;;;;;18488:10;50102:23;50094:68;;;;-1:-1:-1;;;50094:68:0;;;;;;;:::i;:::-;61841:20;;::::1;::::0;:7:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;23960:326::-:0;24077:7;24118:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24118:16:0;;24145:110;;;;-1:-1:-1;;;24145:110:0;;17384:2:1;24145:110:0;;;17366:21:1;17423:2;17403:18;;;17396:30;17462:34;17442:18;;;17435:62;-1:-1:-1;;;17513:18:1;;;17506:39;17562:19;;24145:110:0;17182:405:1;61436:101:0;49955:6;;-1:-1:-1;;;;;49955:6:0;;;;;18488:10;50102:23;50094:68;;;;-1:-1:-1;;;50094:68:0;;;;;;;:::i;:::-;47647:7;;;;61496:33:::1;;61521:8;:6;:8::i;:::-;61436:101::o:0;61496:33::-:1;61508:10;:8;:10::i;57013:21::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23603:295::-;23720:7;-1:-1:-1;;;;;23767:19:0;;23745:111;;;;-1:-1:-1;;;23745:111:0;;17794:2:1;23745:111:0;;;17776:21:1;17833:2;17813:18;;;17806:30;17872:34;17852:18;;;17845:62;-1:-1:-1;;;17923:18:1;;;17916:40;17973:19;;23745:111:0;17592:406:1;23745:111:0;-1:-1:-1;;;;;;23874:16:0;;;;;:9;:16;;;;;;;23603:295::o;50533:148::-;49955:6;;-1:-1:-1;;;;;49955:6:0;;;;;18488:10;50102:23;50094:68;;;;-1:-1:-1;;;50094:68:0;;;;;;;:::i;:::-;50624:6:::1;::::0;50603:40:::1;::::0;50640:1:::1;::::0;50624:6:::1;::::0;::::1;-1:-1:-1::0;;;;;50624:6:0::1;::::0;50603:40:::1;::::0;50640:1;;50603:40:::1;50654:6;:19:::0;;-1:-1:-1;;;;;;50654:19:0::1;::::0;;50533:148::o;60695:370::-;49955:6;;-1:-1:-1;;;;;49955:6:0;;;;;18488:10;50102:23;50094:68;;;;-1:-1:-1;;;50094:68:0;;;;;;;:::i;:::-;60820:1:::1;60798:12;:19;:23;60790:55;;;::::0;-1:-1:-1;;;60790:55:0;;15014:2:1;60790:55:0::1;::::0;::::1;14996:21:1::0;15053:2;15033:18;;;15026:30;-1:-1:-1;;;15072:18:1;;;15065:50;15132:18;;60790:55:0::1;14812:344:1::0;60790:55:0::1;60862:9;60858:190;60880:12;:19;60876:1;:23;60858:190;;;60957:1;-1:-1:-1::0;;;;;60930:29:0::1;:12;60943:1;60930:15;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;60930:29:0::1;::::0;60922:62:::1;;;::::0;-1:-1:-1;;;60922:62:0;;18205:2:1;60922:62:0::1;::::0;::::1;18187:21:1::0;18244:2;18224:18;;;18217:30;-1:-1:-1;;;18263:18:1;;;18256:50;18323:18;;60922:62:0::1;18003:344:1::0;60922:62:0::1;61031:5;61000:11;:28;61012:12;61025:1;61012:15;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;61000:28:0::1;-1:-1:-1::0;;;;;61000:28:0::1;;;;;;;;;;;;:36;;;;60901:3;;;;;:::i;:::-;;;;60858:190;;61985:116:::0;49955:6;;-1:-1:-1;;;;;49955:6:0;;;;;18488:10;50102:23;50094:68;;;;-1:-1:-1;;;50094:68:0;;;;;;;:::i;:::-;62067:26:::1;62080:7;62089:3;62067:12;:26::i;61877:90::-:0;49955:6;;-1:-1:-1;;;;;49955:6:0;;;;;18488:10;50102:23;50094:68;;;;-1:-1:-1;;;50094:68:0;;;;;;;:::i;:::-;61943:5:::1;:16:::0;61877:90::o;24522:104::-;24578:13;24611:7;24604:14;;;;;:::i;65122:363::-;49955:6;;-1:-1:-1;;;;;49955:6:0;;;;;18488:10;50102:23;50094:68;;;;-1:-1:-1;;;50094:68:0;;;;;;;:::i;:::-;65251:14;65219:21:::1;65277:201;65301:3;:10;65297:1;:14;65277:201;;;65333:13;-1:-1:-1::0;;;;;65333:30:0::1;;65372:4;65379:7;49955:6:::0;;-1:-1:-1;;;;;49955:6:0;;;;;;49882:87;65379:7:::1;65388:3;65392:1;65388:6;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;65333:62:::1;::::0;-1:-1:-1;;;;;;65333:62:0::1;::::0;;;;;;-1:-1:-1;;;;;18610:15:1;;;65333:62:0::1;::::0;::::1;18592:34:1::0;18662:15;;;;18642:18;;;18635:43;18694:18;;;18687:34;18527:18;;65333:62:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;65433:10;-1:-1:-1::0;;;;;65415:51:0::1;;65444:14;65459:3;65463:1;65459:6;;;;;;;;:::i;:::-;;;;;;;65415:51;;;;;;-1:-1:-1::0;;;;;5018:32:1;;;;5000:51;;5082:2;5067:18;;5060:34;4988:2;4973:18;;4826:274;65415:51:0::1;;;;;;;;65313:3:::0;::::1;::::0;::::1;:::i;:::-;;;;65277:201;;;;65208:277;65122:363:::0;;:::o;58730:828::-;47647:7;;;;47901:9;47893:38;;;;-1:-1:-1;;;47893:38:0;;;;;;;:::i;:::-;58800:14:::1;58817:13;39215:10:::0;:17;;39127:113;58817:13:::1;58800:30;;58858:1;58849:6;:10;:32;;;;;58873:8;;58863:6;:18;;58849:32;58841:67;;;::::0;-1:-1:-1;;;58841:67:0;;19279:2:1;58841:67:0::1;::::0;::::1;19261:21:1::0;19318:2;19298:18;;;19291:30;19357:25;19337:18;;;19330:53;19400:18;;58841:67:0::1;19077:347:1::0;58841:67:0::1;58956:12;;58927:21;58937:10;58927:9;:21::i;:::-;:25;::::0;58951:1:::1;58927:25;:::i;:::-;:41;;58919:81;;;::::0;-1:-1:-1;;;58919:81:0;;19764:2:1;58919:81:0::1;::::0;::::1;19746:21:1::0;19803:2;19783:18;;;19776:30;19842;19822:18;;;19815:58;19890:18;;58919:81:0::1;19562:352:1::0;58919:81:0::1;59040:6;59032:5;;:14;;;;:::i;:::-;59019:9;:27;59011:60;;;::::0;-1:-1:-1;;;59011:60:0;;20121:2:1;59011:60:0::1;::::0;::::1;20103:21:1::0;20160:2;20140:18;;;20133:30;-1:-1:-1;;;20179:18:1;;;20172:50;20239:18;;59011:60:0::1;19919:344:1::0;59011:60:0::1;59112:9;::::0;59108:1:::1;59090:15;59099:6:::0;59090;:15:::1;:::i;:::-;:19;;;;:::i;:::-;:31;59082:85;;;::::0;-1:-1:-1;;;59082:85:0;;20600:2:1;59082:85:0::1;::::0;::::1;20582:21:1::0;20639:2;20619:18;;;20612:30;20678:34;20658:18;;;20651:62;-1:-1:-1;;;20729:18:1;;;20722:39;20778:19;;59082:85:0::1;20398:405:1::0;59082:85:0::1;59181:15;::::0;::::1;;59178:135;;;59227:10;59215:23;::::0;;;:11:::1;:23;::::0;;;;;:33;-1:-1:-1;59215:33:0::1;59207:106;;;::::0;-1:-1:-1;;;59207:106:0;;21010:2:1;59207:106:0::1;::::0;::::1;20992:21:1::0;21049:2;21029:18;;;21022:30;21088:34;21068:18;;;21061:62;21159:31;21139:18;;;21132:59;21208:19;;59207:106:0::1;20808:425:1::0;59207:106:0::1;59349:9;59344:164;59368:6;59364:1;:10;59344:164;;;59396:24;59409:10;59396:12;:24::i;:::-;59438:15;::::0;::::1;;59435:61;;;59480:10;59468:23;::::0;;;:11:::1;:23;::::0;;;;:28;;59495:1:::1;::::0;59468:23;:28:::1;::::0;59495:1;;59468:28:::1;:::i;:::-;::::0;;;-1:-1:-1;;59435:61:0::1;59376:3:::0;::::1;::::0;::::1;:::i;:::-;;;;59344:164;;;;59530:20;59540:9;59530;:20::i;26423:327::-:0;18488:10;-1:-1:-1;;;;;26558:24:0;;;26550:62;;;;-1:-1:-1;;;26550:62:0;;21440:2:1;26550:62:0;;;21422:21:1;21479:2;21459:18;;;21452:30;21518:27;21498:18;;;21491:55;21563:18;;26550:62:0;21238:349:1;26550:62:0;18488:10;26625:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;26625:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;26625:53:0;;;;;;;;;;26694:48;;339:41:1;;;26625:42:0;;18488:10;26694:48;;312:18:1;26694:48:0;;;;;;;26423:327;;:::o;27805:365::-;27994:41;18488:10;28027:7;27994:18;:41::i;:::-;27972:140;;;;-1:-1:-1;;;27972:140:0;;;;;;;:::i;:::-;28123:39;28137:4;28143:2;28147:7;28156:5;28123:13;:39::i;61323:105::-;49955:6;;-1:-1:-1;;;;;49955:6:0;;;;;18488:10;50102:23;50094:68;;;;-1:-1:-1;;;50094:68:0;;;;;;;:::i;:::-;61405:15:::1;::::0;;-1:-1:-1;;61386:34:0;::::1;61405:15;::::0;;::::1;61404:16;61386:34;::::0;;61323:105::o;57041:37::-;;;;;;;:::i;61659:98::-;49955:6;;-1:-1:-1;;;;;49955:6:0;;;;;18488:10;50102:23;50094:68;;;;-1:-1:-1;;;50094:68:0;;;;;;;:::i;:::-;61729:8:::1;:20:::0;61659:98::o;59574:196::-;59701:13;59739:23;59754:7;59739:14;:23::i;59778:526::-;59859:16;59893:18;59914:17;59924:6;59914:9;:17::i;:::-;59893:38;;59946:10;59960:1;59946:15;59942:355;;59985:16;;;59999:1;59985:16;;;;;;;;;;;-1:-1:-1;59978:23:0;59778:526;-1:-1:-1;;;59778:526:0:o;59942:355::-;60034:23;60074:10;60060:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;60060:25:0;;60034:51;;60100:13;60128:130;60152:10;60144:5;:18;60128:130;;;60208:34;60228:6;60236:5;60208:19;:34::i;:::-;60192:6;60199:5;60192:13;;;;;;;;:::i;:::-;;;;;;;;;;:50;60164:7;;;;:::i;:::-;;;;60128:130;;59942:355;59882:422;59778:526;;;:::o;63877:403::-;49955:6;;-1:-1:-1;;;;;49955:6:0;;;;;18488:10;50102:23;50094:68;;;;-1:-1:-1;;;50094:68:0;;;;;;;:::i;:::-;63953:21:::1;63993:10:::0;63985:39:::1;;;::::0;-1:-1:-1;;;63985:39:0;;15769:2:1;63985:39:0::1;::::0;::::1;15751:21:1::0;15808:2;15788:18;;;15781:30;-1:-1:-1;;;15827:18:1;;;15820:47;15884:18;;63985:39:0::1;15567:341:1::0;63985:39:0::1;64035:36;::::0;64043:10:::1;::::0;64035:36;::::1;;;::::0;64064:6;;64035:36:::1;::::0;;;64064:6;64043:10;64035:36;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;64086:7;64082:144;64102:7;:14:::0;64098:18:::1;::::0;::::1;;64082:144;;;64138:18;64159:7;64167:1;64159:10;;;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;64159:10:0::1;64184:19:::0;;:7:::1;:19:::0;;;;;64159:10;64184:26:::1;:30:::0;-1:-1:-1;64118:3:0;::::1;::::0;::::1;:::i;:::-;;;;64082:144;;;-1:-1:-1::0;64241:31:0::1;::::0;2510:25:1;;;64254:10:0::1;::::0;64241:31:::1;::::0;2498:2:1;2483:18;64241:31:0::1;2364:177:1::0;50836:281:0;49955:6;;-1:-1:-1;;;;;49955:6:0;;;;;18488:10;50102:23;50094:68;;;;-1:-1:-1;;;50094:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;50939:22:0;::::1;50917:110;;;::::0;-1:-1:-1;;;50917:110:0;;21974:2:1;50917:110:0::1;::::0;::::1;21956:21:1::0;22013:2;21993:18;;;21986:30;22052:34;22032:18;;;22025:62;-1:-1:-1;;;22103:18:1;;;22096:36;22149:19;;50917:110:0::1;21772:402:1::0;50917:110:0::1;51064:6;::::0;51043:38:::1;::::0;-1:-1:-1;;;;;51043:38:0;;::::1;::::0;51064:6:::1;::::0;::::1;;::::0;51043:38:::1;::::0;;;::::1;51092:6;:17:::0;;-1:-1:-1;;;;;51092:17:0;;::::1;;;-1:-1:-1::0;;;;;;51092:17:0;;::::1;::::0;;;::::1;::::0;;50836:281::o;29717:127::-;29782:4;29806:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29806:16:0;:30;;;29717:127::o;38324:300::-;38471:4;-1:-1:-1;;;;;;38513:50:0;;-1:-1:-1;;;38513:50:0;;:103;;;38580:36;38604:11;38580:23;:36::i;33840:174::-;33915:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;33915:29:0;-1:-1:-1;;;;;33915:29:0;;;;;;;;:24;;33969:23;33915:24;33969:14;:23::i;:::-;-1:-1:-1;;;;;33960:46:0;;;;;;;;;;;33840:174;;:::o;30011:452::-;30140:4;30184:16;30192:7;30184;:16::i;:::-;30162:110;;;;-1:-1:-1;;;30162:110:0;;22381:2:1;30162:110:0;;;22363:21:1;22420:2;22400:18;;;22393:30;22459:34;22439:18;;;22432:62;-1:-1:-1;;;22510:18:1;;;22503:42;22562:19;;30162:110:0;22179:408:1;30162:110:0;30283:13;30299:23;30314:7;30299:14;:23::i;:::-;30283:39;;30352:5;-1:-1:-1;;;;;30341:16:0;:7;-1:-1:-1;;;;;30341:16:0;;:64;;;;30398:7;-1:-1:-1;;;;;30374:31:0;:20;30386:7;30374:11;:20::i;:::-;-1:-1:-1;;;;;30374:31:0;;30341:64;:113;;;-1:-1:-1;;;;;;26992:25:0;;;26963:4;26992:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30422:32;30333:122;30011:452;-1:-1:-1;;;;30011:452:0:o;33107:615::-;33280:4;-1:-1:-1;;;;;33253:31:0;:23;33268:7;33253:14;:23::i;:::-;-1:-1:-1;;;;;33253:31:0;;33231:122;;;;-1:-1:-1;;;33231:122:0;;22794:2:1;33231:122:0;;;22776:21:1;22833:2;22813:18;;;22806:30;22872:34;22852:18;;;22845:62;-1:-1:-1;;;22923:18:1;;;22916:39;22972:19;;33231:122:0;22592:405:1;33231:122:0;-1:-1:-1;;;;;33372:16:0;;33364:65;;;;-1:-1:-1;;;33364:65:0;;23204:2:1;33364:65:0;;;23186:21:1;23243:2;23223:18;;;23216:30;23282:34;23262:18;;;23255:62;-1:-1:-1;;;23333:18:1;;;23326:34;23377:19;;33364:65:0;23002:400:1;33364:65:0;33442:39;33463:4;33469:2;33473:7;33442:20;:39::i;:::-;33546:29;33563:1;33567:7;33546:8;:29::i;:::-;-1:-1:-1;;;;;33588:15:0;;;;;;:9;:15;;;;;:20;;33607:1;;33588:15;:20;;33607:1;;33588:20;:::i;:::-;;;;-1:-1:-1;;;;;;;33619:13:0;;;;;;:9;:13;;;;;:18;;33636:1;;33619:13;:18;;33636:1;;33619:18;:::i;:::-;;;;-1:-1:-1;;33648:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33648:21:0;-1:-1:-1;;;;;33648:21:0;;;;;;;;;33687:27;;33648:16;;33687:27;;;;;;;33107:615;;;:::o;64884:171::-;64970:9;64965:83;64989:6;64985:1;:10;64965:83;;;65017:19;65030:5;65017:12;:19::i;:::-;64997:3;;;;:::i;:::-;;;;64965:83;;62543:136;62598:15;62616:18;:16;:18::i;:::-;:22;;62637:1;62616:22;:::i;:::-;62598:40;;62649:22;62659:2;62663:7;62649:9;:22::i;63336:138::-;63446:20;63458:7;63446:11;:20::i;48376:118::-;47647:7;;;;47901:9;47893:38;;;;-1:-1:-1;;;47893:38:0;;;;;;;:::i;:::-;48436:7:::1;:14:::0;;-1:-1:-1;;48436:14:0::1;48446:4;48436:14;::::0;;48466:20:::1;48473:12;18488:10:::0;;18408:98;48473:12:::1;48466:20;::::0;-1:-1:-1;;;;;2061:32:1;;;2043:51;;2031:2;2016:18;48466:20:0::1;;;;;;;48376:118::o:0;48635:120::-;47647:7;;;;48171:41;;;;-1:-1:-1;;;48171:41:0;;23609:2:1;48171:41:0;;;23591:21:1;23648:2;23628:18;;;23621:30;-1:-1:-1;;;23667:18:1;;;23660:50;23727:18;;48171:41:0;23407:344:1;48171:41:0;48694:7:::1;:15:::0;;-1:-1:-1;;48694:15:0::1;::::0;;48725:22:::1;18488:10:::0;48734:12:::1;18408:98:::0;45783:277;45920:16;45928:7;45920;:16::i;:::-;45898:112;;;;-1:-1:-1;;;45898:112:0;;23958:2:1;45898:112:0;;;23940:21:1;23997:2;23977:18;;;23970:30;24036:34;24016:18;;;24009:62;-1:-1:-1;;;24087:18:1;;;24080:44;24141:19;;45898:112:0;23756:410:1;45898:112:0;46021:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;58359:357::-;58424:7;58420:287;58440:7;:14;58436:18;;;;58420:287;;;58476:18;58497:7;58505:1;58497:10;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;58497:10:0;58540:19;;;:7;:19;;;;;;:27;58497:10;;-1:-1:-1;58540:27:0;58605:33;58632:5;58605:22;:10;58540:27;58605:14;:22::i;:::-;:26;;:33::i;:::-;-1:-1:-1;;;;;58653:19:0;;;;;;:7;:19;;;;;:26;;:42;;58582:56;;-1:-1:-1;58582:56:0;;58653:26;;:19;:42;;58582:56;;58653:42;:::i;:::-;;;;;;;;58461:246;;;58456:3;;;;;:::i;:::-;;;;58420:287;;29052:352;29209:28;29219:4;29225:2;29229:7;29209:9;:28::i;:::-;29270:48;29293:4;29299:2;29303:7;29312:5;29270:22;:48::i;:::-;29248:148;;;;-1:-1:-1;;;29248:148:0;;;;;;;:::i;45166:461::-;45284:13;45337:16;45345:7;45337;:16::i;:::-;45315:115;;;;-1:-1:-1;;;45315:115:0;;24792:2:1;45315:115:0;;;24774:21:1;24831:2;24811:18;;;24804:30;24870:34;24850:18;;;24843:62;-1:-1:-1;;;24921:18:1;;;24914:47;24978:19;;45315:115:0;24590:413:1;45315:115:0;45443:18;45464:10;:8;:10::i;:::-;45443:31;;45485:17;45505:16;:14;:16::i;:::-;45485:36;;45584:4;45590:20;45591:7;45590:18;:20::i;:::-;45612:3;45567:49;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45553:64;;;;45166:461;;;:::o;23184:355::-;23331:4;-1:-1:-1;;;;;;23373:40:0;;-1:-1:-1;;;23373:40:0;;:105;;-1:-1:-1;;;;;;;23430:48:0;;-1:-1:-1;;;23430:48:0;23373:105;:158;;;-1:-1:-1;;;;;;;;;;21809:40:0;;;23495:36;21650:207;63091:229;47647:7;;;;47901:9;47893:38;;;;-1:-1:-1;;;47893:38:0;;;;;;;:::i;:::-;63267:45:::1;63294:4;63300:2;63304:7;63267:26;:45::i;606:775::-:0;659:7;679:13;705:11;;695:9;:21;;;;:::i;:::-;679:37;;727:12;750:14;777:9;806:5;789:14;:12;:14::i;:::-;:22;;;;:::i;:::-;777:34;-1:-1:-1;890:11:0;:20;902:7;908:1;902:5;:7;:::i;:::-;890:20;;;;;;;;;;;;914:1;890:25;886:131;;938:7;944:1;938:5;:7;:::i;:::-;931:14;;886:131;;;985:11;:20;997:7;1003:1;997:5;:7;:::i;:::-;985:20;;;;;;;;;;;;978:27;;886:131;1141:14;;;;:11;:14;;;;;;:19;;1137:189;;1201:14;;;;:11;:14;;;;;:21;;;1185:1;-1:-1:-1;1185:1:0;1137:189;;;1264:14;;;;:11;:14;;;;;;;1293:21;;;;1264:14;-1:-1:-1;1137:189:0;1336:11;:13;;;:11;:13;;;:::i;:::-;;;;-1:-1:-1;1367:6:0;;606:775;-1:-1:-1;;;;;606:775:0:o;30805:110::-;30881:26;30891:2;30895:7;30881:26;;;;;;;;;;;;:9;:26::i;46289:206::-;46358:20;46370:7;46358:11;:20::i;:::-;46401:19;;;;:10;:19;;;;;46395:33;;;;;:::i;:::-;:38;;-1:-1:-1;46391:97:0;;46457:19;;;;:10;:19;;;;;46450:26;;;:::i;55115:250::-;55173:7;55197:1;55202;55197:6;55193:47;;-1:-1:-1;55227:1:0;55220:8;;55193:47;55252:9;55264:5;55268:1;55264;:5;:::i;:::-;55252:17;-1:-1:-1;55297:1:0;55288:5;55292:1;55252:17;55288:5;:::i;:::-;:10;55280:56;;;;-1:-1:-1;;;55280:56:0;;25996:2:1;55280:56:0;;;25978:21:1;26035:2;26015:18;;;26008:30;26074:34;26054:18;;;26047:62;-1:-1:-1;;;26125:18:1;;;26118:31;26166:19;;55280:56:0;25794:397:1;55280:56:0;55356:1;55115:250;-1:-1:-1;;;55115:250:0:o;55375:132::-;55433:7;55460:39;55464:1;55467;55460:39;;;;;;;;;;;;;;;;;:3;:39::i;34579:1053::-;34734:4;-1:-1:-1;;;;;34755:13:0;;10202:20;10250:8;34751:874;;34808:175;;-1:-1:-1;;;34808:175:0;;-1:-1:-1;;;;;34808:36:0;;;;;:175;;18488:10;;34902:4;;34929:7;;34959:5;;34808:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34808:175:0;;;;;;;;-1:-1:-1;;34808:175:0;;;;;;;;;;;;:::i;:::-;;;34787:783;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35170:6;:13;35187:1;35170:18;35166:389;;35213:108;;-1:-1:-1;;;35213:108:0;;;;;;;:::i;35166:389::-;35505:6;35499:13;35490:6;35486:2;35482:15;35475:38;34787:783;-1:-1:-1;;;;;;35047:55:0;-1:-1:-1;;;35047:55:0;;-1:-1:-1;35040:62:0;;34751:874;-1:-1:-1;35609:4:0;34579:1053;;;;;;:::o;58246:100::-;58298:13;58331:7;58324:14;;;;;:::i;58124:112::-;58182:13;58215;58208:20;;;;;:::i;19065:723::-;19121:13;19342:5;19351:1;19342:10;19338:53;;-1:-1:-1;;19369:10:0;;;;;;;;;;;;-1:-1:-1;;;19369:10:0;;;;;19065:723::o;19338:53::-;19416:5;19401:12;19457:78;19464:9;;19457:78;;19490:8;;;;:::i;:::-;;-1:-1:-1;19513:10:0;;-1:-1:-1;19521:2:0;19513:10;;:::i;:::-;;;19457:78;;;19545:19;19577:6;19567:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19567:17:0;;19545:39;;19595:154;19602:10;;19595:154;;19629:11;19639:1;19629:11;;:::i;:::-;;-1:-1:-1;19698:10:0;19706:2;19698:5;:10;:::i;:::-;19685:24;;:2;:24;:::i;:::-;19672:39;;19655:6;19662;19655:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;19655:56:0;;;;;;;;-1:-1:-1;19726:11:0;19735:2;19726:11;;:::i;:::-;;;19595:154;;40250:589;-1:-1:-1;;;;;40456:18:0;;40452:187;;40491:40;40523:7;41666:10;:17;;41639:24;;;;:15;:24;;;;;:44;;;41694:24;;;;;;;;;;;;41562:164;40491:40;40452:187;;;40561:2;-1:-1:-1;;;;;40553:10:0;:4;-1:-1:-1;;;;;40553:10:0;;40549:90;;40580:47;40613:4;40619:7;40580:32;:47::i;:::-;-1:-1:-1;;;;;40653:16:0;;40649:183;;40686:45;40723:7;40686:36;:45::i;40649:183::-;40759:4;-1:-1:-1;;;;;40753:10:0;:2;-1:-1:-1;;;;;40753:10:0;;40749:83;;40780:40;40808:2;40812:7;40780:27;:40::i;1389:151::-;1435:7;1496:16;1514:15;1479:51;;;;;;;;27101:19:1;;;27145:2;27136:12;;27129:28;27182:2;27173:12;;26944:247;1479:51:0;;;;;;;;;;;;;1469:62;;;;;;1461:71;;1454:78;;1389:151;:::o;31142:321::-;31272:18;31278:2;31282:7;31272:5;:18::i;:::-;31323:54;31354:1;31358:2;31362:7;31371:5;31323:22;:54::i;:::-;31301:154;;;;-1:-1:-1;;;31301:154:0;;;;;;;:::i;32410:360::-;32470:13;32486:23;32501:7;32486:14;:23::i;:::-;32470:39;;32522:48;32543:5;32558:1;32562:7;32522:20;:48::i;:::-;32611:29;32628:1;32632:7;32611:8;:29::i;:::-;-1:-1:-1;;;;;32653:16:0;;;;;;:9;:16;;;;;:21;;32673:1;;32653:16;:21;;32673:1;;32653:21;:::i;:::-;;;;-1:-1:-1;;32692:16:0;;;;:7;:16;;;;;;32685:23;;-1:-1:-1;;;;;;32685:23:0;;;32726:36;32700:7;;32692:16;-1:-1:-1;;;;;32726:36:0;;;;;32692:16;;32726:36;32459:311;32410:360;:::o;55515:278::-;55601:7;55636:12;55629:5;55621:28;;;;-1:-1:-1;;;55621:28:0;;;;;;;;:::i;:::-;-1:-1:-1;55660:9:0;55672:5;55676:1;55672;:5;:::i;:::-;55660:17;55515:278;-1:-1:-1;;;;;55515:278:0:o;42353:1002::-;42633:22;42683:1;42658:22;42675:4;42658:16;:22::i;:::-;:26;;;;:::i;:::-;42695:18;42716:26;;;:17;:26;;;;;;42633:51;;-1:-1:-1;42849:28:0;;;42845:328;;-1:-1:-1;;;;;42916:18:0;;42894:19;42916:18;;;:12;:18;;;;;;;;:34;;;;;;;;;42967:30;;;;;;:44;;;43084:30;;:17;:30;;;;;:43;;;42845:328;-1:-1:-1;43269:26:0;;;;:17;:26;;;;;;;;43262:33;;;-1:-1:-1;;;;;43313:18:0;;;;;:12;:18;;;;;:34;;;;;;;43306:41;42353:1002::o;43650:1079::-;43928:10;:17;43903:22;;43928:21;;43948:1;;43928:21;:::i;:::-;43960:18;43981:24;;;:15;:24;;;;;;44354:10;:26;;43903:46;;-1:-1:-1;43981:24:0;;43903:46;;44354:26;;;;;;:::i;:::-;;;;;;;;;44332:48;;44418:11;44393:10;44404;44393:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;44498:28;;;:15;:28;;;;;;;:41;;;44670:24;;;;;44663:31;44705:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;43721:1008;;;43650:1079;:::o;41140:221::-;41225:14;41242:20;41259:2;41242:16;:20::i;:::-;-1:-1:-1;;;;;41273:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;41318:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;41140:221:0:o;31799:382::-;-1:-1:-1;;;;;31879:16:0;;31871:61;;;;-1:-1:-1;;;31871:61:0;;27530:2:1;31871:61:0;;;27512:21:1;;;27549:18;;;27542:30;27608:34;27588:18;;;27581:62;27660:18;;31871:61:0;27328:356:1;31871:61:0;31952:16;31960:7;31952;:16::i;:::-;31951:17;31943:58;;;;-1:-1:-1;;;31943:58:0;;27891:2:1;31943:58:0;;;27873:21:1;27930:2;27910:18;;;27903:30;27969;27949:18;;;27942:58;28017:18;;31943:58:0;27689:352:1;31943:58:0;32014:45;32043:1;32047:2;32051:7;32014:20;:45::i;:::-;-1:-1:-1;;;;;32072:13:0;;;;;;:9;:13;;;;;:18;;32089:1;;32072:13;:18;;32089:1;;32072:18;:::i;:::-;;;;-1:-1:-1;;32101:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32101:21:0;-1:-1:-1;;;;;32101:21:0;;;;;;;;32140:33;;32101:16;;;32140:33;;32101:16;;32140:33;31799:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:180:1;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;-1:-1:-1;165:23:1;;14:180;-1:-1:-1;14:180:1:o;391:131::-;-1:-1:-1;;;;;;465:32:1;;455:43;;445:71;;512:1;509;502:12;527:245;585:6;638:2;626:9;617:7;613:23;609:32;606:52;;;654:1;651;644:12;606:52;693:9;680:23;712:30;736:5;712:30;:::i;777:173::-;845:20;;-1:-1:-1;;;;;894:31:1;;884:42;;874:70;;940:1;937;930:12;874:70;777:173;;;:::o;955:186::-;1014:6;1067:2;1055:9;1046:7;1042:23;1038:32;1035:52;;;1083:1;1080;1073:12;1035:52;1106:29;1125:9;1106:29;:::i;1146:258::-;1218:1;1228:113;1242:6;1239:1;1236:13;1228:113;;;1318:11;;;1312:18;1299:11;;;1292:39;1264:2;1257:10;1228:113;;;1359:6;1356:1;1353:13;1350:48;;;-1:-1:-1;;1394:1:1;1376:16;;1369:27;1146:258::o;1409:::-;1451:3;1489:5;1483:12;1516:6;1511:3;1504:19;1532:63;1588:6;1581:4;1576:3;1572:14;1565:4;1558:5;1554:16;1532:63;:::i;:::-;1649:2;1628:15;-1:-1:-1;;1624:29:1;1615:39;;;;1656:4;1611:50;;1409:258;-1:-1:-1;;1409:258:1:o;1672:220::-;1821:2;1810:9;1803:21;1784:4;1841:45;1882:2;1871:9;1867:18;1859:6;1841:45;:::i;2105:254::-;2173:6;2181;2234:2;2222:9;2213:7;2209:23;2205:32;2202:52;;;2250:1;2247;2240:12;2202:52;2273:29;2292:9;2273:29;:::i;:::-;2263:39;2349:2;2334:18;;;;2321:32;;-1:-1:-1;;;2105:254:1:o;2546:328::-;2623:6;2631;2639;2692:2;2680:9;2671:7;2667:23;2663:32;2660:52;;;2708:1;2705;2698:12;2660:52;2731:29;2750:9;2731:29;:::i;:::-;2721:39;;2779:38;2813:2;2802:9;2798:18;2779:38;:::i;:::-;2769:48;;2864:2;2853:9;2849:18;2836:32;2826:42;;2546:328;;;;;:::o;2879:127::-;2940:10;2935:3;2931:20;2928:1;2921:31;2971:4;2968:1;2961:15;2995:4;2992:1;2985:15;3011:275;3082:2;3076:9;3147:2;3128:13;;-1:-1:-1;;3124:27:1;3112:40;;3182:18;3167:34;;3203:22;;;3164:62;3161:88;;;3229:18;;:::i;:::-;3265:2;3258:22;3011:275;;-1:-1:-1;3011:275:1:o;3291:183::-;3351:4;3384:18;3376:6;3373:30;3370:56;;;3406:18;;:::i;:::-;-1:-1:-1;3451:1:1;3447:14;3463:4;3443:25;;3291:183::o;3479:668::-;3533:5;3586:3;3579:4;3571:6;3567:17;3563:27;3553:55;;3604:1;3601;3594:12;3553:55;3640:6;3627:20;3666:4;3690:60;3706:43;3746:2;3706:43;:::i;:::-;3690:60;:::i;:::-;3784:15;;;3870:1;3866:10;;;;3854:23;;3850:32;;;3815:12;;;;3894:15;;;3891:35;;;3922:1;3919;3912:12;3891:35;3958:2;3950:6;3946:15;3970:148;3986:6;3981:3;3978:15;3970:148;;;4052:23;4071:3;4052:23;:::i;:::-;4040:36;;4096:12;;;;4003;;3970:148;;;-1:-1:-1;4136:5:1;3479:668;-1:-1:-1;;;;;;3479:668:1:o;4152:416::-;4245:6;4253;4306:2;4294:9;4285:7;4281:23;4277:32;4274:52;;;4322:1;4319;4312:12;4274:52;4362:9;4349:23;4395:18;4387:6;4384:30;4381:50;;;4427:1;4424;4417:12;4381:50;4450:61;4503:7;4494:6;4483:9;4479:22;4450:61;:::i;:::-;4440:71;4558:2;4543:18;;;;4530:32;;-1:-1:-1;;;;4152:416:1:o;4573:248::-;4641:6;4649;4702:2;4690:9;4681:7;4677:23;4673:32;4670:52;;;4718:1;4715;4708:12;4670:52;-1:-1:-1;;4741:23:1;;;4811:2;4796:18;;;4783:32;;-1:-1:-1;4573:248:1:o;5105:272::-;5163:6;5216:2;5204:9;5195:7;5191:23;5187:32;5184:52;;;5232:1;5229;5222:12;5184:52;5271:9;5258:23;5321:6;5314:5;5310:18;5303:5;5300:29;5290:57;;5343:1;5340;5333:12;5382:348;5466:6;5519:2;5507:9;5498:7;5494:23;5490:32;5487:52;;;5535:1;5532;5525:12;5487:52;5575:9;5562:23;5608:18;5600:6;5597:30;5594:50;;;5640:1;5637;5630:12;5594:50;5663:61;5716:7;5707:6;5696:9;5692:22;5663:61;:::i;5735:407::-;5800:5;5834:18;5826:6;5823:30;5820:56;;;5856:18;;:::i;:::-;5894:57;5939:2;5918:15;;-1:-1:-1;;5914:29:1;5945:4;5910:40;5894:57;:::i;:::-;5885:66;;5974:6;5967:5;5960:21;6014:3;6005:6;6000:3;5996:16;5993:25;5990:45;;;6031:1;6028;6021:12;5990:45;6080:6;6075:3;6068:4;6061:5;6057:16;6044:43;6134:1;6127:4;6118:6;6111:5;6107:18;6103:29;6096:40;5735:407;;;;;:::o;6147:222::-;6190:5;6243:3;6236:4;6228:6;6224:17;6220:27;6210:55;;6261:1;6258;6251:12;6210:55;6283:80;6359:3;6350:6;6337:20;6330:4;6322:6;6318:17;6283:80;:::i;6374:322::-;6443:6;6496:2;6484:9;6475:7;6471:23;6467:32;6464:52;;;6512:1;6509;6502:12;6464:52;6552:9;6539:23;6585:18;6577:6;6574:30;6571:50;;;6617:1;6614;6607:12;6571:50;6640;6682:7;6673:6;6662:9;6658:22;6640:50;:::i;6701:390::-;6779:6;6787;6840:2;6828:9;6819:7;6815:23;6811:32;6808:52;;;6856:1;6853;6846:12;6808:52;6892:9;6879:23;6869:33;;6953:2;6942:9;6938:18;6925:32;6980:18;6972:6;6969:30;6966:50;;;7012:1;7009;7002:12;6966:50;7035;7077:7;7068:6;7057:9;7053:22;7035:50;:::i;:::-;7025:60;;;6701:390;;;;;:::o;7096:965::-;7189:6;7197;7250:2;7238:9;7229:7;7225:23;7221:32;7218:52;;;7266:1;7263;7256:12;7218:52;7289:29;7308:9;7289:29;:::i;:::-;7279:39;;7337:2;7390;7379:9;7375:18;7362:32;7417:18;7409:6;7406:30;7403:50;;;7449:1;7446;7439:12;7403:50;7472:22;;7525:4;7517:13;;7513:27;-1:-1:-1;7503:55:1;;7554:1;7551;7544:12;7503:55;7590:2;7577:16;7613:60;7629:43;7669:2;7629:43;:::i;7613:60::-;7707:15;;;7789:1;7785:10;;;;7777:19;;7773:28;;;7738:12;;;;7813:19;;;7810:39;;;7845:1;7842;7835:12;7810:39;7869:11;;;;7889:142;7905:6;7900:3;7897:15;7889:142;;;7971:17;;7959:30;;7922:12;;;;8009;;;;7889:142;;;8050:5;8040:15;;;;;;;7096:965;;;;;:::o;8066:118::-;8152:5;8145:13;8138:21;8131:5;8128:32;8118:60;;8174:1;8171;8164:12;8189:315;8254:6;8262;8315:2;8303:9;8294:7;8290:23;8286:32;8283:52;;;8331:1;8328;8321:12;8283:52;8354:29;8373:9;8354:29;:::i;:::-;8344:39;;8433:2;8422:9;8418:18;8405:32;8446:28;8468:5;8446:28;:::i;:::-;8493:5;8483:15;;;8189:315;;;;;:::o;8509:667::-;8604:6;8612;8620;8628;8681:3;8669:9;8660:7;8656:23;8652:33;8649:53;;;8698:1;8695;8688:12;8649:53;8721:29;8740:9;8721:29;:::i;:::-;8711:39;;8769:38;8803:2;8792:9;8788:18;8769:38;:::i;:::-;8759:48;;8854:2;8843:9;8839:18;8826:32;8816:42;;8909:2;8898:9;8894:18;8881:32;8936:18;8928:6;8925:30;8922:50;;;8968:1;8965;8958:12;8922:50;8991:22;;9044:4;9036:13;;9032:27;-1:-1:-1;9022:55:1;;9073:1;9070;9063:12;9022:55;9096:74;9162:7;9157:2;9144:16;9139:2;9135;9131:11;9096:74;:::i;:::-;9086:84;;;8509:667;;;;;;;:::o;9181:632::-;9352:2;9404:21;;;9474:13;;9377:18;;;9496:22;;;9323:4;;9352:2;9575:15;;;;9549:2;9534:18;;;9323:4;9618:169;9632:6;9629:1;9626:13;9618:169;;;9693:13;;9681:26;;9762:15;;;;9727:12;;;;9654:1;9647:9;9618:169;;;-1:-1:-1;9804:3:1;;9181:632;-1:-1:-1;;;;;;9181:632:1:o;9818:260::-;9886:6;9894;9947:2;9935:9;9926:7;9922:23;9918:32;9915:52;;;9963:1;9960;9953:12;9915:52;9986:29;10005:9;9986:29;:::i;:::-;9976:39;;10034:38;10068:2;10057:9;10053:18;10034:38;:::i;:::-;10024:48;;9818:260;;;;;:::o;10336:356::-;10538:2;10520:21;;;10557:18;;;10550:30;10616:34;10611:2;10596:18;;10589:62;10683:2;10668:18;;10336:356::o;10697:380::-;10776:1;10772:12;;;;10819;;;10840:61;;10894:4;10886:6;10882:17;10872:27;;10840:61;10947:2;10939:6;10936:14;10916:18;10913:38;10910:161;;10993:10;10988:3;10984:20;10981:1;10974:31;11028:4;11025:1;11018:15;11056:4;11053:1;11046:15;12322:413;12524:2;12506:21;;;12563:2;12543:18;;;12536:30;12602:34;12597:2;12582:18;;12575:62;-1:-1:-1;;;12668:2:1;12653:18;;12646:47;12725:3;12710:19;;12322:413::o;12740:127::-;12801:10;12796:3;12792:20;12789:1;12782:31;12832:4;12829:1;12822:15;12856:4;12853:1;12846:15;12872:127;12933:10;12928:3;12924:20;12921:1;12914:31;12964:4;12961:1;12954:15;12988:4;12985:1;12978:15;13004:135;13043:3;13064:17;;;13061:43;;13084:18;;:::i;:::-;-1:-1:-1;13131:1:1;13120:13;;13004:135::o;13144:168::-;13184:7;13250:1;13246;13242:6;13238:14;13235:1;13232:21;13227:1;13220:9;13213:17;13209:45;13206:71;;;13257:18;;:::i;:::-;-1:-1:-1;13297:9:1;;13144:168::o;13317:127::-;13378:10;13373:3;13369:20;13366:1;13359:31;13409:4;13406:1;13399:15;13433:4;13430:1;13423:15;13449:120;13489:1;13515;13505:35;;13520:18;;:::i;:::-;-1:-1:-1;13554:9:1;;13449:120::o;16330:184::-;16400:6;16453:2;16441:9;16432:7;16428:23;16424:32;16421:52;;;16469:1;16466;16459:12;16421:52;-1:-1:-1;16492:16:1;;16330:184;-1:-1:-1;16330:184:1:o;16519:245::-;16586:6;16639:2;16627:9;16618:7;16614:23;16610:32;16607:52;;;16655:1;16652;16645:12;16607:52;16687:9;16681:16;16706:28;16728:5;16706:28;:::i;18732:340::-;18934:2;18916:21;;;18973:2;18953:18;;;18946:30;-1:-1:-1;;;19007:2:1;18992:18;;18985:46;19063:2;19048:18;;18732:340::o;19429:128::-;19469:3;19500:1;19496:6;19493:1;19490:13;19487:39;;;19506:18;;:::i;:::-;-1:-1:-1;19542:9:1;;19429:128::o;20268:125::-;20308:4;20336:1;20333;20330:8;20327:34;;;20341:18;;:::i;:::-;-1:-1:-1;20378:9:1;;20268:125::o;21592:175::-;21629:3;21673:4;21666:5;21662:16;21702:4;21693:7;21690:17;21687:43;;21710:18;;:::i;:::-;21759:1;21746:15;;21592:175;-1:-1:-1;;21592:175:1:o;24171:414::-;24373:2;24355:21;;;24412:2;24392:18;;;24385:30;24451:34;24446:2;24431:18;;24424:62;-1:-1:-1;;;24517:2:1;24502:18;;24495:48;24575:3;24560:19;;24171:414::o;25008:664::-;25235:3;25273:6;25267:13;25289:53;25335:6;25330:3;25323:4;25315:6;25311:17;25289:53;:::i;:::-;25405:13;;25364:16;;;;25427:57;25405:13;25364:16;25461:4;25449:17;;25427:57;:::i;:::-;25551:13;;25506:20;;;25573:57;25551:13;25506:20;25607:4;25595:17;;25573:57;:::i;:::-;25646:20;;25008:664;-1:-1:-1;;;;;25008:664:1:o;25677:112::-;25709:1;25735;25725:35;;25740:18;;:::i;:::-;-1:-1:-1;25774:9:1;;25677:112::o;26196:489::-;-1:-1:-1;;;;;26465:15:1;;;26447:34;;26517:15;;26512:2;26497:18;;26490:43;26564:2;26549:18;;26542:34;;;26612:3;26607:2;26592:18;;26585:31;;;26390:4;;26633:46;;26659:19;;26651:6;26633:46;:::i;:::-;26625:54;26196:489;-1:-1:-1;;;;;;26196:489:1:o;26690:249::-;26759:6;26812:2;26800:9;26791:7;26787:23;26783:32;26780:52;;;26828:1;26825;26818:12;26780:52;26860:9;26854:16;26879:30;26903:5;26879:30;:::i;27196:127::-;27257:10;27252:3;27248:20;27245:1;27238:31;27288:4;27285:1;27278:15;27312:4;27309:1;27302:15
Swarm Source
ipfs://402af08337b771eff4a84cd9209affceb8637e5fe2b8e5fe5e39305b44c8b791
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.