Overview
ETH Balance
0 ETH
ETH Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 20,568 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 15551997 | 10 days ago | IN | 0 ETH | 0.00000043 | ||||
Approve | 15532196 | 11 days ago | IN | 0 ETH | 0.00000285 | ||||
Approve | 15519347 | 11 days ago | IN | 0 ETH | 0.00000533 | ||||
Approve | 15331222 | 18 days ago | IN | 0 ETH | 0.00000349 | ||||
Approve | 15284923 | 19 days ago | IN | 0 ETH | 0.00000404 | ||||
Set Approval For... | 15199349 | 22 days ago | IN | 0 ETH | 0.00000333 | ||||
Set Approval For... | 15160592 | 24 days ago | IN | 0 ETH | 0.00000043 | ||||
Set Approval For... | 15136988 | 24 days ago | IN | 0 ETH | 0.00000116 | ||||
Set Approval For... | 15130773 | 25 days ago | IN | 0 ETH | 0.00000058 | ||||
Set Approval For... | 15130768 | 25 days ago | IN | 0 ETH | 0.00000058 | ||||
Set Approval For... | 15033336 | 28 days ago | IN | 0 ETH | 0.00000043 | ||||
Set Approval For... | 14821413 | 35 days ago | IN | 0 ETH | 0.00000097 | ||||
Set Approval For... | 14821151 | 35 days ago | IN | 0 ETH | 0.00000116 | ||||
Set Approval For... | 14657203 | 41 days ago | IN | 0 ETH | 0.00000116 | ||||
Set Approval For... | 14386838 | 51 days ago | IN | 0 ETH | 0.0000009 | ||||
Approve | 14322164 | 53 days ago | IN | 0 ETH | 0.00000637 | ||||
Approve | 14241527 | 56 days ago | IN | 0 ETH | 0.0000039 | ||||
Set Approval For... | 14156038 | 59 days ago | IN | 0 ETH | 0.0000028 | ||||
Approve | 13906213 | 67 days ago | IN | 0 ETH | 0.00000621 | ||||
Set Approval For... | 13782485 | 72 days ago | IN | 0 ETH | 0.00000058 | ||||
Set Approval For... | 13768502 | 72 days ago | IN | 0 ETH | 0.00000151 | ||||
Set Approval For... | 13733128 | 74 days ago | IN | 0 ETH | 0.00000101 | ||||
Set Approval For... | 13647345 | 77 days ago | IN | 0 ETH | 0.00000101 | ||||
Set Approval For... | 13639937 | 77 days ago | IN | 0 ETH | 0.00000072 | ||||
Set Approval For... | 13616753 | 78 days ago | IN | 0 ETH | 0.00000064 |
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
9571 | 531 days ago | 0.0836 ETH | ||||
9311 | 531 days ago | 0.0001 ETH | ||||
9309 | 531 days ago | 0.0001 ETH | ||||
9308 | 531 days ago | 0.0001 ETH | ||||
9306 | 531 days ago | 0.0001 ETH | ||||
9305 | 531 days ago | 0.0001 ETH | ||||
9303 | 531 days ago | 0.0001 ETH | ||||
9302 | 531 days ago | 0.0001 ETH | ||||
9300 | 531 days ago | 0.0001 ETH | ||||
9299 | 531 days ago | 0.0001 ETH | ||||
9298 | 531 days ago | 0.0001 ETH | ||||
9294 | 531 days ago | 0.0001 ETH | ||||
9291 | 531 days ago | 0.0001 ETH | ||||
9284 | 531 days ago | 0.00005 ETH | ||||
9282 | 531 days ago | 0.0001 ETH | ||||
9278 | 531 days ago | 0.0001 ETH | ||||
9277 | 531 days ago | 0.0001 ETH | ||||
9274 | 531 days ago | 0.0001 ETH | ||||
9273 | 531 days ago | 0.0001 ETH | ||||
9268 | 531 days ago | 0.0001 ETH | ||||
9263 | 531 days ago | 0.0001 ETH | ||||
9258 | 531 days ago | 0.0001 ETH | ||||
9253 | 531 days ago | 0.0001 ETH | ||||
9251 | 531 days ago | 0.0001 ETH | ||||
9250 | 531 days ago | 0.0001 ETH |
Loading...
Loading
Contract Name:
ApetimismLaunchpadNFT
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at zkevm.polygonscan.com on 2023-04-01 */ // SPDX-License-Identifier: MIT // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/security/[email protected] // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File @openzeppelin/contracts/utils/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File @openzeppelin/contracts/token/ERC721/[email protected] // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File erc721a/contracts/[email protected] // ERC721A Contracts v3.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A is IERC721, IERC721Metadata { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * The caller cannot approve to the current owner. */ error ApprovalToCurrentOwner(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); } // File erc721a/contracts/extensions/[email protected] // ERC721A Contracts v3.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721AQueryable compliant contract. */ interface IERC721AQueryable is IERC721A { /** * Invalid query range (`start` >= `stop`). */ error InvalidQueryRange(); /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * - `addr` = `address(0)` * - `startTimestamp` = `0` * - `burned` = `false` * * If the `tokenId` is burned: * - `addr` = `<Address of owner before token was burned>` * - `startTimestamp` = `<Timestamp when token was burned>` * - `burned = `true` * * Otherwise: * - `addr` = `<Address of owner>` * - `startTimestamp` = `<Timestamp of start of ownership>` * - `burned = `false` */ function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory); /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721AQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory); /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start` < `stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view returns (uint256[] memory); /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(totalSupply) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K pfp collections should be fine). */ function tokensOfOwner(address owner) external view returns (uint256[] memory); } // File @openzeppelin/contracts/token/ERC721/[email protected] // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @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 * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File @openzeppelin/contracts/utils/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File erc721a/contracts/[email protected] // ERC721A Contracts v3.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721A { using Address for address; using Strings for uint256; // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @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 override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner) if(!isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _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 { _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 { _transfer(from, to, tokenId); if (to.isContract()) if(!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex < end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { 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 TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File erc721a/contracts/extensions/[email protected] // ERC721A Contracts v3.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @title ERC721A Queryable * @dev ERC721A subclass with convenience query functions. */ abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable { /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * - `addr` = `address(0)` * - `startTimestamp` = `0` * - `burned` = `false` * * If the `tokenId` is burned: * - `addr` = `<Address of owner before token was burned>` * - `startTimestamp` = `<Timestamp when token was burned>` * - `burned = `true` * * Otherwise: * - `addr` = `<Address of owner>` * - `startTimestamp` = `<Timestamp of start of ownership>` * - `burned = `false` */ function explicitOwnershipOf(uint256 tokenId) public view override returns (TokenOwnership memory) { TokenOwnership memory ownership; if (tokenId < _startTokenId() || tokenId >= _currentIndex) { return ownership; } ownership = _ownerships[tokenId]; if (ownership.burned) { return ownership; } return _ownershipOf(tokenId); } /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721AQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] memory tokenIds) external view override returns (TokenOwnership[] memory) { unchecked { uint256 tokenIdsLength = tokenIds.length; TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength); for (uint256 i; i != tokenIdsLength; ++i) { ownerships[i] = explicitOwnershipOf(tokenIds[i]); } return ownerships; } } /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start` < `stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view override returns (uint256[] memory) { unchecked { if (start >= stop) revert InvalidQueryRange(); uint256 tokenIdsIdx; uint256 stopLimit = _currentIndex; // Set `start = max(start, _startTokenId())`. if (start < _startTokenId()) { start = _startTokenId(); } // Set `stop = min(stop, _currentIndex)`. if (stop > stopLimit) { stop = stopLimit; } uint256 tokenIdsMaxLength = balanceOf(owner); // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`, // to cater for cases where `balanceOf(owner)` is too big. if (start < stop) { uint256 rangeLength = stop - start; if (rangeLength < tokenIdsMaxLength) { tokenIdsMaxLength = rangeLength; } } else { tokenIdsMaxLength = 0; } uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength); if (tokenIdsMaxLength == 0) { return tokenIds; } // We need to call `explicitOwnershipOf(start)`, // because the slot at `start` may not be initialized. TokenOwnership memory ownership = explicitOwnershipOf(start); address currOwnershipAddr; // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`. // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range. if (!ownership.burned) { currOwnershipAddr = ownership.addr; } for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) { ownership = _ownerships[i]; if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } // Downsize the array to fit. assembly { mstore(tokenIds, tokenIdsIdx) } return tokenIds; } } /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(totalSupply) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K pfp collections should be fine). */ function tokensOfOwner(address owner) external view override returns (uint256[] memory) { unchecked { uint256 tokenIdsIdx; address currOwnershipAddr; uint256 tokenIdsLength = balanceOf(owner); uint256[] memory tokenIds = new uint256[](tokenIdsLength); TokenOwnership memory ownership; for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) { ownership = _ownerships[i]; if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } return tokenIds; } } } // File contracts/ApetimismLaunchpadNFT.sol pragma solidity ^0.8.0; // import "@openzeppelin/contracts/token/common/ERC2981.sol"; interface IERC20 { function balanceOf(address account) external view returns (uint256); function transfer(address _to, uint256 _amount) external returns (bool); function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); } contract ApetimismLaunchpadNFT is ERC721AQueryable, Ownable, ReentrancyGuard /*, ERC2981*/ { event Received(address, uint); event RoundChanged(uint8); event TotalMintedChanged(uint256); ////////////// // Constants ////////////// string private ERR_INVALID_SIGNATURE = "Invalid sig"; string private ERR_DUP_NONCE = "Dup nonce"; string private ERR_UNMATCHED_ETHER = "Unmatched ether"; string private ERR_HIT_MAXIMUM = "Hit maximum"; string private ERR_INVALID_AMOUNT = "Invalid amount"; string private ERR_RUN_OUT = "Run out"; uint256 public constant MAX_SUPPLY = 2023; uint256 public constant START_TOKEN_ID = 1; string private constant TOKEN_NAME = "PolygonZK Punk"; string private constant TOKEN_SYMBOL = "zkPunk"; ////////////// // Internal ////////////// mapping(address => uint256) private _addressTokenMinted; mapping(address => mapping(uint8 => mapping(int16 => uint256))) private _addressTokenMintedInRoundByRole; mapping(address => mapping(int16 => uint256)) private _addressTokenMintedInRole; mapping(uint256 => uint8) private _nonces; uint16 private allowedRolesInRoundSetId = 0; uint16 private roundAllocationsSetId = 0; uint16 private roleAllocationsSetId = 0; ///////////////////// // Public Variables ///////////////////// address public signerAddress = 0x09E53fCa60AbDA7Ba03D75470ED37424ad370112; uint8 public currentRound = 0; bool public metadataFrozen = false; uint16 public maxMintPerTx = 2; uint16 public maxMintPerAddress = 2; string public baseURIExtended; bool public metdataHasExtension = true; mapping(int16 => uint256) mintPriceByRole; struct Role { uint8 round_id; int16 role_id; uint256 max_mint; uint256 mint_price; bool exists; } mapping(uint16 => mapping(uint8 => mapping(int16 => Role))) public allowedRolesInRound; mapping(uint16 => mapping(uint8 => uint16)) public allowedRolesInRoundCount; mapping(uint16 => mapping(uint8 => int16[])) public allowedRolesInRoundArr; uint8[] public availableAllowedRounds; uint8[] public availableRounds; mapping(uint16 => mapping(uint8 => uint256)) public roundAllocations; mapping(uint16 => mapping(int16 => uint256)) public roleAllocations; int16[] public availableRoles; mapping(uint8 => uint256) public totalMintedInRound; uint256 public totalRevenueShared = 0; address public currencyAddress; //////////////// // Parameters //////////////// struct RoleInRoundParams { uint8 round; int16 role; uint256 maxMint; uint256 mintPrice; } struct RoundAllocationParams { uint8 round; uint256 allocation; } struct RoleAllocationParams { int16 role; uint256 allocation; } //////////////// // Actual Code //////////////// constructor() ERC721A(TOKEN_NAME, TOKEN_SYMBOL) { } function _startTokenId() internal view virtual override returns (uint256) { return START_TOKEN_ID; } ////////////////////// // Setters for Owner ////////////////////// function setCurrentRound(uint8 round_) public onlyOwner { currentRound = round_; emit RoundChanged(round_); } function setMaxMintPerTx(uint16 count) public onlyOwner { maxMintPerTx = count; } function setMaxMintPerAddress(uint16 count) public onlyOwner { maxMintPerAddress = count; } function setBaseURI(string memory baseURI) public onlyOwner { require(!metadataFrozen, "Metadata frozen"); baseURIExtended = baseURI; } function setMetadataHasExtension(bool hasExtension) public onlyOwner { metdataHasExtension = hasExtension; } function setCurrencyAddress(address addr) public onlyOwner { currencyAddress = addr; } function addAllowedRolesInRound(RoleInRoundParams[] memory params, bool replace) public onlyOwner { if (replace) { allowedRolesInRoundSetId++; delete availableAllowedRounds; } for (uint i = 0; i < params.length; i++) { addAllowedRoleInRound( params[i].round, params[i].role, params[i].maxMint, params[i].mintPrice, false ); } } function addAllowedRoleInRound(uint8 round, int16 role, uint256 maxMint, uint256 mintPrice, bool replace) public onlyOwner { if (replace) { allowedRolesInRoundSetId++; delete availableAllowedRounds; } bool role_already_existed = allowedRolesInRound[allowedRolesInRoundSetId][round][role].exists; allowedRolesInRound[allowedRolesInRoundSetId][round][role].round_id = round; allowedRolesInRound[allowedRolesInRoundSetId][round][role].role_id = role; allowedRolesInRound[allowedRolesInRoundSetId][round][role].max_mint = maxMint; allowedRolesInRound[allowedRolesInRoundSetId][round][role].mint_price = mintPrice; allowedRolesInRound[allowedRolesInRoundSetId][round][role].exists = true; if (role_already_existed) // Role already existed return; allowedRolesInRoundCount[allowedRolesInRoundSetId][round]++; allowedRolesInRoundArr[allowedRolesInRoundSetId][round].push(role); bool found = false; for (uint8 i = 0; i < availableAllowedRounds.length; i++) if (availableAllowedRounds[i] == round) found = true; if (!found) availableAllowedRounds.push(round); } function removeAllowedRoleInRound(uint8 round, int16 role) public onlyOwner { require(allowedRolesInRound[allowedRolesInRoundSetId][round][role].exists, "Role not existed"); allowedRolesInRound[allowedRolesInRoundSetId][round][role].round_id = 0; allowedRolesInRound[allowedRolesInRoundSetId][round][role].role_id = 0; allowedRolesInRound[allowedRolesInRoundSetId][round][role].max_mint = 0; allowedRolesInRound[allowedRolesInRoundSetId][round][role].mint_price = 0; allowedRolesInRound[allowedRolesInRoundSetId][round][role].exists = false; allowedRolesInRoundCount[allowedRolesInRoundSetId][round]--; // Remove available role for (uint8 i = 0; i < allowedRolesInRoundArr[allowedRolesInRoundSetId][round].length; i++) { if (allowedRolesInRoundArr[allowedRolesInRoundSetId][round][i] == role) { removeArrayAtInt16Index(allowedRolesInRoundArr[allowedRolesInRoundSetId][round], i); break; } } if (allowedRolesInRoundCount[allowedRolesInRoundSetId][round] == 0) { // Remove available round for (uint8 i = 0; i < availableRounds.length; i++) { if (availableRounds[i] == round) { removeArrayAtUint8Index(availableRounds, i); break; } } } } function addRoundsAllocation(RoundAllocationParams[] memory params, bool replace) public onlyOwner { if (replace) { roundAllocationsSetId++; delete availableRounds; } for (uint i = 0; i < params.length; i++) addRoundAllocation(params[i].round, params[i].allocation, false); } function addRoundAllocation(uint8 round, uint256 allocation, bool replace) public onlyOwner { if (replace) { roundAllocationsSetId++; delete availableRounds; } roundAllocations[roundAllocationsSetId][round] = allocation; bool found = false; for (uint8 i = 0; i < availableRounds.length; i++) if (availableRounds[i] == round) found = true; if (!found) availableRounds.push(round); } function addRolesAllocation(RoleAllocationParams[] memory params, bool replace) public onlyOwner { if (replace) { roleAllocationsSetId++; delete availableRoles; } for (uint i = 0; i < params.length; i++) addRoleAllocation(params[i].role, params[i].allocation, false); } function addRoleAllocation(int16 role, uint256 allocation, bool replace) public onlyOwner { if (replace) { roleAllocationsSetId++; delete availableRoles; } roleAllocations[roleAllocationsSetId][role] = allocation; bool found = false; for (uint16 i = 0; i < availableRoles.length; i++) if (availableRoles[i] == role) found = true; if (!found) availableRoles.push(role); } function addRolesRounds( RoleInRoundParams[] memory _rolesInRound, bool _replaceRoleInRound, RoundAllocationParams[] memory _roundAllocations, bool _replaceRoundAllocations, RoleAllocationParams[] memory _roleAllocations, bool _replaceRoleAllocations ) public onlyOwner { addAllowedRolesInRound(_rolesInRound, _replaceRoleInRound); addRoundsAllocation(_roundAllocations, _replaceRoundAllocations); addRolesAllocation(_roleAllocations, _replaceRoleAllocations); } function freezeMetadata() public onlyOwner { metadataFrozen = true; } //////////// // Minting //////////// function mint(uint256 quantity, int16 role, uint16 apetimismFee, address apetimismAddress, uint256 nonce, uint8 v, bytes32 r, bytes32 s) external payable nonReentrant { require(currentRound != 0, "Not started"); uint256 combined_nonce = nonce; if (role >= 0) combined_nonce = (nonce << 16) + uint16(role); require(_nonces[combined_nonce] == 0, ERR_DUP_NONCE); require(_recoverAddress(abi.encodePacked(combined_nonce, apetimismFee, apetimismAddress), v, r, s) == signerAddress, ERR_INVALID_SIGNATURE); bool is_public_round = allowedRolesInRound[allowedRolesInRoundSetId][currentRound][0].exists; int16 selected_role = 0; if (role >= 0) selected_role = role; if (!allowedRolesInRound[allowedRolesInRoundSetId][currentRound][selected_role].exists) { if (!is_public_round) require(false, "Not eligible"); selected_role = 0; } require(quantity > 0, ERR_INVALID_AMOUNT); require(mintableLeft() >= quantity, ERR_RUN_OUT); if (role >= 0) require(maxMintableForTxForRole(msg.sender, role) >= quantity, ERR_HIT_MAXIMUM); else require(maxMintableForTxForRole(msg.sender, 0) >= quantity, ERR_HIT_MAXIMUM); uint256 cost = quantity * allowedRolesInRound[allowedRolesInRoundSetId][currentRound][selected_role].mint_price; _nonces[combined_nonce] = 1; if (currencyAddress != address(0)) { // Pay by Token require(msg.value == 0, ERR_UNMATCHED_ETHER); } else { require(msg.value == cost, ERR_UNMATCHED_ETHER); } _safeMint(msg.sender, quantity); totalMintedInRound[currentRound] = totalMintedInRound[currentRound] + quantity; _addressTokenMinted[msg.sender] = _addressTokenMinted[msg.sender] + quantity; _addressTokenMintedInRoundByRole[msg.sender][currentRound][selected_role] = _addressTokenMintedInRoundByRole[msg.sender][currentRound][selected_role] + quantity; if (selected_role >= 0) _addressTokenMintedInRole[msg.sender][selected_role] = _addressTokenMintedInRole[msg.sender][selected_role] + quantity; uint256 to_apetimism = cost * apetimismFee / 10000; if (currencyAddress != address(0)) { IERC20 tokenContract = IERC20(currencyAddress); tokenContract.transferFrom(msg.sender, address(this), cost); tokenContract.transfer(apetimismAddress, to_apetimism); } else { payable(apetimismAddress).transfer(to_apetimism); } totalRevenueShared = totalRevenueShared + to_apetimism; } function adminMintTo(address to, uint256 quantity) public onlyOwner { require(quantity > 0, ERR_INVALID_AMOUNT); require(mintableLeft() >= quantity, ERR_RUN_OUT); _safeMint(to, quantity); } ////////////// // Apetimism ////////////// function setCurrentRoundFromSignature(uint256 nonce, uint8 round, uint8 v, bytes32 r, bytes32 s) public { require(_nonces[nonce] == 0, ERR_DUP_NONCE); require(_recoverAddress(abi.encodePacked(nonce, round), v, r, s) == signerAddress, ERR_INVALID_SIGNATURE); _nonces[nonce] = 1; currentRound = round; emit RoundChanged(round); } function setSignerAddressFromSignature(uint256 nonce, address addr, uint8 v, bytes32 r, bytes32 s) public { require(_nonces[nonce] == 0, ERR_DUP_NONCE); require(_recoverAddress(abi.encodePacked(nonce, addr), v, r, s) == signerAddress, ERR_INVALID_SIGNATURE); _nonces[nonce] = 1; signerAddress = addr; } //////////////// // Transfering //////////////// function transfersFrom( address from, address to, uint256[] calldata tokenIds ) public virtual { for (uint i = 0; i < tokenIds.length; i++) transferFrom(from, to, tokenIds[i]); } function safeTransfersFrom( address from, address to, uint256[] calldata tokenIds ) public virtual { for (uint i = 0; i < tokenIds.length; i++) safeTransferFrom(from, to, tokenIds[i]); } function safeTransfersFrom( address from, address to, uint256[] calldata tokenIds, bytes memory _data ) public virtual { for (uint i = 0; i < tokenIds.length; i++) safeTransferFrom(from, to, tokenIds[i], _data); } ///////////////// // Public Views ///////////////// // function getAllAvailableRounds() public view returns (uint8[] memory) { // uint256 len = availableRounds.length; // uint8[] memory ret = new uint8[](len); // for (uint i = 0; i < len; i++) // ret[i] = availableRounds[i]; // return ret; // } function getAllowedRolesInRoundArr(uint8 round) public view returns (int16[] memory) { uint256 len = allowedRolesInRoundArr[allowedRolesInRoundSetId][round].length; int16[] memory ret = new int16[](len); for (uint i = 0; i < len; i++) ret[i] = allowedRolesInRoundArr[allowedRolesInRoundSetId][round][i]; return ret; } // function getAllAvailableRoles() public view returns (int16[] memory) { // uint256 len = availableRoles.length; // int16[] memory ret = new int16[](len); // for (uint i = 0; i < len; i++) // ret[i] = availableRoles[i]; // return ret; // } function getAllAllowedRolesInRounds() public view returns (RoleInRoundParams[] memory) { uint256 len = 0; for (uint i = 0; i < availableAllowedRounds.length; i++) len += allowedRolesInRoundCount[allowedRolesInRoundSetId][ availableAllowedRounds[i] ]; RoleInRoundParams[] memory ret = new RoleInRoundParams[](len); uint256 index = 0; for (uint i = 0; i < availableAllowedRounds.length; i++) { uint8 round = availableAllowedRounds[i]; for (uint j = 0; j < allowedRolesInRoundCount[allowedRolesInRoundSetId][ availableAllowedRounds[i] ]; j++) { int16 role = allowedRolesInRoundArr[allowedRolesInRoundSetId][round][j]; ret[index].round = round; ret[index].role = role; ret[index].maxMint = allowedRolesInRound[allowedRolesInRoundSetId][round][role].max_mint; ret[index].mintPrice = allowedRolesInRound[allowedRolesInRoundSetId][round][role].mint_price; index++; } } return ret; } function getAllRoundAllocations() public view returns (RoundAllocationParams[] memory) { uint256 len = availableRounds.length; RoundAllocationParams[] memory ret = new RoundAllocationParams[](len); for (uint i = 0; i < len; i++) { ret[i].round = availableRounds[i]; ret[i].allocation = roundAllocations[roundAllocationsSetId][availableRounds[i]]; } return ret; } function getAllRoleAllocations() public view returns (RoleAllocationParams[] memory) { uint256 len = availableRoles.length; RoleAllocationParams[] memory ret = new RoleAllocationParams[](len); for (uint i = 0; i < len; i++) { ret[i].role = availableRoles[i]; ret[i].allocation = roleAllocations[roleAllocationsSetId][availableRoles[i]]; } return ret; } function mintPriceForCurrentRoundForRole(int16 role) public view returns (uint256) { return allowedRolesInRound[allowedRolesInRoundSetId][currentRound][role].mint_price; } function maxMintableForRole(address addr, int16 role) public view virtual returns (uint256) { uint256 minted = _addressTokenMinted[addr]; uint256 max_mint = 0; // Not yet started if (currentRound == 0) return 0; // Total minted in this round reach the maximum allocated if (totalMintedInRound[currentRound] >= roundAllocations[roundAllocationsSetId][currentRound]) return 0; if (_addressTokenMintedInRole[addr][role] >= roleAllocations[roleAllocationsSetId][role]) return 0; if (allowedRolesInRound[allowedRolesInRoundSetId][currentRound][role].exists) max_mint = allowedRolesInRound[allowedRolesInRoundSetId][currentRound][role].max_mint; // Hit the maximum per wallet if (minted >= maxMintPerAddress) return 0; // Cannot mint more for this round if (_addressTokenMintedInRoundByRole[addr][currentRound][role] >= max_mint) return 0; // Prevent underflow if (totalMintedInRound[currentRound] >= roundAllocations[roundAllocationsSetId][currentRound]) return 0; // Cannot mint more than allocated for role if (_addressTokenMintedInRole[addr][role] >= roleAllocations[roleAllocationsSetId][role]) return 0; uint256 wallet_quota_left = maxMintPerAddress - minted; uint256 round_quota_left = max_mint - _addressTokenMintedInRoundByRole[addr][currentRound][role]; uint256 round_allocation_quota_left = roundAllocations[roundAllocationsSetId][currentRound] - totalMintedInRound[currentRound]; uint256 role_quota_left = roleAllocations[roleAllocationsSetId][role] - _addressTokenMintedInRole[addr][role]; return min(mintableLeft(), min(min(min(wallet_quota_left, round_quota_left), round_allocation_quota_left), role_quota_left)); } function maxMintableForTxForRole(address addr, int16 role) public view virtual returns (uint256) { uint256 mintable = maxMintableForRole(addr, role); if (mintable > maxMintPerTx) return maxMintPerTx; return mintable; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), 'nonexistent token'); if (bytes(baseURIExtended).length == 0) return ''; string memory extension = ""; if (metdataHasExtension) extension = ".json"; return string(abi.encodePacked(baseURIExtended, Strings.toString(tokenId), extension)); } function totalMinted() public view returns (uint256) { return _totalMinted(); } function mintableLeft() public view returns (uint256) { return MAX_SUPPLY - totalMinted(); } //////////// // Helpers //////////// function removeArrayAtInt16Index(int16[] storage array, uint256 index) private { for (uint i = index; i < array.length - 1; i++) array[i] = array[i + 1]; delete array[array.length - 1]; array.pop(); } function removeArrayAtUint8Index(uint8[] storage array, uint256 index) private { for (uint i = index; i < array.length - 1; i++) array[i] = array[i + 1]; delete array[array.length - 1]; array.pop(); } function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } function _recoverAddress(bytes memory data, uint8 v, bytes32 r, bytes32 s) private pure returns (address) { bytes32 msgHash = keccak256(data); bytes32 messageDigest = keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", msgHash)); return ecrecover(messageDigest, v, r, s); } //////////// // ERC2981 //////////// function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721A) returns (bool) { return super.supportsInterface(interfaceId) || ERC721A.supportsInterface(interfaceId); } // function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721A, ERC2981) returns (bool) { // return super.supportsInterface(interfaceId) || ERC721A.supportsInterface(interfaceId) || ERC2981.supportsInterface(interfaceId); // } // function setDefaultRoyalty(address receiver, uint96 feeNumerator) public onlyOwner { // _setDefaultRoyalty(receiver, feeNumerator); // } // function deleteDefaultRoyalty() public onlyOwner { // _deleteDefaultRoyalty(); // } // function setTokenRoyalty(uint256 tokenId, address receiver, uint96 feeNumerator) public onlyOwner { // _setTokenRoyalty(tokenId, receiver, feeNumerator); // } // function resetTokenRoyalty(uint256 tokenId) public onlyOwner { // _resetTokenRoyalty(tokenId); // } /////////////// // Withdrawal /////////////// function withdraw() public onlyOwner { uint256 balance = address(this).balance; payable(msg.sender).transfer(balance); } function withdrawToken(address tokenAddress) public onlyOwner { IERC20 tokenContract = IERC20(tokenAddress); tokenContract.transfer(msg.sender, tokenContract.balanceOf(address(this))); } ///////////// // Fallback ///////////// receive() external payable { emit Received(msg.sender, msg.value); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"","type":"address"},{"indexed":false,"internalType":"uint256","name":"","type":"uint256"}],"name":"Received","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"","type":"uint8"}],"name":"RoundChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"","type":"uint256"}],"name":"TotalMintedChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"START_TOKEN_ID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"round","type":"uint8"},{"internalType":"int16","name":"role","type":"int16"},{"internalType":"uint256","name":"maxMint","type":"uint256"},{"internalType":"uint256","name":"mintPrice","type":"uint256"},{"internalType":"bool","name":"replace","type":"bool"}],"name":"addAllowedRoleInRound","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint8","name":"round","type":"uint8"},{"internalType":"int16","name":"role","type":"int16"},{"internalType":"uint256","name":"maxMint","type":"uint256"},{"internalType":"uint256","name":"mintPrice","type":"uint256"}],"internalType":"struct ApetimismLaunchpadNFT.RoleInRoundParams[]","name":"params","type":"tuple[]"},{"internalType":"bool","name":"replace","type":"bool"}],"name":"addAllowedRolesInRound","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"int16","name":"role","type":"int16"},{"internalType":"uint256","name":"allocation","type":"uint256"},{"internalType":"bool","name":"replace","type":"bool"}],"name":"addRoleAllocation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"int16","name":"role","type":"int16"},{"internalType":"uint256","name":"allocation","type":"uint256"}],"internalType":"struct ApetimismLaunchpadNFT.RoleAllocationParams[]","name":"params","type":"tuple[]"},{"internalType":"bool","name":"replace","type":"bool"}],"name":"addRolesAllocation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint8","name":"round","type":"uint8"},{"internalType":"int16","name":"role","type":"int16"},{"internalType":"uint256","name":"maxMint","type":"uint256"},{"internalType":"uint256","name":"mintPrice","type":"uint256"}],"internalType":"struct ApetimismLaunchpadNFT.RoleInRoundParams[]","name":"_rolesInRound","type":"tuple[]"},{"internalType":"bool","name":"_replaceRoleInRound","type":"bool"},{"components":[{"internalType":"uint8","name":"round","type":"uint8"},{"internalType":"uint256","name":"allocation","type":"uint256"}],"internalType":"struct ApetimismLaunchpadNFT.RoundAllocationParams[]","name":"_roundAllocations","type":"tuple[]"},{"internalType":"bool","name":"_replaceRoundAllocations","type":"bool"},{"components":[{"internalType":"int16","name":"role","type":"int16"},{"internalType":"uint256","name":"allocation","type":"uint256"}],"internalType":"struct ApetimismLaunchpadNFT.RoleAllocationParams[]","name":"_roleAllocations","type":"tuple[]"},{"internalType":"bool","name":"_replaceRoleAllocations","type":"bool"}],"name":"addRolesRounds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"round","type":"uint8"},{"internalType":"uint256","name":"allocation","type":"uint256"},{"internalType":"bool","name":"replace","type":"bool"}],"name":"addRoundAllocation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint8","name":"round","type":"uint8"},{"internalType":"uint256","name":"allocation","type":"uint256"}],"internalType":"struct ApetimismLaunchpadNFT.RoundAllocationParams[]","name":"params","type":"tuple[]"},{"internalType":"bool","name":"replace","type":"bool"}],"name":"addRoundsAllocation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"adminMintTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"uint8","name":"","type":"uint8"},{"internalType":"int16","name":"","type":"int16"}],"name":"allowedRolesInRound","outputs":[{"internalType":"uint8","name":"round_id","type":"uint8"},{"internalType":"int16","name":"role_id","type":"int16"},{"internalType":"uint256","name":"max_mint","type":"uint256"},{"internalType":"uint256","name":"mint_price","type":"uint256"},{"internalType":"bool","name":"exists","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"uint8","name":"","type":"uint8"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"allowedRolesInRoundArr","outputs":[{"internalType":"int16","name":"","type":"int16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"uint8","name":"","type":"uint8"}],"name":"allowedRolesInRoundCount","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"availableAllowedRounds","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"availableRoles","outputs":[{"internalType":"int16","name":"","type":"int16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"availableRounds","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURIExtended","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currencyAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentRound","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freezeMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getAllAllowedRolesInRounds","outputs":[{"components":[{"internalType":"uint8","name":"round","type":"uint8"},{"internalType":"int16","name":"role","type":"int16"},{"internalType":"uint256","name":"maxMint","type":"uint256"},{"internalType":"uint256","name":"mintPrice","type":"uint256"}],"internalType":"struct ApetimismLaunchpadNFT.RoleInRoundParams[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAllRoleAllocations","outputs":[{"components":[{"internalType":"int16","name":"role","type":"int16"},{"internalType":"uint256","name":"allocation","type":"uint256"}],"internalType":"struct ApetimismLaunchpadNFT.RoleAllocationParams[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAllRoundAllocations","outputs":[{"components":[{"internalType":"uint8","name":"round","type":"uint8"},{"internalType":"uint256","name":"allocation","type":"uint256"}],"internalType":"struct ApetimismLaunchpadNFT.RoundAllocationParams[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"round","type":"uint8"}],"name":"getAllowedRolesInRoundArr","outputs":[{"internalType":"int16[]","name":"","type":"int16[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerAddress","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerTx","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"int16","name":"role","type":"int16"}],"name":"maxMintableForRole","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"int16","name":"role","type":"int16"}],"name":"maxMintableForTxForRole","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metadataFrozen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metdataHasExtension","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"int16","name":"role","type":"int16"},{"internalType":"uint16","name":"apetimismFee","type":"uint16"},{"internalType":"address","name":"apetimismAddress","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"int16","name":"role","type":"int16"}],"name":"mintPriceForCurrentRoundForRole","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintableLeft","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"round","type":"uint8"},{"internalType":"int16","name":"role","type":"int16"}],"name":"removeAllowedRoleInRound","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"int16","name":"","type":"int16"}],"name":"roleAllocations","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"uint8","name":"","type":"uint8"}],"name":"roundAllocations","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":"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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransfersFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"safeTransfersFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"setCurrencyAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"round_","type":"uint8"}],"name":"setCurrentRound","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint8","name":"round","type":"uint8"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"setCurrentRoundFromSignature","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"count","type":"uint16"}],"name":"setMaxMintPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"count","type":"uint16"}],"name":"setMaxMintPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"hasExtension","type":"bool"}],"name":"setMetadataHasExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"setSignerAddressFromSignature","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"signerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"","type":"uint8"}],"name":"totalMintedInRound","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalRevenueShared","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"transfersFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"withdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c0604052600b60808190526a496e76616c69642073696760a81b60a09081526200002e91600a919062000254565b5060408051808201909152600980825268447570206e6f6e636560b81b60209092019182526200006191600b9162000254565b5060408051808201909152600f8082526e2ab736b0ba31b432b21032ba3432b960891b60209092019182526200009a91600c9162000254565b5060408051808201909152600b8082526a486974206d6178696d756d60a81b6020909201918252620000cf91600d9162000254565b5060408051808201909152600e8082526d125b9d985b1a5908185b5bdd5b9d60921b602090920191825262000105918162000254565b5060408051808201909152600780825266149d5b881bdd5d60ca1b60209092019182526200013691600f9162000254565b507e020002000009e53fca60abda7ba03d75470ed37424ad3701120000000000006014556016805460ff1916600117905560006021553480156200017957600080fd5b50604080518082018252600e81526d506f6c79676f6e5a4b2050756e6b60901b6020808301918252835180850190945260068452657a6b50756e6b60d01b908401528151919291620001ce9160029162000254565b508051620001e490600390602084019062000254565b5050600160005550620001f73362000202565b600160095562000337565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200026290620002fa565b90600052602060002090601f016020900481019282620002865760008555620002d1565b82601f10620002a157805160ff1916838001178555620002d1565b82800160010185558215620002d1579182015b82811115620002d1578251825591602001919060010190620002b4565b50620002df929150620002e3565b5090565b5b80821115620002df5760008155600101620002e4565b600181811c908216806200030f57607f821691505b602082108114156200033157634e487b7160e01b600052602260045260246000fd5b50919050565b615e1680620003476000396000f3fe6080604052600436106104345760003560e01c80638462151c11610229578063bd8fc4a21161012e578063d0950e74116100b6578063e985e9c51161007a578063e985e9c514610e45578063f2fde38b14610e8e578063f5a4156c14610eae578063fb3cc6c214610ee6578063fe2e66f414610f0757600080fd5b8063d0950e7414610dbf578063d111515d14610ddf578063de7fcb1d14610df4578063e08c5e3214610e16578063e4d3d44814610e3057600080fd5b8063c87b56dd116100fd578063c87b56dd14610d07578063c9d4857914610d27578063cf502d0d14610d47578063d047d03814610d67578063d0667dd214610d9f57600080fd5b8063bd8fc4a214610c51578063be56844814610c8d578063bf65eb3414610cba578063c23dc68f14610cda57600080fd5b8063a13429a9116101b1578063b1ad048c11610180578063b1ad048c14610bb1578063b1e8dbaa14610bd1578063b6a7412114610bf1578063b88d4fde14610c11578063ba1402d314610c3157600080fd5b8063a13429a914610b43578063a22cb46514610b63578063a2309ff814610b83578063ac7dc68d14610b9c57600080fd5b80638a19c8bc116101f85780638a19c8bc14610a3b5780638da5cb5b14610a5c57806395d89b4114610a7a57806399a2557a14610a8f5780639e8cc8d314610aaf57600080fd5b80638462151c146109b957806387f65c91146109e657806389476069146109fb57806389b5a8c214610a1b57600080fd5b80633ccfd60b1161033a578063572849c4116102c257806370a082311161028657806370a0823114610922578063715018a614610942578063748a500a14610957578063796b89ec1461097957806379a2c3f81461099957600080fd5b8063572849c4146108595780635b7633d01461088e5780635bbb2177146108b55780636352211e146108e25780636e453d621461090257600080fd5b80633e9dbed0116103095780633e9dbed0146107af57806342842e0e146107d157806346830628146107f1578063500ea93b1461080757806355f804b31461083957600080fd5b80633ccfd60b146106fe5780633d6a5745146107135780633dd3802d146107335780633e8f18f01461075357600080fd5b80631a6d843e116103bd57806327854c151161038c57806327854c151461065c578063306279da1461068857806332ab9bbe146106a857806332cb6b0c146106c857806333ee7927146106de57600080fd5b80631a6d843e146105dc5780631c1cb323146105fc57806321120f7a1461061c57806323b872dd1461063c57600080fd5b8063081812fc11610404578063081812fc14610528578063095ea7b3146105605780630d23d6691461058257806318160ddd14610595578063183ab264146105bc57600080fd5b80620319df1461047857806301ffc9a7146104a357806306a7c8de146104d357806306fdde031461050657600080fd5b3661047357604080513381523460208201527f88a5966d370b9919b20f3e2c13ff65706f196a4e32cc2c12bf57088f88525874910160405180910390a1005b600080fd5b34801561048457600080fd5b5061048d610f27565b60405161049a9190614c7d565b60405180910390f35b3480156104af57600080fd5b506104c36104be366004614ce5565b611094565b604051901515815260200161049a565b3480156104df57600080fd5b506104f36104ee366004614d02565b6110b4565b60405160019190910b815260200161049a565b34801561051257600080fd5b5061051b6110eb565b60405161049a9190614d73565b34801561053457600080fd5b50610548610543366004614d02565b61117d565b6040516001600160a01b03909116815260200161049a565b34801561056c57600080fd5b5061058061057b366004614da2565b6111c1565b005b610580610590366004614e01565b611248565b3480156105a157600080fd5b5060015460005403600019015b60405190815260200161049a565b3480156105c857600080fd5b506105806105d7366004614e7c565b6118ed565b3480156105e857600080fd5b506105806105f7366004614ea5565b61196b565b34801561060857600080fd5b50602254610548906001600160a01b031681565b34801561062857600080fd5b506104f3610637366004614f00565b611de7565b34801561064857600080fd5b50610580610657366004614f3c565b611e3a565b34801561066857600080fd5b506105ae610677366004614e7c565b602080526000908152604090205481565b34801561069457600080fd5b506105806106a3366004614f68565b611e45565b3480156106b457600080fd5b506105806106c3366004615108565b611f81565b3480156106d457600080fd5b506105ae6107e781565b3480156106ea57600080fd5b506105806106f936600461524b565b611fca565b34801561070a57600080fd5b506105806120a2565b34801561071f57600080fd5b5061058061072e366004614da2565b6120ff565b34801561073f57600080fd5b5061058061074e36600461533d565b612180565b34801561075f57600080fd5b506105ae61076e366004615372565b60145461ffff81166000908152601860209081526040808320600160d01b90940460ff16835292815282822060019490940b82529290925290206002015490565b3480156107bb57600080fd5b506107c461228d565b60405161049a919061538d565b3480156107dd57600080fd5b506105806107ec366004614f3c565b6125bd565b3480156107fd57600080fd5b506105ae60215481565b34801561081357600080fd5b50610827610822366004614d02565b6125d8565b60405160ff909116815260200161049a565b34801561084557600080fd5b506105806108543660046153ed565b61260c565b34801561086557600080fd5b5060145461087b90600160f01b900461ffff1681565b60405161ffff909116815260200161049a565b34801561089a57600080fd5b5060145461054890600160301b90046001600160a01b031681565b3480156108c157600080fd5b506108d56108d0366004615435565b612695565b60405161049a91906154f2565b3480156108ee57600080fd5b506105486108fd366004614d02565b61275b565b34801561090e57600080fd5b5061058061091d366004615534565b61276d565b34801561092e57600080fd5b506105ae61093d366004615551565b6127aa565b34801561094e57600080fd5b506105806127f8565b34801561096357600080fd5b5061096c61282e565b60405161049a919061556c565b34801561098557600080fd5b50610580610994366004615551565b61299b565b3480156109a557600080fd5b506105806109b43660046155b2565b6129e7565b3480156109c557600080fd5b506109d96109d4366004615551565b612a34565b60405161049a91906155cd565b3480156109f257600080fd5b506105ae600181565b348015610a0757600080fd5b50610580610a16366004615551565b612b81565b348015610a2757600080fd5b50610580610a36366004615605565b612cac565b348015610a4757600080fd5b5060145461082790600160d01b900460ff1681565b348015610a6857600080fd5b506008546001600160a01b0316610548565b348015610a8657600080fd5b5061051b612cec565b348015610a9b57600080fd5b506109d9610aaa366004615665565b612cfb565b348015610abb57600080fd5b50610b12610aca366004615698565b601860209081526000938452604080852082529284528284209052825290208054600180830154600284015460039094015460ff8085169561010090950490930b9391921685565b6040805160ff909616865260019490940b60208601529284019190915260608301521515608082015260a00161049a565b348015610b4f57600080fd5b50610580610b5e366004615761565b612ec1565b348015610b6f57600080fd5b50610580610b7e366004615796565b612f98565b348015610b8f57600080fd5b50600054600019016105ae565b348015610ba857600080fd5b506105ae613033565b348015610bbd57600080fd5b506105ae610bcc3660046157c2565b613047565b348015610bdd57600080fd5b50610827610bec366004614d02565b613081565b348015610bfd57600080fd5b50610580610c0c3660046155b2565b613091565b348015610c1d57600080fd5b50610580610c2c3660046157f5565b6130dd565b348015610c3d57600080fd5b50610580610c4c36600461585c565b613127565b348015610c5d57600080fd5b5061087b610c6c36600461589c565b601960209081526000928352604080842090915290825290205461ffff1681565b348015610c9957600080fd5b50610cad610ca8366004614e7c565b61328b565b60405161049a91906158c6565b348015610cc657600080fd5b50610580610cd5366004615901565b613392565b348015610ce657600080fd5b50610cfa610cf5366004614d02565b613503565b60405161049a919061591f565b348015610d1357600080fd5b5061051b610d22366004614d02565b6135bd565b348015610d3357600080fd5b50610580610d4236600461592d565b61369e565b348015610d5357600080fd5b50610580610d62366004615605565b613794565b348015610d7357600080fd5b506105ae610d8236600461589c565b601d60209081526000928352604080842090915290825290205481565b348015610dab57600080fd5b50610580610dba366004615955565b6137d4565b348015610dcb57600080fd5b506105ae610dda3660046157c2565b61381c565b348015610deb57600080fd5b50610580613bc5565b348015610e0057600080fd5b5060145461087b90600160e01b900461ffff1681565b348015610e2257600080fd5b506016546104c39060ff1681565b348015610e3c57600080fd5b5061051b613c04565b348015610e5157600080fd5b506104c3610e60366004615a19565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610e9a57600080fd5b50610580610ea9366004615551565b613c92565b348015610eba57600080fd5b506105ae610ec9366004615a43565b601e60209081526000928352604080842090915290825290205481565b348015610ef257600080fd5b506014546104c390600160d81b900460ff1681565b348015610f1357600080fd5b50610580610f22366004615a5f565b613d2d565b601c546060906000816001600160401b03811115610f4757610f47615001565b604051908082528060200260200182016040528015610f8c57816020015b6040805180820190915260008082526020820152815260200190600190039081610f655790505b50905060005b8281101561108d57601c8181548110610fad57610fad615a7b565b90600052602060002090602091828204019190069054906101000a900460ff16828281518110610fdf57610fdf615a7b565b60209081029190910181015160ff90921690915260145461ffff62010000909104166000908152601d90915260408120601c80549192918490811061102657611026615a7b565b90600052602060002090602091828204019190069054906101000a900460ff1660ff1660ff1681526020019081526020016000205482828151811061106d5761106d615a7b565b60209081029190910181015101528061108581615aa7565b915050610f92565b5092915050565b600061109f82614054565b806110ae57506110ae82614054565b92915050565b601f81815481106110c457600080fd5b9060005260206000209060109182820401919006600202915054906101000a900460010b81565b6060600280546110fa90615ac2565b80601f016020809104026020016040519081016040528092919081815260200182805461112690615ac2565b80156111735780601f1061114857610100808354040283529160200191611173565b820191906000526020600020905b81548152906001019060200180831161115657829003601f168201915b5050505050905090565b6000611188826140a4565b6111a5576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006111cc8261275b565b9050806001600160a01b0316836001600160a01b031614156112015760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146112385761121b8133610e60565b611238576040516367d9dca160e11b815260040160405180910390fd5b6112438383836140dd565b505050565b600260095414156112a05760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b6002600955601454600160d01b900460ff166112ec5760405162461bcd60e51b815260206004820152600b60248201526a139bdd081cdd185c9d195960aa1b6044820152606401611297565b836000600189900b1261130e5761130b61ffff8916601087901b615afd565b90505b600081815260136020526040902054600b9060ff16156113415760405162461bcd60e51b81526004016112979190615b15565b50601454604080516020810184905260f08a901b6001600160f01b03191691810191909152606088901b6001600160601b0319166042820152600160301b9091046001600160a01b0316906113aa90605601604051602081830303815290604052868686614139565b6001600160a01b031614600a906113d45760405162461bcd60e51b81526004016112979190615b15565b5060145461ffff8116600090815260186020908152604080832060ff600160d01b9095048516845282528083208380529091528120600301549091169060018a900b811361141f5750885b60145461ffff8116600090815260186020908152604080832060ff600160d01b909504851684528252808320600186900b8452909152902060030154166114a0578161149c5760405162461bcd60e51b815260206004820152600c60248201526b4e6f7420656c696769626c6560a01b6044820152606401611297565b5060005b600e8b6114c05760405162461bcd60e51b81526004016112979190615b15565b508a6114ca613033565b1015600f906114ec5760405162461bcd60e51b81526004016112979190615b15565b5060008a60010b1261152b578a611503338c613047565b1015600d906115255760405162461bcd60e51b81526004016112979190615b15565b5061155b565b8a611537336000613047565b1015600d906115595760405162461bcd60e51b81526004016112979190615b15565b505b60145461ffff81166000908152601860209081526040808320600160d01b90940460ff168352928152828220600185900b83529052908120600201546115a1908d615b9a565b6000858152601360205260409020805460ff191660011790556022549091506001600160a01b0316156115f557600c34156115ef5760405162461bcd60e51b81526004016112979190615b15565b50611619565b600c3482146116175760405162461bcd60e51b81526004016112979190615b15565b505b611623338d614204565b601454600160d01b900460ff166000908152602080526040902054611649908d90615afd565b601454600160d01b900460ff166000908152602080805260408083209390935533825260109052205461167d908d90615afd565b3360009081526010602090815260408083209390935560118152828220601454600160d01b900460ff1683528152828220600186900b8352905220546116c4908d90615afd565b336000908152601160209081526040808320601454600160d01b900460ff1684528252808320600187900b80855292528220929092551361174957336000908152601260209081526040808320600186900b8452909152902054611729908d90615afd565b336000908152601260209081526040808320600187900b84529091529020555b600061271061175c61ffff8d1684615b9a565b6117669190615bcf565b6022549091506001600160a01b031615611890576022546040516323b872dd60e01b8152336004820152306024820152604481018490526001600160a01b039091169081906323b872dd90606401602060405180830381600087803b1580156117ce57600080fd5b505af11580156117e2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118069190615be3565b5060405163a9059cbb60e01b81526001600160a01b038c811660048301526024820184905282169063a9059cbb90604401602060405180830381600087803b15801561185157600080fd5b505af1158015611865573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118899190615be3565b50506118c8565b6040516001600160a01b038b169082156108fc029083906000818181858888f193505050501580156118c6573d6000803e3d6000fd5b505b806021546118d69190615afd565b602155505060016009555050505050505050505050565b6008546001600160a01b031633146119175760405162461bcd60e51b815260040161129790615c00565b6014805460ff60d01b1916600160d01b60ff8416908102919091179091556040519081527f5d14047d25a400b6364f7b505872a4f0e8437d0dfd6cbdd5eee59f37baee7f459060200160405180910390a150565b6008546001600160a01b031633146119955760405162461bcd60e51b815260040161129790615c00565b80156119d8576014805461ffff169060006119af83615c35565b91906101000a81548161ffff021916908361ffff16021790555050601b60006119d89190614b9a565b600060186000601460009054906101000a900461ffff1661ffff1661ffff16815260200190815260200160002060008760ff1660ff16815260200190815260200160002060008660010b60010b815260200190815260200160002060030160009054906101000a900460ff1690508560186000601460009054906101000a900461ffff1661ffff1661ffff16815260200190815260200160002060008860ff1660ff16815260200190815260200160002060008760010b60010b815260200190815260200160002060000160006101000a81548160ff021916908360ff1602179055508460186000601460009054906101000a900461ffff1661ffff1661ffff16815260200190815260200160002060008860ff1660ff16815260200190815260200160002060008760010b60010b815260200190815260200160002060000160016101000a81548161ffff021916908360010b61ffff1602179055508360186000601460009054906101000a900461ffff1661ffff1661ffff16815260200190815260200160002060008860ff1660ff16815260200190815260200160002060008760010b60010b8152602001908152602001600020600101819055508260186000601460009054906101000a900461ffff1661ffff1661ffff16815260200190815260200160002060008860ff1660ff16815260200190815260200160002060008760010b60010b815260200190815260200160002060020181905550600160186000601460009054906101000a900461ffff1661ffff1661ffff16815260200190815260200160002060008860ff1660ff16815260200190815260200160002060008760010b60010b815260200190815260200160002060030160006101000a81548160ff0219169083151502179055508015611c785750611de0565b60145461ffff908116600090815260196020908152604080832060ff8b168452909152812080549092169190611cad83615c35565b825461010092830a61ffff81810219909216928216029190911790925560145482166000908152601a6020908152604080832060ff8d16845282528220805460018101825590835290822060108204018054600f90921660020290930a80850219909116938a16029290921790559050805b601b5460ff82161015611d83578760ff16601b8260ff1681548110611d4657611d46615a7b565b60009182526020918290209181049091015460ff601f9092166101000a9004161415611d7157600191505b80611d7b81615c57565b915050611d1f565b5080611ddd57601b8054600181018255600091909152602081047f3ad8aa4f87544323a9d1e5dd902f40c356527a7955687113db5f9a85ad579dc101805460ff808b16601f9094166101000a938402930219169190911790555b50505b5050505050565b601a6020528260005260406000206020528160005260406000208181548110611e0f57600080fd5b906000526020600020906010918282040191900660020292509250509054906101000a900460010b81565b61124383838361421e565b600085815260136020526040902054600b9060ff1615611e785760405162461bcd60e51b81526004016112979190615b15565b50601460069054906101000a90046001600160a01b03166001600160a01b0316611edb8686604051602001611ec492919091825260f81b6001600160f81b031916602082015260210190565b604051602081830303815290604052858585614139565b6001600160a01b031614600a90611f055760405162461bcd60e51b81526004016112979190615b15565b5060008581526013602052604090819020805460ff191660011790556014805460ff8716600160d01b0260ff60d01b19909116179055517f5d14047d25a400b6364f7b505872a4f0e8437d0dfd6cbdd5eee59f37baee7f4590611f7290869060ff91909116815260200190565b60405180910390a15050505050565b60005b82811015611fc257611fb08686868685818110611fa357611fa3615a7b565b90506020020135856130dd565b80611fba81615aa7565b915050611f84565b505050505050565b6008546001600160a01b03163314611ff45760405162461bcd60e51b815260040161129790615c00565b801561203e5760148054600160201b900461ffff1690600461201583615c35565b91906101000a81548161ffff021916908361ffff16021790555050601f600061203e9190614bbf565b60005b82518110156112435761209083828151811061205f5761205f615a7b565b60200260200101516000015184838151811061207d5761207d615a7b565b6020026020010151602001516000613392565b8061209a81615aa7565b915050612041565b6008546001600160a01b031633146120cc5760405162461bcd60e51b815260040161129790615c00565b6040514790339082156108fc029083906000818181858888f193505050501580156120fb573d6000803e3d6000fd5b5050565b6008546001600160a01b031633146121295760405162461bcd60e51b815260040161129790615c00565b600e816121495760405162461bcd60e51b81526004016112979190615b15565b5080612153613033565b1015600f906121755760405162461bcd60e51b81526004016112979190615b15565b506120fb8282614204565b6008546001600160a01b031633146121aa5760405162461bcd60e51b815260040161129790615c00565b80156121ed576014805461ffff169060006121c483615c35565b91906101000a81548161ffff021916908361ffff16021790555050601b60006121ed9190614b9a565b60005b82518110156112435761227b83828151811061220e5761220e615a7b565b60200260200101516000015184838151811061222c5761222c615a7b565b60200260200101516020015185848151811061224a5761224a615a7b565b60200260200101516040015186858151811061226857612268615a7b565b602002602001015160600151600061196b565b8061228581615aa7565b9150506121f0565b60606000805b601b548110156123175760145461ffff166000908152601960205260408120601b8054919291849081106122c9576122c9615a7b565b600091825260208083208183040154601f9092166101000a90910460ff1683528201929092526040019020546123039061ffff1683615afd565b91508061230f81615aa7565b915050612293565b506000816001600160401b0381111561233257612332615001565b60405190808252806020026020018201604052801561238457816020015b6040805160808101825260008082526020808301829052928201819052606082015282526000199092019101816123505790505b5090506000805b601b548110156125b4576000601b82815481106123aa576123aa615a7b565b60009182526020808320908204015460ff601f9092166101000a90041691505b60145461ffff166000908152601960205260408120601b8054919291869081106123f6576123f6615a7b565b600091825260208083208183040154601f9092166101000a90910460ff16835282019290925260400190205461ffff1681101561259f5760145461ffff166000908152601a6020908152604080832060ff86168452909152812080548390811061246257612462615a7b565b90600052602060002090601091828204019190066002029054906101000a900460010b90508286868151811061249a5761249a615a7b565b60200260200101516000019060ff16908160ff1681525050808686815181106124c5576124c5615a7b565b602090810291909101810151600192830b9082015260145461ffff16600090815260188252604080822060ff88168352835280822085850b8352909252200154865187908790811061251957612519615a7b565b60209081029190910181015160409081019290925260145461ffff1660009081526018825282812060ff871682528252828120600185900b82529091522060020154865187908790811061256f5761256f615a7b565b6020908102919091010151606001528461258881615aa7565b95505050808061259790615aa7565b9150506123ca565b505080806125ac90615aa7565b91505061238b565b50909392505050565b611243838383604051806020016040528060008152506130dd565b601b81815481106125e857600080fd5b9060005260206000209060209182820401919006915054906101000a900460ff1681565b6008546001600160a01b031633146126365760405162461bcd60e51b815260040161129790615c00565b601454600160d81b900460ff16156126825760405162461bcd60e51b815260206004820152600f60248201526e26b2ba30b230ba3090333937bd32b760891b6044820152606401611297565b80516120fb906015906020840190614be4565b80516060906000816001600160401b038111156126b4576126b4615001565b6040519080825280602002602001820160405280156126ff57816020015b60408051606081018252600080825260208083018290529282015282526000199092019101816126d25790505b50905060005b8281146127535761272e85828151811061272157612721615a7b565b6020026020010151613503565b82828151811061274057612740615a7b565b6020908102919091010152600101612705565b509392505050565b600061276682614409565b5192915050565b6008546001600160a01b031633146127975760405162461bcd60e51b815260040161129790615c00565b6016805460ff1916911515919091179055565b60006001600160a01b0382166127d3576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b031633146128225760405162461bcd60e51b815260040161129790615c00565b61282c600061452b565b565b601f546060906000816001600160401b0381111561284e5761284e615001565b60405190808252806020026020018201604052801561289357816020015b604080518082019091526000808252602082015281526020019060019003908161286c5790505b50905060005b8281101561108d57601f81815481106128b4576128b4615a7b565b90600052602060002090601091828204019190066002029054906101000a900460010b8282815181106128e9576128e9615a7b565b60209081029190910181015160019290920b909152601454600160201b900461ffff166000908152601e90915260408120601f80549192918490811061293157612931615a7b565b90600052602060002090601091828204019190066002029054906101000a900460010b60010b60010b81526020019081526020016000205482828151811061297b5761297b615a7b565b60209081029190910181015101528061299381615aa7565b915050612899565b6008546001600160a01b031633146129c55760405162461bcd60e51b815260040161129790615c00565b602280546001600160a01b0319166001600160a01b0392909216919091179055565b6008546001600160a01b03163314612a115760405162461bcd60e51b815260040161129790615c00565b6014805461ffff909216600160f01b026001600160f01b03909216919091179055565b60606000806000612a44856127aa565b90506000816001600160401b03811115612a6057612a60615001565b604051908082528060200260200182016040528015612a89578160200160208202803683370190505b509050612aaf604080516060810182526000808252602082018190529181019190915290565b60015b838614612b7557600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16158015928201929092529250612b1857612b6d565b81516001600160a01b031615612b2d57815194505b876001600160a01b0316856001600160a01b03161415612b6d5780838780600101985081518110612b6057612b60615a7b565b6020026020010181815250505b600101612ab2565b50909695505050505050565b6008546001600160a01b03163314612bab5760405162461bcd60e51b815260040161129790615c00565b6040516370a0823160e01b815230600482015281906001600160a01b0382169063a9059cbb90339083906370a082319060240160206040518083038186803b158015612bf657600080fd5b505afa158015612c0a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c2e9190615c77565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b158015612c7457600080fd5b505af1158015612c88573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112439190615be3565b60005b81811015611de057612cda8585858585818110612cce57612cce615a7b565b90506020020135611e3a565b80612ce481615aa7565b915050612caf565b6060600380546110fa90615ac2565b6060818310612d1d57604051631960ccad60e11b815260040160405180910390fd5b600080546001851015612d2f57600194505b80841115612d3b578093505b6000612d46876127aa565b905084861015612d655785850381811015612d5f578091505b50612d69565b5060005b6000816001600160401b03811115612d8357612d83615001565b604051908082528060200260200182016040528015612dac578160200160208202803683370190505b50905081612dbf579350612eba92505050565b6000612dca88613503565b905060008160400151612ddb575080515b885b888114158015612ded5750848714155b15612eae57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16158015928201929092529350612e5157612ea6565b82516001600160a01b031615612e6657825191505b8a6001600160a01b0316826001600160a01b03161415612ea65780848880600101995081518110612e9957612e99615a7b565b6020026020010181815250505b600101612ddd565b50505092835250909150505b9392505050565b6008546001600160a01b03163314612eeb5760405162461bcd60e51b815260040161129790615c00565b8015612f34576014805462010000900461ffff16906002612f0b83615c35565b91906101000a81548161ffff021916908361ffff16021790555050601c6000612f349190614b9a565b60005b825181101561124357612f86838281518110612f5557612f55615a7b565b602002602001015160000151848381518110612f7357612f73615a7b565b6020026020010151602001516000613127565b80612f9081615aa7565b915050612f37565b6001600160a01b038216331415612fc25760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b905090565b600080546000190161302e906107e7615c90565b600080613054848461381c565b601454909150600160e01b900461ffff16811115612eba575050601454600160e01b900461ffff166110ae565b601c81815481106125e857600080fd5b6008546001600160a01b031633146130bb5760405162461bcd60e51b815260040161129790615c00565b6014805461ffff909216600160e01b0261ffff60e01b19909216919091179055565b6130e884848461421e565b6001600160a01b0383163b15613121576131048484848461457d565b613121576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146131515760405162461bcd60e51b815260040161129790615c00565b801561319a576014805462010000900461ffff1690600261317183615c35565b91906101000a81548161ffff021916908361ffff16021790555050601c600061319a9190614b9a565b60145462010000900461ffff166000908152601d6020908152604080832060ff871684529091528120839055805b601c5460ff8216101561322c578460ff16601c8260ff16815481106131ef576131ef615a7b565b60009182526020918290209181049091015460ff601f9092166101000a900416141561321a57600191505b8061322481615c57565b9150506131c8565b508061312157601c8054600181018255600091909152602081047f0e4562a10381dec21b205ed72637e6b1b523bdd0e4d4d50af5cd23dd4500a21101805460ff808816601f9094166101000a9384029302191691909117905550505050565b60145461ffff166000908152601a6020908152604080832060ff85168452909152812054606091816001600160401b038111156132ca576132ca615001565b6040519080825280602002602001820160405280156132f3578160200160208202803683370190505b50905060005b828110156127535760145461ffff166000908152601a6020908152604080832060ff89168452909152902080548290811061333657613336615a7b565b90600052602060002090601091828204019190066002029054906101000a900460010b82828151811061336b5761336b615a7b565b602002602001019060010b908160010b81525050808061338a90615aa7565b9150506132f9565b6008546001600160a01b031633146133bc5760405162461bcd60e51b815260040161129790615c00565b80156134065760148054600160201b900461ffff169060046133dd83615c35565b91906101000a81548161ffff021916908361ffff16021790555050601f60006134069190614bbf565b601454600160201b900461ffff166000908152601e60209081526040808320600187900b84529091528120839055805b601f5461ffff8216101561349d578460010b601f8261ffff168154811061345f5761345f615a7b565b60009182526020909120601082040154600f9091166002026101000a900460010b141561348b57600191505b8061349581615c35565b915050613436565b508061312157601f8054600181018255600091909152601081047fa03837a25210ee280c2113ff4b77ca23440b19d4866cca721c801278fd08d80701805461ffff8088166002600f909516949094026101000a9384029302191691909117905550505050565b6040805160608082018352600080835260208084018290528385018290528451928301855281835282018190529281019290925290600183108061354957506000548310155b156135545792915050565b50600082815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615801592820192909252906135b45792915050565b612eba83614409565b60606135c8826140a4565b6136085760405162461bcd60e51b81526020600482015260116024820152703737b732bc34b9ba32b73a103a37b5b2b760791b6044820152606401611297565b6015805461361590615ac2565b1515905061363157505060408051602081019091526000815290565b60408051602081019091526000815260165460ff16156136695750604080518082019091526005815264173539b7b760d91b60208201525b601561367484614671565b8260405160200161368793929190615ca7565b604051602081830303815290604052915050919050565b600085815260136020526040902054600b9060ff16156136d15760405162461bcd60e51b81526004016112979190615b15565b50601460069054906101000a90046001600160a01b03166001600160a01b031661371d8686604051602001611ec492919091825260601b6001600160601b031916602082015260340190565b6001600160a01b031614600a906137475760405162461bcd60e51b81526004016112979190615b15565b50505060009283525060136020526040909120805460ff19166001179055601480546001600160a01b03909216600160301b026601000000000000600160d01b0319909216919091179055565b60005b81811015611de0576137c285858585858181106137b6576137b6615a7b565b905060200201356125bd565b806137cc81615aa7565b915050613797565b6008546001600160a01b031633146137fe5760405162461bcd60e51b815260040161129790615c00565b6138088686612180565b6138128484612ec1565b611fc28282611fca565b6001600160a01b0382166000908152601060205260408120546014548290600160d01b900460ff16613853576000925050506110ae565b60145462010000810461ffff166000908152601d60209081526040808320600160d01b90940460ff16835292815282822054908052919020541061389c576000925050506110ae565b601454600160201b900461ffff166000908152601e60209081526040808320600188900b808552908352818420546001600160a01b038a16855260128452828520918552925290912054106138f6576000925050506110ae565b60145461ffff8116600090815260186020908152604080832060ff600160d01b909504851684528252808320600189900b84529091529020600301541615613974575060145461ffff81166000908152601860209081526040808320600160d01b90940460ff168352928152828220600187810b8452915291902001545b601454600160f01b900461ffff168210613993576000925050506110ae565b6001600160a01b0385166000908152601160209081526040808320601454600160d01b900460ff1684528252808320600188900b845290915290205481116139e0576000925050506110ae565b60145462010000810461ffff166000908152601d60209081526040808320600160d01b90940460ff168352928152828220549080529190205410613a29576000925050506110ae565b601454600160201b900461ffff166000908152601e60209081526040808320600188900b808552908352818420546001600160a01b038a1685526012845282852091855292529091205410613a83576000925050506110ae565b601454600090613a9f908490600160f01b900461ffff16615c90565b6001600160a01b0387166000908152601160209081526040808320601454600160d01b900460ff168452825280832060018a900b845290915281205491925090613ae99084615c90565b601454600160d01b810460ff16600081815260208080526040808320546201000090950461ffff168352601d82528083209383529290529081205492935091613b329190615c90565b6001600160a01b038916600090815260126020908152604080832060018c900b80855290835281842054601454600160201b900461ffff168552601e845282852091855292528220549293509091613b8a9190615c90565b9050613bb8613b97613033565b613bb3613bad613ba7888861476e565b8661476e565b8461476e565b61476e565b9998505050505050505050565b6008546001600160a01b03163314613bef5760405162461bcd60e51b815260040161129790615c00565b6014805460ff60d81b1916600160d81b179055565b60158054613c1190615ac2565b80601f0160208091040260200160405190810160405280929190818152602001828054613c3d90615ac2565b8015613c8a5780601f10613c5f57610100808354040283529160200191613c8a565b820191906000526020600020905b815481529060010190602001808311613c6d57829003601f168201915b505050505081565b6008546001600160a01b03163314613cbc5760405162461bcd60e51b815260040161129790615c00565b6001600160a01b038116613d215760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401611297565b613d2a8161452b565b50565b6008546001600160a01b03163314613d575760405162461bcd60e51b815260040161129790615c00565b60145461ffff16600090815260186020908152604080832060ff8087168552908352818420600186900b85529092529091206003015416613dcd5760405162461bcd60e51b815260206004820152601060248201526f149bdb19481b9bdd08195e1a5cdd195960821b6044820152606401611297565b6014805461ffff908116600090815260186020818152604080842060ff8916808652908352818520600189810b808852918552838720805460ff1990811690915589548916885286865284882084895286528488208389528652848820805462ffff001916905589548916885286865284882084895286528488208389528652848820909101879055885488168752858552838720838852855283872082885285528387206002018790558854881687529484528286208287528452828620908652835281852060030180549094169093559454841683526019815284832091835252918220805490911691613ec283615d3e565b91906101000a81548161ffff021916908361ffff1602179055505060005b60145461ffff166000908152601a6020908152604080832060ff80881685529252909120549082161015613fb85760145461ffff166000908152601a6020908152604080832060ff808816855292529091208054600185900b928416908110613f4b57613f4b615a7b565b60009182526020909120601082040154600f9091166002026101000a900460010b1415613fa65760145461ffff166000908152601a6020908152604080832060ff80881685529252909120613fa1918316614784565b613fb8565b80613fb081615c57565b915050613ee0565b5060145461ffff908116600090815260196020908152604080832060ff87168452909152902054166120fb5760005b601c5460ff82161015611243578260ff16601c8260ff168154811061400e5761400e615a7b565b60009182526020918290209181049091015460ff601f9092166101000a900416141561404257611243601c8260ff166148b8565b8061404c81615c57565b915050613fe7565b60006001600160e01b031982166380ac58cd60e01b148061408557506001600160e01b03198216635b5e139f60e01b145b806110ae57506301ffc9a760e01b6001600160e01b03198316146110ae565b6000816001111580156140b8575060005482105b80156110ae575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000808580519060200120905060008160405160200161418591907f19457468657265756d205369676e6564204d6573736167653a0a3332000000008152601c810191909152603c0190565b60408051601f1981840301815282825280516020918201206000845290830180835281905260ff8916918301919091526060820187905260808201869052915060019060a0016020604051602081039080840390855afa1580156141ed573d6000803e3d6000fd5b50505060206040510351925050505b949350505050565b6120fb8282604051806020016040528060008152506149db565b600061422982614409565b9050836001600160a01b031681600001516001600160a01b0316146142605760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061427e575061427e8533610e60565b8061429957503361428e8461117d565b6001600160a01b0316145b9050806142b957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166142e057604051633a954ecd60e21b815260040160405180910390fd5b6142ec600084876140dd565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166143c05760005482146143c057805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611de0565b604080516060810182526000808252602082018190529181019190915281806001116145125760005481101561451257600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906145105780516001600160a01b0316156144a7579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff161515928101929092521561450b579392505050565b6144a7565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906145b2903390899088908890600401615d5c565b602060405180830381600087803b1580156145cc57600080fd5b505af19250505080156145fc575060408051601f3d908101601f191682019092526145f991810190615d99565b60015b614657573d80801561462a576040519150601f19603f3d011682016040523d82523d6000602084013e61462f565b606091505b50805161464f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506141fc565b6060816146955750506040805180820190915260018152600360fc1b602082015290565b8160005b81156146bf57806146a981615aa7565b91506146b89050600a83615bcf565b9150614699565b6000816001600160401b038111156146d9576146d9615001565b6040519080825280601f01601f191660200182016040528015614703576020820181803683370190505b5090505b84156141fc57614718600183615c90565b9150614725600a86615db6565b614730906030615afd565b60f81b81838151811061474557614745615a7b565b60200101906001600160f81b031916908160001a905350614767600a86615bcf565b9450614707565b600081831061477d5781612eba565b5090919050565b805b825461479490600190615c90565b81101561483157826147a7826001615afd565b815481106147b7576147b7615a7b565b90600052602060002090601091828204019190066002029054906101000a900460010b8382815481106147ec576147ec615a7b565b90600052602060002090601091828204019190066002026101000a81548161ffff021916908360010b61ffff160217905550808061482990615aa7565b915050614786565b508154829061484290600190615c90565b8154811061485257614852615a7b565b90600052602060002090601091828204019190066002026101000a81549061ffff02191690558180548061488857614888615dca565b600082815260209020601060001990920191820401805461ffff6002600f8516026101000a021916905590555050565b805b82546148c890600190615c90565b81101561495a57826148db826001615afd565b815481106148eb576148eb615a7b565b90600052602060002090602091828204019190069054906101000a900460ff1683828154811061491d5761491d615a7b565b90600052602060002090602091828204019190066101000a81548160ff021916908360ff160217905550808061495290615aa7565b9150506148ba565b508154829061496b90600190615c90565b8154811061497b5761497b615a7b565b90600052602060002090602091828204019190066101000a81549060ff0219169055818054806149ad576149ad615dca565b60019003818190600052602060002090602091828204019190066101000a81549060ff021916905590555050565b6000546001600160a01b038416614a0457604051622e076360e81b815260040160405180910390fd5b82614a225760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b018116918217600160401b67ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15614b45575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4614b0e600087848060010195508761457d565b614b2b576040516368d2bf6b60e11b815260040160405180910390fd5b808210614ac3578260005414614b4057600080fd5b614b8a565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210614b46575b5060009081556131219085838684565b50805460008255601f016020900490600052602060002090810190613d2a9190614c68565b50805460008255600f016010900490600052602060002090810190613d2a9190614c68565b828054614bf090615ac2565b90600052602060002090601f016020900481019282614c125760008555614c58565b82601f10614c2b57805160ff1916838001178555614c58565b82800160010185558215614c58579182015b82811115614c58578251825591602001919060010190614c3d565b50614c64929150614c68565b5090565b5b80821115614c645760008155600101614c69565b602080825282518282018190526000919060409081850190868401855b82811015614cc2578151805160ff168552860151868501529284019290850190600101614c9a565b5091979650505050505050565b6001600160e01b031981168114613d2a57600080fd5b600060208284031215614cf757600080fd5b8135612eba81614ccf565b600060208284031215614d1457600080fd5b5035919050565b60005b83811015614d36578181015183820152602001614d1e565b838111156131215750506000910152565b60008151808452614d5f816020860160208601614d1b565b601f01601f19169290920160200192915050565b602081526000612eba6020830184614d47565b80356001600160a01b0381168114614d9d57600080fd5b919050565b60008060408385031215614db557600080fd5b614dbe83614d86565b946020939093013593505050565b8035600181900b8114614d9d57600080fd5b803561ffff81168114614d9d57600080fd5b803560ff81168114614d9d57600080fd5b600080600080600080600080610100898b031215614e1e57600080fd5b88359750614e2e60208a01614dcc565b9650614e3c60408a01614dde565b9550614e4a60608a01614d86565b945060808901359350614e5f60a08a01614df0565b925060c0890135915060e089013590509295985092959890939650565b600060208284031215614e8e57600080fd5b612eba82614df0565b8015158114613d2a57600080fd5b600080600080600060a08688031215614ebd57600080fd5b614ec686614df0565b9450614ed460208701614dcc565b935060408601359250606086013591506080860135614ef281614e97565b809150509295509295909350565b600080600060608486031215614f1557600080fd5b614f1e84614dde565b9250614f2c60208501614df0565b9150604084013590509250925092565b600080600060608486031215614f5157600080fd5b614f5a84614d86565b9250614f2c60208501614d86565b600080600080600060a08688031215614f8057600080fd5b85359450614f9060208701614df0565b9350614f9e60408701614df0565b94979396509394606081013594506080013592915050565b60008083601f840112614fc857600080fd5b5081356001600160401b03811115614fdf57600080fd5b6020830191508360208260051b8501011115614ffa57600080fd5b9250929050565b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b038111828210171561503957615039615001565b60405290565b604051608081016001600160401b038111828210171561503957615039615001565b604051601f8201601f191681016001600160401b038111828210171561508957615089615001565b604052919050565b60006001600160401b038311156150aa576150aa615001565b6150bd601f8401601f1916602001615061565b90508281528383830111156150d157600080fd5b828260208301376000602084830101529392505050565b600082601f8301126150f957600080fd5b612eba83833560208501615091565b60008060008060006080868803121561512057600080fd5b61512986614d86565b945061513760208701614d86565b935060408601356001600160401b038082111561515357600080fd5b61515f89838a01614fb6565b9095509350606088013591508082111561517857600080fd5b50615185888289016150e8565b9150509295509295909350565b60006001600160401b038211156151ab576151ab615001565b5060051b60200190565b600082601f8301126151c657600080fd5b813560206151db6151d683615192565b615061565b82815260069290921b840181019181810190868411156151fa57600080fd5b8286015b8481101561524057604081890312156152175760008081fd5b61521f615017565b61522882614dcc565b815281850135858201528352918301916040016151fe565b509695505050505050565b6000806040838503121561525e57600080fd5b82356001600160401b0381111561527457600080fd5b615280858286016151b5565b925050602083013561529181614e97565b809150509250929050565b600082601f8301126152ad57600080fd5b813560206152bd6151d683615192565b82815260079290921b840181019181810190868411156152dc57600080fd5b8286015b8481101561524057608081890312156152f95760008081fd5b61530161503f565b61530a82614df0565b8152615317858301614dcc565b8186015260408281013590820152606080830135908201528352918301916080016152e0565b6000806040838503121561535057600080fd5b82356001600160401b0381111561536657600080fd5b6152808582860161529c565b60006020828403121561538457600080fd5b612eba82614dcc565b602080825282518282018190526000919060409081850190868401855b82811015614cc2578151805160ff16855286810151600190810b8887015286820151878701526060918201519186019190915260809094019391860191016153aa565b6000602082840312156153ff57600080fd5b81356001600160401b0381111561541557600080fd5b8201601f8101841361542657600080fd5b6141fc84823560208401615091565b6000602080838503121561544857600080fd5b82356001600160401b0381111561545e57600080fd5b8301601f8101851361546f57600080fd5b803561547d6151d682615192565b81815260059190911b8201830190838101908783111561549c57600080fd5b928401925b828410156154ba578335825292840192908401906154a1565b979650505050505050565b80516001600160a01b031682526020808201516001600160401b0316908301526040908101511515910152565b6020808252825182820181905260009190848201906040850190845b81811015612b75576155218385516154c5565b928401926060929092019160010161550e565b60006020828403121561554657600080fd5b8135612eba81614e97565b60006020828403121561556357600080fd5b612eba82614d86565b602080825282518282018190526000919060409081850190868401855b82811015614cc25781518051600190810b86529087015187860152938501939186019101615589565b6000602082840312156155c457600080fd5b612eba82614dde565b6020808252825182820181905260009190848201906040850190845b81811015612b75578351835292840192918401916001016155e9565b6000806000806060858703121561561b57600080fd5b61562485614d86565b935061563260208601614d86565b925060408501356001600160401b0381111561564d57600080fd5b61565987828801614fb6565b95989497509550505050565b60008060006060848603121561567a57600080fd5b61568384614d86565b95602085013595506040909401359392505050565b6000806000606084860312156156ad57600080fd5b6156b684614dde565b92506156c460208501614df0565b91506156d260408501614dcc565b90509250925092565b600082601f8301126156ec57600080fd5b813560206156fc6151d683615192565b82815260069290921b8401810191818101908684111561571b57600080fd5b8286015b8481101561524057604081890312156157385760008081fd5b615740615017565b61574982614df0565b8152818501358582015283529183019160400161571f565b6000806040838503121561577457600080fd5b82356001600160401b0381111561578a57600080fd5b615280858286016156db565b600080604083850312156157a957600080fd5b6157b283614d86565b9150602083013561529181614e97565b600080604083850312156157d557600080fd5b6157de83614d86565b91506157ec60208401614dcc565b90509250929050565b6000806000806080858703121561580b57600080fd5b61581485614d86565b935061582260208601614d86565b92506040850135915060608501356001600160401b0381111561584457600080fd5b615850878288016150e8565b91505092959194509250565b60008060006060848603121561587157600080fd5b61587a84614df0565b925060208401359150604084013561589181614e97565b809150509250925092565b600080604083850312156158af57600080fd5b6158b883614dde565b91506157ec60208401614df0565b6020808252825182820181905260009190848201906040850190845b81811015612b75578351600190810b84529385019392850192016158e2565b60008060006060848603121561591657600080fd5b61587a84614dcc565b606081016110ae82846154c5565b600080600080600060a0868803121561594557600080fd5b85359450614f9060208701614d86565b60008060008060008060c0878903121561596e57600080fd5b86356001600160401b038082111561598557600080fd5b6159918a838b0161529c565b9750602089013591506159a382614e97565b909550604088013590808211156159b957600080fd5b6159c58a838b016156db565b9550606089013591506159d782614e97565b909350608088013590808211156159ed57600080fd5b506159fa89828a016151b5565b92505060a0870135615a0b81614e97565b809150509295509295509295565b60008060408385031215615a2c57600080fd5b615a3583614d86565b91506157ec60208401614d86565b60008060408385031215615a5657600080fd5b6157de83614dde565b60008060408385031215615a7257600080fd5b6157de83614df0565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415615abb57615abb615a91565b5060010190565b600181811c90821680615ad657607f821691505b60208210811415615af757634e487b7160e01b600052602260045260246000fd5b50919050565b60008219821115615b1057615b10615a91565b500190565b6000602080835260008454615b2981615ac2565b80848701526040600180841660008114615b4a5760018114615b5e57615b8c565b60ff19851689840152606089019550615b8c565b896000528660002060005b85811015615b845781548b8201860152908301908801615b69565b8a0184019650505b509398975050505050505050565b6000816000190483118215151615615bb457615bb4615a91565b500290565b634e487b7160e01b600052601260045260246000fd5b600082615bde57615bde615bb9565b500490565b600060208284031215615bf557600080fd5b8151612eba81614e97565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600061ffff80831681811415615c4d57615c4d615a91565b6001019392505050565b600060ff821660ff811415615c6e57615c6e615a91565b60010192915050565b600060208284031215615c8957600080fd5b5051919050565b600082821015615ca257615ca2615a91565b500390565b6000808554615cb581615ac2565b60018281168015615ccd5760018114615cde57615d0d565b60ff19841687528287019450615d0d565b8960005260208060002060005b85811015615d045781548a820152908401908201615ceb565b50505082870194505b505050508451615d21818360208901614d1b565b8451910190615d34818360208801614d1b565b0195945050505050565b600061ffff821680615d5257615d52615a91565b6000190192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090615d8f90830184614d47565b9695505050505050565b600060208284031215615dab57600080fd5b8151612eba81614ccf565b600082615dc557615dc5615bb9565b500690565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220f4436b7a1c60be7185342b2eb02d5dac6a80f749927f6a02880d2584ff0c339264736f6c63430008090033
Deployed Bytecode
0x6080604052600436106104345760003560e01c80638462151c11610229578063bd8fc4a21161012e578063d0950e74116100b6578063e985e9c51161007a578063e985e9c514610e45578063f2fde38b14610e8e578063f5a4156c14610eae578063fb3cc6c214610ee6578063fe2e66f414610f0757600080fd5b8063d0950e7414610dbf578063d111515d14610ddf578063de7fcb1d14610df4578063e08c5e3214610e16578063e4d3d44814610e3057600080fd5b8063c87b56dd116100fd578063c87b56dd14610d07578063c9d4857914610d27578063cf502d0d14610d47578063d047d03814610d67578063d0667dd214610d9f57600080fd5b8063bd8fc4a214610c51578063be56844814610c8d578063bf65eb3414610cba578063c23dc68f14610cda57600080fd5b8063a13429a9116101b1578063b1ad048c11610180578063b1ad048c14610bb1578063b1e8dbaa14610bd1578063b6a7412114610bf1578063b88d4fde14610c11578063ba1402d314610c3157600080fd5b8063a13429a914610b43578063a22cb46514610b63578063a2309ff814610b83578063ac7dc68d14610b9c57600080fd5b80638a19c8bc116101f85780638a19c8bc14610a3b5780638da5cb5b14610a5c57806395d89b4114610a7a57806399a2557a14610a8f5780639e8cc8d314610aaf57600080fd5b80638462151c146109b957806387f65c91146109e657806389476069146109fb57806389b5a8c214610a1b57600080fd5b80633ccfd60b1161033a578063572849c4116102c257806370a082311161028657806370a0823114610922578063715018a614610942578063748a500a14610957578063796b89ec1461097957806379a2c3f81461099957600080fd5b8063572849c4146108595780635b7633d01461088e5780635bbb2177146108b55780636352211e146108e25780636e453d621461090257600080fd5b80633e9dbed0116103095780633e9dbed0146107af57806342842e0e146107d157806346830628146107f1578063500ea93b1461080757806355f804b31461083957600080fd5b80633ccfd60b146106fe5780633d6a5745146107135780633dd3802d146107335780633e8f18f01461075357600080fd5b80631a6d843e116103bd57806327854c151161038c57806327854c151461065c578063306279da1461068857806332ab9bbe146106a857806332cb6b0c146106c857806333ee7927146106de57600080fd5b80631a6d843e146105dc5780631c1cb323146105fc57806321120f7a1461061c57806323b872dd1461063c57600080fd5b8063081812fc11610404578063081812fc14610528578063095ea7b3146105605780630d23d6691461058257806318160ddd14610595578063183ab264146105bc57600080fd5b80620319df1461047857806301ffc9a7146104a357806306a7c8de146104d357806306fdde031461050657600080fd5b3661047357604080513381523460208201527f88a5966d370b9919b20f3e2c13ff65706f196a4e32cc2c12bf57088f88525874910160405180910390a1005b600080fd5b34801561048457600080fd5b5061048d610f27565b60405161049a9190614c7d565b60405180910390f35b3480156104af57600080fd5b506104c36104be366004614ce5565b611094565b604051901515815260200161049a565b3480156104df57600080fd5b506104f36104ee366004614d02565b6110b4565b60405160019190910b815260200161049a565b34801561051257600080fd5b5061051b6110eb565b60405161049a9190614d73565b34801561053457600080fd5b50610548610543366004614d02565b61117d565b6040516001600160a01b03909116815260200161049a565b34801561056c57600080fd5b5061058061057b366004614da2565b6111c1565b005b610580610590366004614e01565b611248565b3480156105a157600080fd5b5060015460005403600019015b60405190815260200161049a565b3480156105c857600080fd5b506105806105d7366004614e7c565b6118ed565b3480156105e857600080fd5b506105806105f7366004614ea5565b61196b565b34801561060857600080fd5b50602254610548906001600160a01b031681565b34801561062857600080fd5b506104f3610637366004614f00565b611de7565b34801561064857600080fd5b50610580610657366004614f3c565b611e3a565b34801561066857600080fd5b506105ae610677366004614e7c565b602080526000908152604090205481565b34801561069457600080fd5b506105806106a3366004614f68565b611e45565b3480156106b457600080fd5b506105806106c3366004615108565b611f81565b3480156106d457600080fd5b506105ae6107e781565b3480156106ea57600080fd5b506105806106f936600461524b565b611fca565b34801561070a57600080fd5b506105806120a2565b34801561071f57600080fd5b5061058061072e366004614da2565b6120ff565b34801561073f57600080fd5b5061058061074e36600461533d565b612180565b34801561075f57600080fd5b506105ae61076e366004615372565b60145461ffff81166000908152601860209081526040808320600160d01b90940460ff16835292815282822060019490940b82529290925290206002015490565b3480156107bb57600080fd5b506107c461228d565b60405161049a919061538d565b3480156107dd57600080fd5b506105806107ec366004614f3c565b6125bd565b3480156107fd57600080fd5b506105ae60215481565b34801561081357600080fd5b50610827610822366004614d02565b6125d8565b60405160ff909116815260200161049a565b34801561084557600080fd5b506105806108543660046153ed565b61260c565b34801561086557600080fd5b5060145461087b90600160f01b900461ffff1681565b60405161ffff909116815260200161049a565b34801561089a57600080fd5b5060145461054890600160301b90046001600160a01b031681565b3480156108c157600080fd5b506108d56108d0366004615435565b612695565b60405161049a91906154f2565b3480156108ee57600080fd5b506105486108fd366004614d02565b61275b565b34801561090e57600080fd5b5061058061091d366004615534565b61276d565b34801561092e57600080fd5b506105ae61093d366004615551565b6127aa565b34801561094e57600080fd5b506105806127f8565b34801561096357600080fd5b5061096c61282e565b60405161049a919061556c565b34801561098557600080fd5b50610580610994366004615551565b61299b565b3480156109a557600080fd5b506105806109b43660046155b2565b6129e7565b3480156109c557600080fd5b506109d96109d4366004615551565b612a34565b60405161049a91906155cd565b3480156109f257600080fd5b506105ae600181565b348015610a0757600080fd5b50610580610a16366004615551565b612b81565b348015610a2757600080fd5b50610580610a36366004615605565b612cac565b348015610a4757600080fd5b5060145461082790600160d01b900460ff1681565b348015610a6857600080fd5b506008546001600160a01b0316610548565b348015610a8657600080fd5b5061051b612cec565b348015610a9b57600080fd5b506109d9610aaa366004615665565b612cfb565b348015610abb57600080fd5b50610b12610aca366004615698565b601860209081526000938452604080852082529284528284209052825290208054600180830154600284015460039094015460ff8085169561010090950490930b9391921685565b6040805160ff909616865260019490940b60208601529284019190915260608301521515608082015260a00161049a565b348015610b4f57600080fd5b50610580610b5e366004615761565b612ec1565b348015610b6f57600080fd5b50610580610b7e366004615796565b612f98565b348015610b8f57600080fd5b50600054600019016105ae565b348015610ba857600080fd5b506105ae613033565b348015610bbd57600080fd5b506105ae610bcc3660046157c2565b613047565b348015610bdd57600080fd5b50610827610bec366004614d02565b613081565b348015610bfd57600080fd5b50610580610c0c3660046155b2565b613091565b348015610c1d57600080fd5b50610580610c2c3660046157f5565b6130dd565b348015610c3d57600080fd5b50610580610c4c36600461585c565b613127565b348015610c5d57600080fd5b5061087b610c6c36600461589c565b601960209081526000928352604080842090915290825290205461ffff1681565b348015610c9957600080fd5b50610cad610ca8366004614e7c565b61328b565b60405161049a91906158c6565b348015610cc657600080fd5b50610580610cd5366004615901565b613392565b348015610ce657600080fd5b50610cfa610cf5366004614d02565b613503565b60405161049a919061591f565b348015610d1357600080fd5b5061051b610d22366004614d02565b6135bd565b348015610d3357600080fd5b50610580610d4236600461592d565b61369e565b348015610d5357600080fd5b50610580610d62366004615605565b613794565b348015610d7357600080fd5b506105ae610d8236600461589c565b601d60209081526000928352604080842090915290825290205481565b348015610dab57600080fd5b50610580610dba366004615955565b6137d4565b348015610dcb57600080fd5b506105ae610dda3660046157c2565b61381c565b348015610deb57600080fd5b50610580613bc5565b348015610e0057600080fd5b5060145461087b90600160e01b900461ffff1681565b348015610e2257600080fd5b506016546104c39060ff1681565b348015610e3c57600080fd5b5061051b613c04565b348015610e5157600080fd5b506104c3610e60366004615a19565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610e9a57600080fd5b50610580610ea9366004615551565b613c92565b348015610eba57600080fd5b506105ae610ec9366004615a43565b601e60209081526000928352604080842090915290825290205481565b348015610ef257600080fd5b506014546104c390600160d81b900460ff1681565b348015610f1357600080fd5b50610580610f22366004615a5f565b613d2d565b601c546060906000816001600160401b03811115610f4757610f47615001565b604051908082528060200260200182016040528015610f8c57816020015b6040805180820190915260008082526020820152815260200190600190039081610f655790505b50905060005b8281101561108d57601c8181548110610fad57610fad615a7b565b90600052602060002090602091828204019190069054906101000a900460ff16828281518110610fdf57610fdf615a7b565b60209081029190910181015160ff90921690915260145461ffff62010000909104166000908152601d90915260408120601c80549192918490811061102657611026615a7b565b90600052602060002090602091828204019190069054906101000a900460ff1660ff1660ff1681526020019081526020016000205482828151811061106d5761106d615a7b565b60209081029190910181015101528061108581615aa7565b915050610f92565b5092915050565b600061109f82614054565b806110ae57506110ae82614054565b92915050565b601f81815481106110c457600080fd5b9060005260206000209060109182820401919006600202915054906101000a900460010b81565b6060600280546110fa90615ac2565b80601f016020809104026020016040519081016040528092919081815260200182805461112690615ac2565b80156111735780601f1061114857610100808354040283529160200191611173565b820191906000526020600020905b81548152906001019060200180831161115657829003601f168201915b5050505050905090565b6000611188826140a4565b6111a5576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006111cc8261275b565b9050806001600160a01b0316836001600160a01b031614156112015760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146112385761121b8133610e60565b611238576040516367d9dca160e11b815260040160405180910390fd5b6112438383836140dd565b505050565b600260095414156112a05760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b6002600955601454600160d01b900460ff166112ec5760405162461bcd60e51b815260206004820152600b60248201526a139bdd081cdd185c9d195960aa1b6044820152606401611297565b836000600189900b1261130e5761130b61ffff8916601087901b615afd565b90505b600081815260136020526040902054600b9060ff16156113415760405162461bcd60e51b81526004016112979190615b15565b50601454604080516020810184905260f08a901b6001600160f01b03191691810191909152606088901b6001600160601b0319166042820152600160301b9091046001600160a01b0316906113aa90605601604051602081830303815290604052868686614139565b6001600160a01b031614600a906113d45760405162461bcd60e51b81526004016112979190615b15565b5060145461ffff8116600090815260186020908152604080832060ff600160d01b9095048516845282528083208380529091528120600301549091169060018a900b811361141f5750885b60145461ffff8116600090815260186020908152604080832060ff600160d01b909504851684528252808320600186900b8452909152902060030154166114a0578161149c5760405162461bcd60e51b815260206004820152600c60248201526b4e6f7420656c696769626c6560a01b6044820152606401611297565b5060005b600e8b6114c05760405162461bcd60e51b81526004016112979190615b15565b508a6114ca613033565b1015600f906114ec5760405162461bcd60e51b81526004016112979190615b15565b5060008a60010b1261152b578a611503338c613047565b1015600d906115255760405162461bcd60e51b81526004016112979190615b15565b5061155b565b8a611537336000613047565b1015600d906115595760405162461bcd60e51b81526004016112979190615b15565b505b60145461ffff81166000908152601860209081526040808320600160d01b90940460ff168352928152828220600185900b83529052908120600201546115a1908d615b9a565b6000858152601360205260409020805460ff191660011790556022549091506001600160a01b0316156115f557600c34156115ef5760405162461bcd60e51b81526004016112979190615b15565b50611619565b600c3482146116175760405162461bcd60e51b81526004016112979190615b15565b505b611623338d614204565b601454600160d01b900460ff166000908152602080526040902054611649908d90615afd565b601454600160d01b900460ff166000908152602080805260408083209390935533825260109052205461167d908d90615afd565b3360009081526010602090815260408083209390935560118152828220601454600160d01b900460ff1683528152828220600186900b8352905220546116c4908d90615afd565b336000908152601160209081526040808320601454600160d01b900460ff1684528252808320600187900b80855292528220929092551361174957336000908152601260209081526040808320600186900b8452909152902054611729908d90615afd565b336000908152601260209081526040808320600187900b84529091529020555b600061271061175c61ffff8d1684615b9a565b6117669190615bcf565b6022549091506001600160a01b031615611890576022546040516323b872dd60e01b8152336004820152306024820152604481018490526001600160a01b039091169081906323b872dd90606401602060405180830381600087803b1580156117ce57600080fd5b505af11580156117e2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118069190615be3565b5060405163a9059cbb60e01b81526001600160a01b038c811660048301526024820184905282169063a9059cbb90604401602060405180830381600087803b15801561185157600080fd5b505af1158015611865573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118899190615be3565b50506118c8565b6040516001600160a01b038b169082156108fc029083906000818181858888f193505050501580156118c6573d6000803e3d6000fd5b505b806021546118d69190615afd565b602155505060016009555050505050505050505050565b6008546001600160a01b031633146119175760405162461bcd60e51b815260040161129790615c00565b6014805460ff60d01b1916600160d01b60ff8416908102919091179091556040519081527f5d14047d25a400b6364f7b505872a4f0e8437d0dfd6cbdd5eee59f37baee7f459060200160405180910390a150565b6008546001600160a01b031633146119955760405162461bcd60e51b815260040161129790615c00565b80156119d8576014805461ffff169060006119af83615c35565b91906101000a81548161ffff021916908361ffff16021790555050601b60006119d89190614b9a565b600060186000601460009054906101000a900461ffff1661ffff1661ffff16815260200190815260200160002060008760ff1660ff16815260200190815260200160002060008660010b60010b815260200190815260200160002060030160009054906101000a900460ff1690508560186000601460009054906101000a900461ffff1661ffff1661ffff16815260200190815260200160002060008860ff1660ff16815260200190815260200160002060008760010b60010b815260200190815260200160002060000160006101000a81548160ff021916908360ff1602179055508460186000601460009054906101000a900461ffff1661ffff1661ffff16815260200190815260200160002060008860ff1660ff16815260200190815260200160002060008760010b60010b815260200190815260200160002060000160016101000a81548161ffff021916908360010b61ffff1602179055508360186000601460009054906101000a900461ffff1661ffff1661ffff16815260200190815260200160002060008860ff1660ff16815260200190815260200160002060008760010b60010b8152602001908152602001600020600101819055508260186000601460009054906101000a900461ffff1661ffff1661ffff16815260200190815260200160002060008860ff1660ff16815260200190815260200160002060008760010b60010b815260200190815260200160002060020181905550600160186000601460009054906101000a900461ffff1661ffff1661ffff16815260200190815260200160002060008860ff1660ff16815260200190815260200160002060008760010b60010b815260200190815260200160002060030160006101000a81548160ff0219169083151502179055508015611c785750611de0565b60145461ffff908116600090815260196020908152604080832060ff8b168452909152812080549092169190611cad83615c35565b825461010092830a61ffff81810219909216928216029190911790925560145482166000908152601a6020908152604080832060ff8d16845282528220805460018101825590835290822060108204018054600f90921660020290930a80850219909116938a16029290921790559050805b601b5460ff82161015611d83578760ff16601b8260ff1681548110611d4657611d46615a7b565b60009182526020918290209181049091015460ff601f9092166101000a9004161415611d7157600191505b80611d7b81615c57565b915050611d1f565b5080611ddd57601b8054600181018255600091909152602081047f3ad8aa4f87544323a9d1e5dd902f40c356527a7955687113db5f9a85ad579dc101805460ff808b16601f9094166101000a938402930219169190911790555b50505b5050505050565b601a6020528260005260406000206020528160005260406000208181548110611e0f57600080fd5b906000526020600020906010918282040191900660020292509250509054906101000a900460010b81565b61124383838361421e565b600085815260136020526040902054600b9060ff1615611e785760405162461bcd60e51b81526004016112979190615b15565b50601460069054906101000a90046001600160a01b03166001600160a01b0316611edb8686604051602001611ec492919091825260f81b6001600160f81b031916602082015260210190565b604051602081830303815290604052858585614139565b6001600160a01b031614600a90611f055760405162461bcd60e51b81526004016112979190615b15565b5060008581526013602052604090819020805460ff191660011790556014805460ff8716600160d01b0260ff60d01b19909116179055517f5d14047d25a400b6364f7b505872a4f0e8437d0dfd6cbdd5eee59f37baee7f4590611f7290869060ff91909116815260200190565b60405180910390a15050505050565b60005b82811015611fc257611fb08686868685818110611fa357611fa3615a7b565b90506020020135856130dd565b80611fba81615aa7565b915050611f84565b505050505050565b6008546001600160a01b03163314611ff45760405162461bcd60e51b815260040161129790615c00565b801561203e5760148054600160201b900461ffff1690600461201583615c35565b91906101000a81548161ffff021916908361ffff16021790555050601f600061203e9190614bbf565b60005b82518110156112435761209083828151811061205f5761205f615a7b565b60200260200101516000015184838151811061207d5761207d615a7b565b6020026020010151602001516000613392565b8061209a81615aa7565b915050612041565b6008546001600160a01b031633146120cc5760405162461bcd60e51b815260040161129790615c00565b6040514790339082156108fc029083906000818181858888f193505050501580156120fb573d6000803e3d6000fd5b5050565b6008546001600160a01b031633146121295760405162461bcd60e51b815260040161129790615c00565b600e816121495760405162461bcd60e51b81526004016112979190615b15565b5080612153613033565b1015600f906121755760405162461bcd60e51b81526004016112979190615b15565b506120fb8282614204565b6008546001600160a01b031633146121aa5760405162461bcd60e51b815260040161129790615c00565b80156121ed576014805461ffff169060006121c483615c35565b91906101000a81548161ffff021916908361ffff16021790555050601b60006121ed9190614b9a565b60005b82518110156112435761227b83828151811061220e5761220e615a7b565b60200260200101516000015184838151811061222c5761222c615a7b565b60200260200101516020015185848151811061224a5761224a615a7b565b60200260200101516040015186858151811061226857612268615a7b565b602002602001015160600151600061196b565b8061228581615aa7565b9150506121f0565b60606000805b601b548110156123175760145461ffff166000908152601960205260408120601b8054919291849081106122c9576122c9615a7b565b600091825260208083208183040154601f9092166101000a90910460ff1683528201929092526040019020546123039061ffff1683615afd565b91508061230f81615aa7565b915050612293565b506000816001600160401b0381111561233257612332615001565b60405190808252806020026020018201604052801561238457816020015b6040805160808101825260008082526020808301829052928201819052606082015282526000199092019101816123505790505b5090506000805b601b548110156125b4576000601b82815481106123aa576123aa615a7b565b60009182526020808320908204015460ff601f9092166101000a90041691505b60145461ffff166000908152601960205260408120601b8054919291869081106123f6576123f6615a7b565b600091825260208083208183040154601f9092166101000a90910460ff16835282019290925260400190205461ffff1681101561259f5760145461ffff166000908152601a6020908152604080832060ff86168452909152812080548390811061246257612462615a7b565b90600052602060002090601091828204019190066002029054906101000a900460010b90508286868151811061249a5761249a615a7b565b60200260200101516000019060ff16908160ff1681525050808686815181106124c5576124c5615a7b565b602090810291909101810151600192830b9082015260145461ffff16600090815260188252604080822060ff88168352835280822085850b8352909252200154865187908790811061251957612519615a7b565b60209081029190910181015160409081019290925260145461ffff1660009081526018825282812060ff871682528252828120600185900b82529091522060020154865187908790811061256f5761256f615a7b565b6020908102919091010151606001528461258881615aa7565b95505050808061259790615aa7565b9150506123ca565b505080806125ac90615aa7565b91505061238b565b50909392505050565b611243838383604051806020016040528060008152506130dd565b601b81815481106125e857600080fd5b9060005260206000209060209182820401919006915054906101000a900460ff1681565b6008546001600160a01b031633146126365760405162461bcd60e51b815260040161129790615c00565b601454600160d81b900460ff16156126825760405162461bcd60e51b815260206004820152600f60248201526e26b2ba30b230ba3090333937bd32b760891b6044820152606401611297565b80516120fb906015906020840190614be4565b80516060906000816001600160401b038111156126b4576126b4615001565b6040519080825280602002602001820160405280156126ff57816020015b60408051606081018252600080825260208083018290529282015282526000199092019101816126d25790505b50905060005b8281146127535761272e85828151811061272157612721615a7b565b6020026020010151613503565b82828151811061274057612740615a7b565b6020908102919091010152600101612705565b509392505050565b600061276682614409565b5192915050565b6008546001600160a01b031633146127975760405162461bcd60e51b815260040161129790615c00565b6016805460ff1916911515919091179055565b60006001600160a01b0382166127d3576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b031633146128225760405162461bcd60e51b815260040161129790615c00565b61282c600061452b565b565b601f546060906000816001600160401b0381111561284e5761284e615001565b60405190808252806020026020018201604052801561289357816020015b604080518082019091526000808252602082015281526020019060019003908161286c5790505b50905060005b8281101561108d57601f81815481106128b4576128b4615a7b565b90600052602060002090601091828204019190066002029054906101000a900460010b8282815181106128e9576128e9615a7b565b60209081029190910181015160019290920b909152601454600160201b900461ffff166000908152601e90915260408120601f80549192918490811061293157612931615a7b565b90600052602060002090601091828204019190066002029054906101000a900460010b60010b60010b81526020019081526020016000205482828151811061297b5761297b615a7b565b60209081029190910181015101528061299381615aa7565b915050612899565b6008546001600160a01b031633146129c55760405162461bcd60e51b815260040161129790615c00565b602280546001600160a01b0319166001600160a01b0392909216919091179055565b6008546001600160a01b03163314612a115760405162461bcd60e51b815260040161129790615c00565b6014805461ffff909216600160f01b026001600160f01b03909216919091179055565b60606000806000612a44856127aa565b90506000816001600160401b03811115612a6057612a60615001565b604051908082528060200260200182016040528015612a89578160200160208202803683370190505b509050612aaf604080516060810182526000808252602082018190529181019190915290565b60015b838614612b7557600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16158015928201929092529250612b1857612b6d565b81516001600160a01b031615612b2d57815194505b876001600160a01b0316856001600160a01b03161415612b6d5780838780600101985081518110612b6057612b60615a7b565b6020026020010181815250505b600101612ab2565b50909695505050505050565b6008546001600160a01b03163314612bab5760405162461bcd60e51b815260040161129790615c00565b6040516370a0823160e01b815230600482015281906001600160a01b0382169063a9059cbb90339083906370a082319060240160206040518083038186803b158015612bf657600080fd5b505afa158015612c0a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c2e9190615c77565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b158015612c7457600080fd5b505af1158015612c88573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112439190615be3565b60005b81811015611de057612cda8585858585818110612cce57612cce615a7b565b90506020020135611e3a565b80612ce481615aa7565b915050612caf565b6060600380546110fa90615ac2565b6060818310612d1d57604051631960ccad60e11b815260040160405180910390fd5b600080546001851015612d2f57600194505b80841115612d3b578093505b6000612d46876127aa565b905084861015612d655785850381811015612d5f578091505b50612d69565b5060005b6000816001600160401b03811115612d8357612d83615001565b604051908082528060200260200182016040528015612dac578160200160208202803683370190505b50905081612dbf579350612eba92505050565b6000612dca88613503565b905060008160400151612ddb575080515b885b888114158015612ded5750848714155b15612eae57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16158015928201929092529350612e5157612ea6565b82516001600160a01b031615612e6657825191505b8a6001600160a01b0316826001600160a01b03161415612ea65780848880600101995081518110612e9957612e99615a7b565b6020026020010181815250505b600101612ddd565b50505092835250909150505b9392505050565b6008546001600160a01b03163314612eeb5760405162461bcd60e51b815260040161129790615c00565b8015612f34576014805462010000900461ffff16906002612f0b83615c35565b91906101000a81548161ffff021916908361ffff16021790555050601c6000612f349190614b9a565b60005b825181101561124357612f86838281518110612f5557612f55615a7b565b602002602001015160000151848381518110612f7357612f73615a7b565b6020026020010151602001516000613127565b80612f9081615aa7565b915050612f37565b6001600160a01b038216331415612fc25760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b905090565b600080546000190161302e906107e7615c90565b600080613054848461381c565b601454909150600160e01b900461ffff16811115612eba575050601454600160e01b900461ffff166110ae565b601c81815481106125e857600080fd5b6008546001600160a01b031633146130bb5760405162461bcd60e51b815260040161129790615c00565b6014805461ffff909216600160e01b0261ffff60e01b19909216919091179055565b6130e884848461421e565b6001600160a01b0383163b15613121576131048484848461457d565b613121576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146131515760405162461bcd60e51b815260040161129790615c00565b801561319a576014805462010000900461ffff1690600261317183615c35565b91906101000a81548161ffff021916908361ffff16021790555050601c600061319a9190614b9a565b60145462010000900461ffff166000908152601d6020908152604080832060ff871684529091528120839055805b601c5460ff8216101561322c578460ff16601c8260ff16815481106131ef576131ef615a7b565b60009182526020918290209181049091015460ff601f9092166101000a900416141561321a57600191505b8061322481615c57565b9150506131c8565b508061312157601c8054600181018255600091909152602081047f0e4562a10381dec21b205ed72637e6b1b523bdd0e4d4d50af5cd23dd4500a21101805460ff808816601f9094166101000a9384029302191691909117905550505050565b60145461ffff166000908152601a6020908152604080832060ff85168452909152812054606091816001600160401b038111156132ca576132ca615001565b6040519080825280602002602001820160405280156132f3578160200160208202803683370190505b50905060005b828110156127535760145461ffff166000908152601a6020908152604080832060ff89168452909152902080548290811061333657613336615a7b565b90600052602060002090601091828204019190066002029054906101000a900460010b82828151811061336b5761336b615a7b565b602002602001019060010b908160010b81525050808061338a90615aa7565b9150506132f9565b6008546001600160a01b031633146133bc5760405162461bcd60e51b815260040161129790615c00565b80156134065760148054600160201b900461ffff169060046133dd83615c35565b91906101000a81548161ffff021916908361ffff16021790555050601f60006134069190614bbf565b601454600160201b900461ffff166000908152601e60209081526040808320600187900b84529091528120839055805b601f5461ffff8216101561349d578460010b601f8261ffff168154811061345f5761345f615a7b565b60009182526020909120601082040154600f9091166002026101000a900460010b141561348b57600191505b8061349581615c35565b915050613436565b508061312157601f8054600181018255600091909152601081047fa03837a25210ee280c2113ff4b77ca23440b19d4866cca721c801278fd08d80701805461ffff8088166002600f909516949094026101000a9384029302191691909117905550505050565b6040805160608082018352600080835260208084018290528385018290528451928301855281835282018190529281019290925290600183108061354957506000548310155b156135545792915050565b50600082815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615801592820192909252906135b45792915050565b612eba83614409565b60606135c8826140a4565b6136085760405162461bcd60e51b81526020600482015260116024820152703737b732bc34b9ba32b73a103a37b5b2b760791b6044820152606401611297565b6015805461361590615ac2565b1515905061363157505060408051602081019091526000815290565b60408051602081019091526000815260165460ff16156136695750604080518082019091526005815264173539b7b760d91b60208201525b601561367484614671565b8260405160200161368793929190615ca7565b604051602081830303815290604052915050919050565b600085815260136020526040902054600b9060ff16156136d15760405162461bcd60e51b81526004016112979190615b15565b50601460069054906101000a90046001600160a01b03166001600160a01b031661371d8686604051602001611ec492919091825260601b6001600160601b031916602082015260340190565b6001600160a01b031614600a906137475760405162461bcd60e51b81526004016112979190615b15565b50505060009283525060136020526040909120805460ff19166001179055601480546001600160a01b03909216600160301b026601000000000000600160d01b0319909216919091179055565b60005b81811015611de0576137c285858585858181106137b6576137b6615a7b565b905060200201356125bd565b806137cc81615aa7565b915050613797565b6008546001600160a01b031633146137fe5760405162461bcd60e51b815260040161129790615c00565b6138088686612180565b6138128484612ec1565b611fc28282611fca565b6001600160a01b0382166000908152601060205260408120546014548290600160d01b900460ff16613853576000925050506110ae565b60145462010000810461ffff166000908152601d60209081526040808320600160d01b90940460ff16835292815282822054908052919020541061389c576000925050506110ae565b601454600160201b900461ffff166000908152601e60209081526040808320600188900b808552908352818420546001600160a01b038a16855260128452828520918552925290912054106138f6576000925050506110ae565b60145461ffff8116600090815260186020908152604080832060ff600160d01b909504851684528252808320600189900b84529091529020600301541615613974575060145461ffff81166000908152601860209081526040808320600160d01b90940460ff168352928152828220600187810b8452915291902001545b601454600160f01b900461ffff168210613993576000925050506110ae565b6001600160a01b0385166000908152601160209081526040808320601454600160d01b900460ff1684528252808320600188900b845290915290205481116139e0576000925050506110ae565b60145462010000810461ffff166000908152601d60209081526040808320600160d01b90940460ff168352928152828220549080529190205410613a29576000925050506110ae565b601454600160201b900461ffff166000908152601e60209081526040808320600188900b808552908352818420546001600160a01b038a1685526012845282852091855292529091205410613a83576000925050506110ae565b601454600090613a9f908490600160f01b900461ffff16615c90565b6001600160a01b0387166000908152601160209081526040808320601454600160d01b900460ff168452825280832060018a900b845290915281205491925090613ae99084615c90565b601454600160d01b810460ff16600081815260208080526040808320546201000090950461ffff168352601d82528083209383529290529081205492935091613b329190615c90565b6001600160a01b038916600090815260126020908152604080832060018c900b80855290835281842054601454600160201b900461ffff168552601e845282852091855292528220549293509091613b8a9190615c90565b9050613bb8613b97613033565b613bb3613bad613ba7888861476e565b8661476e565b8461476e565b61476e565b9998505050505050505050565b6008546001600160a01b03163314613bef5760405162461bcd60e51b815260040161129790615c00565b6014805460ff60d81b1916600160d81b179055565b60158054613c1190615ac2565b80601f0160208091040260200160405190810160405280929190818152602001828054613c3d90615ac2565b8015613c8a5780601f10613c5f57610100808354040283529160200191613c8a565b820191906000526020600020905b815481529060010190602001808311613c6d57829003601f168201915b505050505081565b6008546001600160a01b03163314613cbc5760405162461bcd60e51b815260040161129790615c00565b6001600160a01b038116613d215760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401611297565b613d2a8161452b565b50565b6008546001600160a01b03163314613d575760405162461bcd60e51b815260040161129790615c00565b60145461ffff16600090815260186020908152604080832060ff8087168552908352818420600186900b85529092529091206003015416613dcd5760405162461bcd60e51b815260206004820152601060248201526f149bdb19481b9bdd08195e1a5cdd195960821b6044820152606401611297565b6014805461ffff908116600090815260186020818152604080842060ff8916808652908352818520600189810b808852918552838720805460ff1990811690915589548916885286865284882084895286528488208389528652848820805462ffff001916905589548916885286865284882084895286528488208389528652848820909101879055885488168752858552838720838852855283872082885285528387206002018790558854881687529484528286208287528452828620908652835281852060030180549094169093559454841683526019815284832091835252918220805490911691613ec283615d3e565b91906101000a81548161ffff021916908361ffff1602179055505060005b60145461ffff166000908152601a6020908152604080832060ff80881685529252909120549082161015613fb85760145461ffff166000908152601a6020908152604080832060ff808816855292529091208054600185900b928416908110613f4b57613f4b615a7b565b60009182526020909120601082040154600f9091166002026101000a900460010b1415613fa65760145461ffff166000908152601a6020908152604080832060ff80881685529252909120613fa1918316614784565b613fb8565b80613fb081615c57565b915050613ee0565b5060145461ffff908116600090815260196020908152604080832060ff87168452909152902054166120fb5760005b601c5460ff82161015611243578260ff16601c8260ff168154811061400e5761400e615a7b565b60009182526020918290209181049091015460ff601f9092166101000a900416141561404257611243601c8260ff166148b8565b8061404c81615c57565b915050613fe7565b60006001600160e01b031982166380ac58cd60e01b148061408557506001600160e01b03198216635b5e139f60e01b145b806110ae57506301ffc9a760e01b6001600160e01b03198316146110ae565b6000816001111580156140b8575060005482105b80156110ae575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000808580519060200120905060008160405160200161418591907f19457468657265756d205369676e6564204d6573736167653a0a3332000000008152601c810191909152603c0190565b60408051601f1981840301815282825280516020918201206000845290830180835281905260ff8916918301919091526060820187905260808201869052915060019060a0016020604051602081039080840390855afa1580156141ed573d6000803e3d6000fd5b50505060206040510351925050505b949350505050565b6120fb8282604051806020016040528060008152506149db565b600061422982614409565b9050836001600160a01b031681600001516001600160a01b0316146142605760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061427e575061427e8533610e60565b8061429957503361428e8461117d565b6001600160a01b0316145b9050806142b957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166142e057604051633a954ecd60e21b815260040160405180910390fd5b6142ec600084876140dd565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166143c05760005482146143c057805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611de0565b604080516060810182526000808252602082018190529181019190915281806001116145125760005481101561451257600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906145105780516001600160a01b0316156144a7579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff161515928101929092521561450b579392505050565b6144a7565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906145b2903390899088908890600401615d5c565b602060405180830381600087803b1580156145cc57600080fd5b505af19250505080156145fc575060408051601f3d908101601f191682019092526145f991810190615d99565b60015b614657573d80801561462a576040519150601f19603f3d011682016040523d82523d6000602084013e61462f565b606091505b50805161464f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506141fc565b6060816146955750506040805180820190915260018152600360fc1b602082015290565b8160005b81156146bf57806146a981615aa7565b91506146b89050600a83615bcf565b9150614699565b6000816001600160401b038111156146d9576146d9615001565b6040519080825280601f01601f191660200182016040528015614703576020820181803683370190505b5090505b84156141fc57614718600183615c90565b9150614725600a86615db6565b614730906030615afd565b60f81b81838151811061474557614745615a7b565b60200101906001600160f81b031916908160001a905350614767600a86615bcf565b9450614707565b600081831061477d5781612eba565b5090919050565b805b825461479490600190615c90565b81101561483157826147a7826001615afd565b815481106147b7576147b7615a7b565b90600052602060002090601091828204019190066002029054906101000a900460010b8382815481106147ec576147ec615a7b565b90600052602060002090601091828204019190066002026101000a81548161ffff021916908360010b61ffff160217905550808061482990615aa7565b915050614786565b508154829061484290600190615c90565b8154811061485257614852615a7b565b90600052602060002090601091828204019190066002026101000a81549061ffff02191690558180548061488857614888615dca565b600082815260209020601060001990920191820401805461ffff6002600f8516026101000a021916905590555050565b805b82546148c890600190615c90565b81101561495a57826148db826001615afd565b815481106148eb576148eb615a7b565b90600052602060002090602091828204019190069054906101000a900460ff1683828154811061491d5761491d615a7b565b90600052602060002090602091828204019190066101000a81548160ff021916908360ff160217905550808061495290615aa7565b9150506148ba565b508154829061496b90600190615c90565b8154811061497b5761497b615a7b565b90600052602060002090602091828204019190066101000a81549060ff0219169055818054806149ad576149ad615dca565b60019003818190600052602060002090602091828204019190066101000a81549060ff021916905590555050565b6000546001600160a01b038416614a0457604051622e076360e81b815260040160405180910390fd5b82614a225760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b018116918217600160401b67ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15614b45575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4614b0e600087848060010195508761457d565b614b2b576040516368d2bf6b60e11b815260040160405180910390fd5b808210614ac3578260005414614b4057600080fd5b614b8a565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210614b46575b5060009081556131219085838684565b50805460008255601f016020900490600052602060002090810190613d2a9190614c68565b50805460008255600f016010900490600052602060002090810190613d2a9190614c68565b828054614bf090615ac2565b90600052602060002090601f016020900481019282614c125760008555614c58565b82601f10614c2b57805160ff1916838001178555614c58565b82800160010185558215614c58579182015b82811115614c58578251825591602001919060010190614c3d565b50614c64929150614c68565b5090565b5b80821115614c645760008155600101614c69565b602080825282518282018190526000919060409081850190868401855b82811015614cc2578151805160ff168552860151868501529284019290850190600101614c9a565b5091979650505050505050565b6001600160e01b031981168114613d2a57600080fd5b600060208284031215614cf757600080fd5b8135612eba81614ccf565b600060208284031215614d1457600080fd5b5035919050565b60005b83811015614d36578181015183820152602001614d1e565b838111156131215750506000910152565b60008151808452614d5f816020860160208601614d1b565b601f01601f19169290920160200192915050565b602081526000612eba6020830184614d47565b80356001600160a01b0381168114614d9d57600080fd5b919050565b60008060408385031215614db557600080fd5b614dbe83614d86565b946020939093013593505050565b8035600181900b8114614d9d57600080fd5b803561ffff81168114614d9d57600080fd5b803560ff81168114614d9d57600080fd5b600080600080600080600080610100898b031215614e1e57600080fd5b88359750614e2e60208a01614dcc565b9650614e3c60408a01614dde565b9550614e4a60608a01614d86565b945060808901359350614e5f60a08a01614df0565b925060c0890135915060e089013590509295985092959890939650565b600060208284031215614e8e57600080fd5b612eba82614df0565b8015158114613d2a57600080fd5b600080600080600060a08688031215614ebd57600080fd5b614ec686614df0565b9450614ed460208701614dcc565b935060408601359250606086013591506080860135614ef281614e97565b809150509295509295909350565b600080600060608486031215614f1557600080fd5b614f1e84614dde565b9250614f2c60208501614df0565b9150604084013590509250925092565b600080600060608486031215614f5157600080fd5b614f5a84614d86565b9250614f2c60208501614d86565b600080600080600060a08688031215614f8057600080fd5b85359450614f9060208701614df0565b9350614f9e60408701614df0565b94979396509394606081013594506080013592915050565b60008083601f840112614fc857600080fd5b5081356001600160401b03811115614fdf57600080fd5b6020830191508360208260051b8501011115614ffa57600080fd5b9250929050565b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b038111828210171561503957615039615001565b60405290565b604051608081016001600160401b038111828210171561503957615039615001565b604051601f8201601f191681016001600160401b038111828210171561508957615089615001565b604052919050565b60006001600160401b038311156150aa576150aa615001565b6150bd601f8401601f1916602001615061565b90508281528383830111156150d157600080fd5b828260208301376000602084830101529392505050565b600082601f8301126150f957600080fd5b612eba83833560208501615091565b60008060008060006080868803121561512057600080fd5b61512986614d86565b945061513760208701614d86565b935060408601356001600160401b038082111561515357600080fd5b61515f89838a01614fb6565b9095509350606088013591508082111561517857600080fd5b50615185888289016150e8565b9150509295509295909350565b60006001600160401b038211156151ab576151ab615001565b5060051b60200190565b600082601f8301126151c657600080fd5b813560206151db6151d683615192565b615061565b82815260069290921b840181019181810190868411156151fa57600080fd5b8286015b8481101561524057604081890312156152175760008081fd5b61521f615017565b61522882614dcc565b815281850135858201528352918301916040016151fe565b509695505050505050565b6000806040838503121561525e57600080fd5b82356001600160401b0381111561527457600080fd5b615280858286016151b5565b925050602083013561529181614e97565b809150509250929050565b600082601f8301126152ad57600080fd5b813560206152bd6151d683615192565b82815260079290921b840181019181810190868411156152dc57600080fd5b8286015b8481101561524057608081890312156152f95760008081fd5b61530161503f565b61530a82614df0565b8152615317858301614dcc565b8186015260408281013590820152606080830135908201528352918301916080016152e0565b6000806040838503121561535057600080fd5b82356001600160401b0381111561536657600080fd5b6152808582860161529c565b60006020828403121561538457600080fd5b612eba82614dcc565b602080825282518282018190526000919060409081850190868401855b82811015614cc2578151805160ff16855286810151600190810b8887015286820151878701526060918201519186019190915260809094019391860191016153aa565b6000602082840312156153ff57600080fd5b81356001600160401b0381111561541557600080fd5b8201601f8101841361542657600080fd5b6141fc84823560208401615091565b6000602080838503121561544857600080fd5b82356001600160401b0381111561545e57600080fd5b8301601f8101851361546f57600080fd5b803561547d6151d682615192565b81815260059190911b8201830190838101908783111561549c57600080fd5b928401925b828410156154ba578335825292840192908401906154a1565b979650505050505050565b80516001600160a01b031682526020808201516001600160401b0316908301526040908101511515910152565b6020808252825182820181905260009190848201906040850190845b81811015612b75576155218385516154c5565b928401926060929092019160010161550e565b60006020828403121561554657600080fd5b8135612eba81614e97565b60006020828403121561556357600080fd5b612eba82614d86565b602080825282518282018190526000919060409081850190868401855b82811015614cc25781518051600190810b86529087015187860152938501939186019101615589565b6000602082840312156155c457600080fd5b612eba82614dde565b6020808252825182820181905260009190848201906040850190845b81811015612b75578351835292840192918401916001016155e9565b6000806000806060858703121561561b57600080fd5b61562485614d86565b935061563260208601614d86565b925060408501356001600160401b0381111561564d57600080fd5b61565987828801614fb6565b95989497509550505050565b60008060006060848603121561567a57600080fd5b61568384614d86565b95602085013595506040909401359392505050565b6000806000606084860312156156ad57600080fd5b6156b684614dde565b92506156c460208501614df0565b91506156d260408501614dcc565b90509250925092565b600082601f8301126156ec57600080fd5b813560206156fc6151d683615192565b82815260069290921b8401810191818101908684111561571b57600080fd5b8286015b8481101561524057604081890312156157385760008081fd5b615740615017565b61574982614df0565b8152818501358582015283529183019160400161571f565b6000806040838503121561577457600080fd5b82356001600160401b0381111561578a57600080fd5b615280858286016156db565b600080604083850312156157a957600080fd5b6157b283614d86565b9150602083013561529181614e97565b600080604083850312156157d557600080fd5b6157de83614d86565b91506157ec60208401614dcc565b90509250929050565b6000806000806080858703121561580b57600080fd5b61581485614d86565b935061582260208601614d86565b92506040850135915060608501356001600160401b0381111561584457600080fd5b615850878288016150e8565b91505092959194509250565b60008060006060848603121561587157600080fd5b61587a84614df0565b925060208401359150604084013561589181614e97565b809150509250925092565b600080604083850312156158af57600080fd5b6158b883614dde565b91506157ec60208401614df0565b6020808252825182820181905260009190848201906040850190845b81811015612b75578351600190810b84529385019392850192016158e2565b60008060006060848603121561591657600080fd5b61587a84614dcc565b606081016110ae82846154c5565b600080600080600060a0868803121561594557600080fd5b85359450614f9060208701614d86565b60008060008060008060c0878903121561596e57600080fd5b86356001600160401b038082111561598557600080fd5b6159918a838b0161529c565b9750602089013591506159a382614e97565b909550604088013590808211156159b957600080fd5b6159c58a838b016156db565b9550606089013591506159d782614e97565b909350608088013590808211156159ed57600080fd5b506159fa89828a016151b5565b92505060a0870135615a0b81614e97565b809150509295509295509295565b60008060408385031215615a2c57600080fd5b615a3583614d86565b91506157ec60208401614d86565b60008060408385031215615a5657600080fd5b6157de83614dde565b60008060408385031215615a7257600080fd5b6157de83614df0565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415615abb57615abb615a91565b5060010190565b600181811c90821680615ad657607f821691505b60208210811415615af757634e487b7160e01b600052602260045260246000fd5b50919050565b60008219821115615b1057615b10615a91565b500190565b6000602080835260008454615b2981615ac2565b80848701526040600180841660008114615b4a5760018114615b5e57615b8c565b60ff19851689840152606089019550615b8c565b896000528660002060005b85811015615b845781548b8201860152908301908801615b69565b8a0184019650505b509398975050505050505050565b6000816000190483118215151615615bb457615bb4615a91565b500290565b634e487b7160e01b600052601260045260246000fd5b600082615bde57615bde615bb9565b500490565b600060208284031215615bf557600080fd5b8151612eba81614e97565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600061ffff80831681811415615c4d57615c4d615a91565b6001019392505050565b600060ff821660ff811415615c6e57615c6e615a91565b60010192915050565b600060208284031215615c8957600080fd5b5051919050565b600082821015615ca257615ca2615a91565b500390565b6000808554615cb581615ac2565b60018281168015615ccd5760018114615cde57615d0d565b60ff19841687528287019450615d0d565b8960005260208060002060005b85811015615d045781548a820152908401908201615ceb565b50505082870194505b505050508451615d21818360208901614d1b565b8451910190615d34818360208801614d1b565b0195945050505050565b600061ffff821680615d5257615d52615a91565b6000190192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090615d8f90830184614d47565b9695505050505050565b600060208284031215615dab57600080fd5b8151612eba81614ccf565b600082615dc557615dc5615bb9565b500690565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220f4436b7a1c60be7185342b2eb02d5dac6a80f749927f6a02880d2584ff0c339264736f6c63430008090033
Deployed Bytecode Sourcemap
59288:21371:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80619:31;;;80628:10;188:51:1;;80640:9:0;270:2:1;255:18;;248:34;80619:31:0;;161:18:1;80619:31:0;;;;;;;59288:21371;;;;;74485:404;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79116:198;;;;;;;;;;-1:-1:-1;79116:198:0;;;;;:::i;:::-;;:::i;:::-;;;1676:14:1;;1669:22;1651:41;;1639:2;1624:18;79116:198:0;1511:187:1;61591:29:0;;;;;;;;;;-1:-1:-1;61591:29:0;;;;;:::i;:::-;;:::i;:::-;;;2059:1:1;2048:21;;;;2030:40;;2018:2;2003:18;61591:29:0;1888:188:1;36932:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;38436:204::-;;;;;;;;;;-1:-1:-1;38436:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2996:32:1;;;2978:51;;2966:2;2951:18;38436:204:0;2832:203:1;37998:372:0;;;;;;;;;;-1:-1:-1;37998:372:0;;;;;:::i;:::-;;:::i;:::-;;68240:2541;;;;;;:::i;:::-;;:::i;33057:312::-;;;;;;;;;;-1:-1:-1;59945:1:0;33320:12;33110:7;33304:13;:28;-1:-1:-1;;33304:46:0;33057:312;;;4793:25:1;;;4781:2;4766:18;33057:312:0;4647:177:1;62415:122:0;;;;;;;;;;-1:-1:-1;62415:122:0;;;;;:::i;:::-;;:::i;63550:1177::-;;;;;;;;;;-1:-1:-1;63550:1177:0;;;;;:::i;:::-;;:::i;61727:30::-;;;;;;;;;;-1:-1:-1;61727:30:0;;;;-1:-1:-1;;;;;61727:30:0;;;61290:74;;;;;;;;;;-1:-1:-1;61290:74:0;;;;;:::i;:::-;;:::i;39301:170::-;;;;;;;;;;-1:-1:-1;39301:170:0;;;;;:::i;:::-;;:::i;61625:51::-;;;;;;;;;;-1:-1:-1;61625:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;71056:357;;;;;;;;;;-1:-1:-1;71056:357:0;;;;;:::i;:::-;;:::i;72254:251::-;;;;;;;;;;-1:-1:-1;72254:251:0;;;;;:::i;:::-;;:::i;59858:41::-;;;;;;;;;;;;59895:4;59858:41;;66822:310;;;;;;;;;;-1:-1:-1;66822:310:0;;;;;:::i;:::-;;:::i;80185:133::-;;;;;;;;;;;;;:::i;70787:209::-;;;;;;;;;;-1:-1:-1;70787:209:0;;;;;:::i;:::-;;:::i;63119:425::-;;;;;;;;;;-1:-1:-1;63119:425:0;;;;;:::i;:::-;;:::i;75295:179::-;;;;;;;;;;-1:-1:-1;75295:179:0;;;;;:::i;:::-;75412:24;;;;;75369:7;75392:45;;;:19;:45;;;;;;;;-1:-1:-1;;;75438:12:0;;;;;75392:59;;;;;;;;75412:24;75392:65;;;;;;;;;;;;:76;;;;75295:179;73482:997;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;39542:185::-;;;;;;;;;;-1:-1:-1;39542:185:0;;;;;:::i;:::-;;:::i;61683:37::-;;;;;;;;;;;;;;;;61369;;;;;;;;;;-1:-1:-1;61369:37:0;;;;;:::i;:::-;;:::i;:::-;;;14296:4:1;14284:17;;;14266:36;;14254:2;14239:18;61369:37:0;14124:184:1;62743:148:0;;;;;;;;;;-1:-1:-1;62743:148:0;;;;;:::i;:::-;;:::i;60821:35::-;;;;;;;;;;-1:-1:-1;60821:35:0;;;;-1:-1:-1;;;60821:35:0;;;;;;;;;14942:6:1;14930:19;;;14912:38;;14900:2;14885:18;60821:35:0;14768:188:1;60633:73:0;;;;;;;;;;-1:-1:-1;60633:73:0;;;;-1:-1:-1;;;60633:73:0;;-1:-1:-1;;;;;60633:73:0;;;54155:468;;;;;;;;;;-1:-1:-1;54155:468:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;36740:125::-;;;;;;;;;;-1:-1:-1;36740:125:0;;;;;:::i;:::-;;:::i;62897:116::-;;;;;;;;;;-1:-1:-1;62897:116:0;;;;;:::i;:::-;;:::i;34186:206::-;;;;;;;;;;-1:-1:-1;34186:206:0;;;;;:::i;:::-;;:::i;2649:103::-;;;;;;;;;;;;;:::i;74895:394::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;63019:94::-;;;;;;;;;;-1:-1:-1;63019:94:0;;;;;:::i;:::-;;:::i;62638:99::-;;;;;;;;;;-1:-1:-1;62638:99:0;;;;;:::i;:::-;;:::i;57969:891::-;;;;;;;;;;-1:-1:-1;57969:891:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;59904:42::-;;;;;;;;;;;;59945:1;59904:42;;80324:199;;;;;;;;;;-1:-1:-1;80324:199:0;;;;;:::i;:::-;;:::i;71812:211::-;;;;;;;;;;-1:-1:-1;71812:211:0;;;;;:::i;:::-;;:::i;60713:29::-;;;;;;;;;;-1:-1:-1;60713:29:0;;;;-1:-1:-1;;;60713:29:0;;;;;;1998:87;;;;;;;;;;-1:-1:-1;2071:6:0;;-1:-1:-1;;;;;2071:6:0;1998:87;;37101:104;;;;;;;;;;;;;:::i;55013:2507::-;;;;;;;;;;-1:-1:-1;55013:2507:0;;;;;:::i;:::-;;:::i;61119:86::-;;;;;;;;;;-1:-1:-1;61119:86:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20505:4:1;20493:17;;;20475:36;;20558:1;20547:21;;;;20542:2;20527:18;;20520:49;20585:18;;;20578:34;;;;20643:2;20628:18;;20621:34;20699:14;20692:22;20686:3;20671:19;;20664:51;20462:3;20447:19;61119:86:0;20230:491:1;66033:316:0;;;;;;;;;;-1:-1:-1;66033:316:0;;;;;:::i;:::-;;:::i;38712:287::-;;;;;;;;;;-1:-1:-1;38712:287:0;;;;;:::i;:::-;;:::i;77945:87::-;;;;;;;;;;-1:-1:-1;77989:7:0;33695:13;-1:-1:-1;;33695:31:0;77945:87;;78038:100;;;;;;;;;;;;;:::i;77284:247::-;;;;;;;;;;-1:-1:-1;77284:247:0;;;;;:::i;:::-;;:::i;61411:30::-;;;;;;;;;;-1:-1:-1;61411:30:0;;;;;:::i;:::-;;:::i;62543:89::-;;;;;;;;;;-1:-1:-1;62543:89:0;;;;;:::i;:::-;;:::i;39798:370::-;;;;;;;;;;-1:-1:-1;39798:370:0;;;;;:::i;:::-;;:::i;66355:461::-;;;;;;;;;;-1:-1:-1;66355:461:0;;;;;:::i;:::-;;:::i;61210:75::-;;;;;;;;;;-1:-1:-1;61210:75:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;72853:347;;;;;;;;;;-1:-1:-1;72853:347:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;67138:446::-;;;;;;;;;;-1:-1:-1;67138:446:0;;;;;:::i;:::-;;:::i;53578:418::-;;;;;;;;;;-1:-1:-1;53578:418:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;77537:402::-;;;;;;;;;;-1:-1:-1;77537:402:0;;;;;:::i;:::-;;:::i;71419:327::-;;;;;;;;;;-1:-1:-1;71419:327:0;;;;;:::i;:::-;;:::i;72029:219::-;;;;;;;;;;-1:-1:-1;72029:219:0;;;;;:::i;:::-;;:::i;61446:68::-;;;;;;;;;;-1:-1:-1;61446:68:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;67590:513;;;;;;;;;;-1:-1:-1;67590:513:0;;;;;:::i;:::-;;:::i;75480:1798::-;;;;;;;;;;-1:-1:-1;75480:1798:0;;;;;:::i;:::-;;:::i;68109:77::-;;;;;;;;;;;;;:::i;60786:30::-;;;;;;;;;;-1:-1:-1;60786:30:0;;;;-1:-1:-1;;;60786:30:0;;;;;;60897:38;;;;;;;;;;-1:-1:-1;60897:38:0;;;;;;;;60863:29;;;;;;;;;;;;;:::i;39070:164::-;;;;;;;;;;-1:-1:-1;39070:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;39191:25:0;;;39167:4;39191:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;39070:164;2907:201;;;;;;;;;;-1:-1:-1;2907:201:0;;;;;:::i;:::-;;:::i;61519:67::-;;;;;;;;;;-1:-1:-1;61519:67:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;60747:34;;;;;;;;;;-1:-1:-1;60747:34:0;;;;-1:-1:-1;;;60747:34:0;;;;;;64733:1294;;;;;;;;;;-1:-1:-1;64733:1294:0;;;;;:::i;:::-;;:::i;74485:404::-;74593:15;:22;74540:30;;74579:11;74593:22;-1:-1:-1;;;;;74659:32:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;74659:32:0;;;;;;;;;;;;;;;;74622:69;;74703:6;74698:169;74719:3;74715:1;:7;74698:169;;;74753:15;74769:1;74753:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;74738:3;74742:1;74738:6;;;;;;;;:::i;:::-;;;;;;;;;;;;:33;;;;;;;74817:21;;;;;;;;74738:12;74800:39;;;:16;:39;;;;;;74840:15;:18;;74800:39;;74738:12;74856:1;;74840:18;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;74800:59;;;;;;;;;;;;;;;;74780:3;74784:1;74780:6;;;;;;;;:::i;:::-;;;;;;;;;;;;:17;:79;74724:3;;;;:::i;:::-;;;;74698:169;;;-1:-1:-1;74880:3:0;74485:404;-1:-1:-1;;74485:404:0:o;79116:198::-;79210:4;79230:36;79254:11;79230:23;:36::i;:::-;:78;;;;79270:38;79296:11;79270:25;:38::i;:::-;79223:85;79116:198;-1:-1:-1;;79116:198:0:o;61591:29::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;36932:100::-;36986:13;37019:5;37012:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36932:100;:::o;38436:204::-;38504:7;38529:16;38537:7;38529;:16::i;:::-;38524:64;;38554:34;;-1:-1:-1;;;38554:34:0;;;;;;;;;;;38524:64;-1:-1:-1;38608:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;38608:24:0;;38436:204::o;37998:372::-;38071:13;38087:24;38103:7;38087:15;:24::i;:::-;38071:40;;38132:5;-1:-1:-1;;;;;38126:11:0;:2;-1:-1:-1;;;;;38126:11:0;;38122:48;;;38146:24;;-1:-1:-1;;;38146:24:0;;;;;;;;;;;38122:48;798:10;-1:-1:-1;;;;;38187:21:0;;;38183:139;;38214:37;38231:5;798:10;39070:164;:::i;38214:37::-;38210:112;;38275:35;;-1:-1:-1;;;38275:35:0;;;;;;;;;;;38210:112;38334:28;38343:2;38347:7;38356:5;38334:8;:28::i;:::-;38060:310;37998:372;;:::o;68240:2541::-;5284:1;5882:7;;:19;;5874:63;;;;-1:-1:-1;;;5874:63:0;;28958:2:1;5874:63:0;;;28940:21:1;28997:2;28977:18;;;28970:30;29036:33;29016:18;;;29009:61;29087:18;;5874:63:0;;;;;;;;;5284:1;6015:7;:18;68422:12:::1;::::0;-1:-1:-1;;;68422:12:0;::::1;;;68414:41;;;::::0;-1:-1:-1;;;68414:41:0;;29318:2:1;68414:41:0::1;::::0;::::1;29300:21:1::0;29357:2;29337:18;;;29330:30;-1:-1:-1;;;29376:18:1;;;29369:41;29427:18;;68414:41:0::1;29116:335:1::0;68414:41:0::1;68489:5:::0;68464:22:::1;68505:9;::::0;;::::1;;68501:67;;68540:28;;::::0;::::1;68550:2;68541:11:::0;;::::1;68540:28;:::i;:::-;68523:45;;68501:67;68585:23;::::0;;;:7:::1;:23;::::0;;;;;68615:13:::1;::::0;68585:23:::1;;:28:::0;68577:52:::1;;;;-1:-1:-1::0;;;68577:52:0::1;;;;;;;;:::i;:::-;-1:-1:-1::0;68738:13:0::1;::::0;68660:64:::1;::::0;;::::1;::::0;::::1;30703:19:1::0;;;30778:3;30756:16;;;-1:-1:-1;;;;;;30752:38:1;30738:12;;;30731:60;;;;30829:2;30825:15;;;-1:-1:-1;;;;;;30821:53:1;30807:12;;;30800:75;-1:-1:-1;;;68738:13:0;;::::1;-1:-1:-1::0;;;;;68738:13:0::1;::::0;68644:90:::1;::::0;30891:12:1;;68660:64:0::1;;;;;;;;;;;;68726:1;68729;68732;68644:15;:90::i;:::-;-1:-1:-1::0;;;;;68644:107:0::1;;68753:21;68636:139;;;;;-1:-1:-1::0;;;68636:139:0::1;;;;;;;;:::i;:::-;-1:-1:-1::0;68827:24:0::1;::::0;::::1;::::0;::::1;68784:20;68807:45:::0;;;:19:::1;:45;::::0;;;;;;;68853:12:::1;-1:-1:-1::0;;;68853:12:0;;::::1;::::0;::::1;68807:59:::0;;;;;;;:62;;;;;;;;:69:::1;;::::0;;;::::1;::::0;68827:24;68917:9;;::::1;::::0;-1:-1:-1;68913:42:0::1;;-1:-1:-1::0;68951:4:0;68913:42:::1;68989:24;::::0;::::1;::::0;::::1;68969:45;::::0;;;:19:::1;:45;::::0;;;;;;;69015:12:::1;-1:-1:-1::0;;;69015:12:0;;::::1;::::0;::::1;68969:59:::0;;;;;;;68989:24;68969:74;;::::1;::::0;;;;;;;:81:::1;;::::0;::::1;68964:192;;69066:15;69061:61;;69092:30;::::0;-1:-1:-1;;;69092:30:0;;31116:2:1;69092:30:0::1;::::0;::::1;31098:21:1::0;31155:2;31135:18;;;31128:30;-1:-1:-1;;;31174:18:1;;;31167:42;31226:18;;69092:30:0::1;30914:336:1::0;69092:30:0::1;-1:-1:-1::0;69147:1:0::1;68964:192;69186:18;69172:12:::0;69164:41:::1;;;;-1:-1:-1::0;;;69164:41:0::1;;;;;;;;:::i;:::-;;69238:8;69220:14;:12;:14::i;:::-;:26;;69248:11;69212:48;;;;;-1:-1:-1::0;;;69212:48:0::1;;;;;;;;:::i;:::-;;69279:1;69271:4;:9;;;69267:196;;69342:8;69297:41;69321:10;69333:4;69297:23;:41::i;:::-;:53;;69352:15;69289:79;;;;;-1:-1:-1::0;;;69289:79:0::1;;;;;;;;:::i;:::-;;69267:196;;;69437:8;69395:38;69419:10;69431:1;69395:23;:38::i;:::-;:50;;69447:15;69387:76;;;;;-1:-1:-1::0;;;69387:76:0::1;;;;;;;;:::i;:::-;;69267:196;69518:24;::::0;::::1;::::0;::::1;69472:12;69498:45:::0;;;:19:::1;:45;::::0;;;;;;;-1:-1:-1;;;69544:12:0;;::::1;;;69498:59:::0;;;;;;;;69518:24;69498:74;;::::1;::::0;;;;;;;:85:::1;;::::0;69487:96:::1;::::0;:8;:96:::1;:::i;:::-;69590:23;::::0;;;:7:::1;:23;::::0;;;;:27;;-1:-1:-1;;69590:27:0::1;69616:1;69590:27;::::0;;69630:15:::1;::::0;69472:111;;-1:-1:-1;;;;;;69630:15:0::1;:29:::0;69626:189:::1;;69717:19;69701:9;:14:::0;69693:44:::1;;;;-1:-1:-1::0;;;69693:44:0::1;;;;;;;;:::i;:::-;;69626:189;;;69787:19;69768:9;:17:::0;::::1;69760:47;;;;-1:-1:-1::0;;;69760:47:0::1;;;;;;;;:::i;:::-;;69626:189;69823:31;69833:10;69845:8;69823:9;:31::i;:::-;69917:12;::::0;-1:-1:-1;;;69917:12:0;::::1;;;69898:32;::::0;;;:18:::1;:32:::0;;;;;;:43:::1;::::0;69933:8;;69898:43:::1;:::i;:::-;69882:12;::::0;-1:-1:-1;;;69882:12:0;::::1;;;69863:32;::::0;;;:18:::1;:32:::0;;;;;;;:78;;;;70004:10:::1;69984:31:::0;;:19:::1;:31:::0;;;;:42:::1;::::0;70018:8;;69984:42:::1;:::i;:::-;69970:10;69950:31;::::0;;;:19:::1;:31;::::0;;;;;;;:76;;;;70109:32:::1;:44:::0;;;;;70154:12:::1;::::0;-1:-1:-1;;;70154:12:0;::::1;;;70109:58:::0;;;;;;;:73:::1;::::0;;::::1;::::0;;;;;;:84:::1;::::0;70185:8;;70109:84:::1;:::i;:::-;70066:10;70033:44;::::0;;;:32:::1;:44;::::0;;;;;;;70078:12:::1;::::0;-1:-1:-1;;;70078:12:0;::::1;;;70033:58:::0;;;;;;;:73:::1;::::0;;::::1;::::0;;;;;;;:160;;;;-1:-1:-1;70200:149:0::1;;70312:10;70286:37;::::0;;;:25:::1;:37;::::0;;;;;;;:52:::1;::::0;;::::1;::::0;;;;;;;;:63:::1;::::0;70341:8;;70286:63:::1;:::i;:::-;70257:10;70231:37;::::0;;;:25:::1;:37;::::0;;;;;;;:52:::1;::::0;;::::1;::::0;;;;;;;:118;70200:149:::1;70358:20;70403:5;70381:19;;::::0;::::1;:4:::0;:19:::1;:::i;:::-;:27;;;;:::i;:::-;70419:15;::::0;70358:50;;-1:-1:-1;;;;;;70419:15:0::1;:29:::0;70415:300:::1;;70489:15;::::0;70514:59:::1;::::0;-1:-1:-1;;;70514:59:0;;70541:10:::1;70514:59;::::0;::::1;31925:34:1::0;70561:4:0::1;31975:18:1::0;;;31968:43;32027:18;;;32020:34;;;-1:-1:-1;;;;;70489:15:0;;::::1;::::0;;;70514:26:::1;::::0;31860:18:1;;70514:59:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;70582:54:0::1;::::0;-1:-1:-1;;;70582:54:0;;-1:-1:-1;;;;;206:32:1;;;70582:54:0::1;::::0;::::1;188:51:1::0;255:18;;;248:34;;;70582:22:0;::::1;::::0;::::1;::::0;161:18:1;;70582:54:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;70450:194;70415:300;;;70659:48;::::0;-1:-1:-1;;;;;70659:34:0;::::1;::::0;:48;::::1;;;::::0;70694:12;;70659:48:::1;::::0;;;70694:12;70659:34;:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;70415:300;70763:12;70742:18;;:33;;;;:::i;:::-;70721:18;:54:::0;-1:-1:-1;;5240:1:0;6194:7;:22;-1:-1:-1;;;;;;;;;;;68240:2541:0:o;62415:122::-;2071:6;;-1:-1:-1;;;;;2071:6:0;798:10;2218:23;2210:68;;;;-1:-1:-1;;;2210:68:0;;;;;;;:::i;:::-;62478:12:::1;:21:::0;;-1:-1:-1;;;;62478:21:0::1;-1:-1:-1::0;;;62478:21:0::1;::::0;::::1;::::0;;::::1;::::0;;;::::1;::::0;;;62511:20:::1;::::0;14266:36:1;;;62511:20:0::1;::::0;14254:2:1;14239:18;62511:20:0::1;;;;;;;62415:122:::0;:::o;63550:1177::-;2071:6;;-1:-1:-1;;;;;2071:6:0;798:10;2218:23;2210:68;;;;-1:-1:-1;;;2210:68:0;;;;;;;:::i;:::-;63684:7:::1;63680:94;;;63702:24;:26:::0;;::::1;;::::0;:24:::1;:26;::::0;::::1;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;63744:22;;63737:29;;;;:::i;:::-;63782:25;63810:19;:45;63830:24;;;;;;;;;;;63810:45;;;;;;;;;;;;;;;:52;63856:5;63810:52;;;;;;;;;;;;;;;:58;63863:4;63810:58;;;;;;;;;;;;;;;:65;;;;;;;;;;;;63782:93;;63952:5;63882:19;:45;63902:24;;;;;;;;;;;63882:45;;;;;;;;;;;;;;;:52;63928:5;63882:52;;;;;;;;;;;;;;;:58;63935:4;63882:58;;;;;;;;;;;;;;;:67;;;:75;;;;;;;;;;;;;;;;;;64033:4;63964:19;:45;63984:24;;;;;;;;;;;63964:45;;;;;;;;;;;;;;;:52;64010:5;63964:52;;;;;;;;;;;;;;;:58;64017:4;63964:58;;;;;;;;;;;;;;;:66;;;:73;;;;;;;;;;;;;;;;;;;;64114:7;64044:19;:45;64064:24;;;;;;;;;;;64044:45;;;;;;;;;;;;;;;:52;64090:5;64044:52;;;;;;;;;;;;;;;:58;64097:4;64044:58;;;;;;;;;;;;;;;:67;;:77;;;;64200:9;64128:19;:45;64148:24;;;;;;;;;;;64128:45;;;;;;;;;;;;;;;:52;64174:5;64128:52;;;;;;;;;;;;;;;:58;64181:4;64128:58;;;;;;;;;;;;;;;:69;;:81;;;;64284:4;64216:19;:45;64236:24;;;;;;;;;;;64216:45;;;;;;;;;;;;;;;:52;64262:5;64216:52;;;;;;;;;;;;;;;:58;64269:4;64216:58;;;;;;;;;;;;;;;:65;;;:72;;;;;;;;;;;;;;;;;;64299:20;64295:64;;;64352:7;;;64295:64;64390:24;::::0;::::1;::::0;;::::1;64365:50;::::0;;;:24:::1;:50;::::0;;;;;;;:57:::1;::::0;::::1;::::0;;;;;;;:59;;;;::::1;::::0;:57;:59:::1;::::0;::::1;:::i;:::-;::::0;;::::1;::::0;;::::1;;::::0;;::::1;;::::0;;::::1;::::0;;::::1;;::::0;;;::::1;::::0;;;64456:24:::1;::::0;;::::1;-1:-1:-1::0;64433:48:0;;;:22:::1;:48;::::0;;;;;;;:55:::1;::::0;::::1;::::0;;;;;;:66;;-1:-1:-1;64433:66:0;::::1;::::0;;;;;;;;::::1;::::0;::::1;;::::0;;;;;;::::1;;::::0;;::::1;::::0;;::::1;;::::0;;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;64533:126:0::1;64555:22;:29:::0;64551:33:::1;::::0;::::1;;64533:126;;;64631:5;64602:34;;:22;64625:1;64602:25;;;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;::::1;;::::0;::::1;;:34;64598:61;;;64655:4;64647:12;;64598:61;64586:3:::0;::::1;::::0;::::1;:::i;:::-;;;;64533:126;;;;64673:5;64668:53;;64687:22;:34:::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;64687:34:0;;;;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;;::::1;::::0;;;;::::1;;::::0;;::::1;::::0;::::1;;;::::0;;;::::1;::::0;;64668:53:::1;63673:1054;;2289:1;63550:1177:::0;;;;;:::o;61290:74::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39301:170::-;39435:28;39445:4;39451:2;39455:7;39435:9;:28::i;71056:357::-;71175:14;;;;:7;:14;;;;;;71196:13;;71175:14;;:19;71167:43;;;;-1:-1:-1;;;71167:43:0;;;;;;;;:::i;:::-;;71285:13;;;;;;;;;-1:-1:-1;;;;;71285:13:0;-1:-1:-1;;;;;71225:73:0;:56;71258:5;71265;71241:30;;;;;;;;33211:19:1;;;33286:3;33264:16;-1:-1:-1;;;;;;33260:36:1;33255:2;33246:12;;33239:58;33322:2;33313:12;;33058:273;71241:30:0;;;;;;;;;;;;;71273:1;71276;71279;71225:15;:56::i;:::-;-1:-1:-1;;;;;71225:73:0;;71300:21;71217:105;;;;;-1:-1:-1;;;71217:105:0;;;;;;;;:::i;:::-;-1:-1:-1;71331:14:0;;;;:7;:14;;;;;;;:18;;-1:-1:-1;;71331:18:0;71348:1;71331:18;;;71356:12;:20;;71331:18;71356:20;;-1:-1:-1;;;71356:20:0;-1:-1:-1;;;;71356:20:0;;;;;;71388:19;;;;;71371:5;;14296:4:1;14284:17;;;;14266:36;;14254:2;14239:18;;14124:184;71388:19:0;;;;;;;;71056:357;;;;;:::o;72254:251::-;72408:6;72403:96;72420:19;;;72403:96;;;72453:46;72470:4;72476:2;72480:8;;72489:1;72480:11;;;;;;;:::i;:::-;;;;;;;72493:5;72453:16;:46::i;:::-;72441:3;;;;:::i;:::-;;;;72403:96;;;;72254:251;;;;;:::o;66822:310::-;2071:6;;-1:-1:-1;;;;;2071:6:0;798:10;2218:23;2210:68;;;;-1:-1:-1;;;2210:68:0;;;;;;;:::i;:::-;66930:7:::1;66926:82;;;66948:20;:22:::0;;-1:-1:-1;;;66948:22:0;::::1;;;::::0;:20:::1;:22;::::0;::::1;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;66986:14;;66979:21;;;;:::i;:::-;67021:6;67016:110;67037:6;:13;67033:1;:17;67016:110;;;67064:62;67082:6;67089:1;67082:9;;;;;;;;:::i;:::-;;;;;;;:14;;;67098:6;67105:1;67098:9;;;;;;;;:::i;:::-;;;;;;;:20;;;67120:5;67064:17;:62::i;:::-;67052:3:::0;::::1;::::0;::::1;:::i;:::-;;;;67016:110;;80185:133:::0;2071:6;;-1:-1:-1;;;;;2071:6:0;798:10;2218:23;2210:68;;;;-1:-1:-1;;;2210:68:0;;;;;;;:::i;:::-;80275:37:::1;::::0;80247:21:::1;::::0;80283:10:::1;::::0;80275:37;::::1;;;::::0;80247:21;;80229:15:::1;80275:37:::0;80229:15;80275:37;80247:21;80283:10;80275:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;80222:96;80185:133::o:0;70787:209::-;2071:6;;-1:-1:-1;;;;;2071:6:0;798:10;2218:23;2210:68;;;;-1:-1:-1;;;2210:68:0;;;;;;;:::i;:::-;70884:18:::1;70870:12:::0;70862:41:::1;;;;-1:-1:-1::0;;;70862:41:0::1;;;;;;;;:::i;:::-;;70936:8;70918:14;:12;:14::i;:::-;:26;;70946:11;70910:48;;;;;-1:-1:-1::0;;;70910:48:0::1;;;;;;;;:::i;:::-;;70967:23;70977:2;70981:8;70967:9;:23::i;63119:425::-:0;2071:6;;-1:-1:-1;;;;;2071:6:0;798:10;2218:23;2210:68;;;;-1:-1:-1;;;2210:68:0;;;;;;;:::i;:::-;63228:7:::1;63224:94;;;63246:24;:26:::0;;::::1;;::::0;:24:::1;:26;::::0;::::1;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;63288:22;;63281:29;;;;:::i;:::-;63331:6;63326:213;63347:6;:13;63343:1;:17;63326:213;;;63376:155;63408:6;63415:1;63408:9;;;;;;;;:::i;:::-;;;;;;;:15;;;63434:6;63441:1;63434:9;;;;;;;;:::i;:::-;;;;;;;:14;;;63459:6;63466:1;63459:9;;;;;;;;:::i;:::-;;;;;;;:17;;;63487:6;63494:1;63487:9;;;;;;;;:::i;:::-;;;;;;;:19;;;63517:5;63376:21;:155::i;:::-;63362:3:::0;::::1;::::0;::::1;:::i;:::-;;;;63326:213;;73482:997:::0;73541:26;73576:11;73603:6;73598:150;73619:22;:29;73615:33;;73598:150;;;73694:24;;;;73669:50;;;;:24;:50;;;;;73721:22;:25;;73669:50;;;73744:1;;73721:25;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;73669:79;;;;;;;;;;;;;73662:86;;73669:79;;73662:86;;:::i;:::-;;-1:-1:-1;73650:3:0;;;;:::i;:::-;;;;73598:150;;;;73757:30;73814:3;-1:-1:-1;;;;;73790:28:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73790:28:0;;-1:-1:-1;;73790:28:0;;;;;;;;;;;;73757:61;;73825:13;73854:6;73849:608;73870:22;:29;73866:33;;73849:608;;;73915:11;73929:22;73952:1;73929:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;73963:487:0;74009:24;;;;73984:50;;;;:24;:50;;;;;74036:22;:25;;73984:50;;;74059:1;;74036:25;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;73984:79;;;;;;;;;;;;;;;73980:83;;73963:487;;;74117:24;;;;74081:10;74094:48;;;:22;:48;;;;;;;;:55;;;;;;;;;;:58;;74150:1;;74094:58;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;74081:71;;74182:5;74163:3;74167:5;74163:10;;;;;;;;:::i;:::-;;;;;;;:16;;:24;;;;;;;;;;;74216:4;74198:3;74202:5;74198:10;;;;;;;;:::i;:::-;;;;;;;;;;;;:22;;;;:15;;;:22;74272:24;;;;-1:-1:-1;74252:45:0;;;:19;:45;;;;;;:52;;;;;;;;;;:58;;;;;;;;;:67;;74231:10;;:3;;74235:5;;74231:10;;;;;;:::i;:::-;;;;;;;;;;;;:18;;;;:88;;;;74373:24;;;;74353:45;;;;:19;:45;;;;;:52;;;;;;;;;;74373:24;74353:58;;;;;;;;;:69;;;74330:10;;:3;;74334:5;;74330:10;;;;;;:::i;:::-;;;;;;;;;;;:20;;:92;74433:7;;;;:::i;:::-;;;;74070:380;74065:3;;;;;:::i;:::-;;;;73963:487;;;;73906:551;73901:3;;;;;:::i;:::-;;;;73849:608;;;-1:-1:-1;74470:3:0;;73482:997;-1:-1:-1;;;73482:997:0:o;39542:185::-;39680:39;39697:4;39703:2;39707:7;39680:39;;;;;;;;;;;;:16;:39::i;61369:37::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;62743:148::-;2071:6;;-1:-1:-1;;;;;2071:6:0;798:10;2218:23;2210:68;;;;-1:-1:-1;;;2210:68:0;;;;;;;:::i;:::-;62819:14:::1;::::0;-1:-1:-1;;;62819:14:0;::::1;;;62818:15;62810:43;;;::::0;-1:-1:-1;;;62810:43:0;;33538:2:1;62810:43:0::1;::::0;::::1;33520:21:1::0;33577:2;33557:18;;;33550:30;-1:-1:-1;;;33596:18:1;;;33589:45;33651:18;;62810:43:0::1;33336:339:1::0;62810:43:0::1;62860:25:::0;;::::1;::::0;:15:::1;::::0;:25:::1;::::0;::::1;::::0;::::1;:::i;54155:468::-:0;54330:15;;54244:23;;54305:22;54330:15;-1:-1:-1;;;;;54397:36:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;54397:36:0;;-1:-1:-1;;54397:36:0;;;;;;;;;;;;54360:73;;54453:9;54448:125;54469:14;54464:1;:19;54448:125;;54525:32;54545:8;54554:1;54545:11;;;;;;;;:::i;:::-;;;;;;;54525:19;:32::i;:::-;54509:10;54520:1;54509:13;;;;;;;;:::i;:::-;;;;;;;;;;:48;54485:3;;54448:125;;;-1:-1:-1;54594:10:0;54155:468;-1:-1:-1;;;54155:468:0:o;36740:125::-;36804:7;36831:21;36844:7;36831:12;:21::i;:::-;:26;;36740:125;-1:-1:-1;;36740:125:0:o;62897:116::-;2071:6;;-1:-1:-1;;;;;2071:6:0;798:10;2218:23;2210:68;;;;-1:-1:-1;;;2210:68:0;;;;;;;:::i;:::-;62973:19:::1;:34:::0;;-1:-1:-1;;62973:34:0::1;::::0;::::1;;::::0;;;::::1;::::0;;62897:116::o;34186:206::-;34250:7;-1:-1:-1;;;;;34274:19:0;;34270:60;;34302:28;;-1:-1:-1;;;34302:28:0;;;;;;;;;;;34270:60;-1:-1:-1;;;;;;34356:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;34356:27:0;;34186:206::o;2649:103::-;2071:6;;-1:-1:-1;;;;;2071:6:0;798:10;2218:23;2210:68;;;;-1:-1:-1;;;2210:68:0;;;;;;;:::i;:::-;2714:30:::1;2741:1;2714:18;:30::i;:::-;2649:103::o:0;74895:394::-;75001:14;:21;74949:29;;74987:11;75001:21;-1:-1:-1;;;;;75065:31:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;75065:31:0;;;;;;;;;;;;;;;;75029:67;;75108:6;75103:164;75124:3;75120:1;:7;75103:164;;;75157:14;75172:1;75157:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;75143:3;75147:1;75143:6;;;;;;;;:::i;:::-;;;;;;;;;;;;:31;;;;;;;;75219:20;;-1:-1:-1;;;75219:20:0;;;;75143:11;75203:37;;;:15;:37;;;;;;75241:14;:17;;75203:37;;75143:11;75256:1;;75241:17;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;75203:56;;;;;;;;;;;;;;;;75183:3;75187:1;75183:6;;;;;;;;:::i;:::-;;;;;;;;;;;;:17;:76;75129:3;;;;:::i;:::-;;;;75103:164;;63019:94;2071:6;;-1:-1:-1;;;;;2071:6:0;798:10;2218:23;2210:68;;;;-1:-1:-1;;;2210:68:0;;;;;;;:::i;:::-;63085:15:::1;:22:::0;;-1:-1:-1;;;;;;63085:22:0::1;-1:-1:-1::0;;;;;63085:22:0;;;::::1;::::0;;;::::1;::::0;;63019:94::o;62638:99::-;2071:6;;-1:-1:-1;;;;;2071:6:0;798:10;2218:23;2210:68;;;;-1:-1:-1;;;2210:68:0;;;;;;;:::i;:::-;62706:17:::1;:25:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;;62706:25:0::1;-1:-1:-1::0;;;;;62706:25:0;;::::1;::::0;;;::::1;::::0;;62638:99::o;57969:891::-;58039:16;58093:19;58127:25;58167:22;58192:16;58202:5;58192:9;:16::i;:::-;58167:41;;58223:25;58265:14;-1:-1:-1;;;;;58251:29:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58251:29:0;;58223:57;;58295:31;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;58295:31:0;59945:1;58341:471;58390:14;58375:11;:29;58341:471;;58442:14;;;;:11;:14;;;;;;;;;58430:26;;;;;;;;;-1:-1:-1;;;;;58430:26:0;;;;-1:-1:-1;;;58430:26:0;;-1:-1:-1;;;;;58430:26:0;;;;;;;;-1:-1:-1;;;58430:26:0;;;;;;;;;;;;;;;;-1:-1:-1;58475:73:0;;58520:8;;58475:73;58570:14;;-1:-1:-1;;;;;58570:28:0;;58566:111;;58643:14;;;-1:-1:-1;58566:111:0;58720:5;-1:-1:-1;;;;;58699:26:0;:17;-1:-1:-1;;;;;58699:26:0;;58695:102;;;58776:1;58750:8;58759:13;;;;;;58750:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;58695:102;58406:3;;58341:471;;;-1:-1:-1;58833:8:0;;57969:891;-1:-1:-1;;;;;;57969:891:0:o;80324:199::-;2071:6;;-1:-1:-1;;;;;2071:6:0;798:10;2218:23;2210:68;;;;-1:-1:-1;;;2210:68:0;;;;;;;:::i;:::-;80478:38:::1;::::0;-1:-1:-1;;;80478:38:0;;80510:4:::1;80478:38;::::0;::::1;2978:51:1::0;80423:12:0;;-1:-1:-1;;;;;80443:22:0;::::1;::::0;::::1;::::0;80466:10:::1;::::0;80443:22;;80478:23:::1;::::0;2951:18:1;;80478:38:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;80443:74;::::0;-1:-1:-1;;;;;;80443:74:0::1;::::0;;;;;;-1:-1:-1;;;;;206:32:1;;;80443:74:0::1;::::0;::::1;188:51:1::0;255:18;;;248:34;161:18;;80443:74:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;71812:211::-:0;71937:6;71932:85;71949:19;;;71932:85;;;71982:35;71995:4;72001:2;72005:8;;72014:1;72005:11;;;;;;;:::i;:::-;;;;;;;71982:12;:35::i;:::-;71970:3;;;;:::i;:::-;;;;71932:85;;37101:104;37157:13;37190:7;37183:14;;;;;:::i;55013:2507::-;55148:16;55215:4;55206:5;:13;55202:45;;55228:19;;-1:-1:-1;;;55228:19:0;;;;;;;;;;;55202:45;55262:19;55316:13;;59945:1;55407:5;:23;55403:87;;;59945:1;55451:23;;55403:87;55570:9;55563:4;:16;55559:73;;;55607:9;55600:16;;55559:73;55646:25;55674:16;55684:5;55674:9;:16::i;:::-;55646:44;;55868:4;55860:5;:12;55856:278;;;55915:12;;;55950:31;;;55946:111;;;56026:11;56006:31;;55946:111;55874:198;55856:278;;;-1:-1:-1;56117:1:0;55856:278;56148:25;56190:17;-1:-1:-1;;;;;56176:32:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56176:32:0;-1:-1:-1;56148:60:0;-1:-1:-1;56227:22:0;56223:78;;56277:8;-1:-1:-1;56270:15:0;;-1:-1:-1;;;56270:15:0;56223:78;56445:31;56479:26;56499:5;56479:19;:26::i;:::-;56445:60;;56520:25;56765:9;:16;;;56760:92;;-1:-1:-1;56822:14:0;;56760:92;56883:5;56866:477;56895:4;56890:1;:9;;:45;;;;;56918:17;56903:11;:32;;56890:45;56866:477;;;56973:14;;;;:11;:14;;;;;;;;;56961:26;;;;;;;;;-1:-1:-1;;;;;56961:26:0;;;;-1:-1:-1;;;56961:26:0;;-1:-1:-1;;;;;56961:26:0;;;;;;;;-1:-1:-1;;;56961:26:0;;;;;;;;;;;;;;;;-1:-1:-1;57006:73:0;;57051:8;;57006:73;57101:14;;-1:-1:-1;;;;;57101:28:0;;57097:111;;57174:14;;;-1:-1:-1;57097:111:0;57251:5;-1:-1:-1;;;;;57230:26:0;:17;-1:-1:-1;;;;;57230:26:0;;57226:102;;;57307:1;57281:8;57290:13;;;;;;57281:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;57226:102;56937:3;;56866:477;;;-1:-1:-1;;;57428:29:0;;;-1:-1:-1;57435:8:0;;-1:-1:-1;;55013:2507:0;;;;;;:::o;66033:316::-;2071:6;;-1:-1:-1;;;;;2071:6:0;798:10;2218:23;2210:68;;;;-1:-1:-1;;;2210:68:0;;;;;;;:::i;:::-;66143:7:::1;66139:84;;;66161:21;:23:::0;;;;::::1;;;::::0;:21:::1;:23;::::0;::::1;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;66200:15;;66193:22;;;;:::i;:::-;66236:6;66231:112;66252:6;:13;66248:1;:17;66231:112;;;66279:64;66298:6;66305:1;66298:9;;;;;;;;:::i;:::-;;;;;;;:15;;;66315:6;66322:1;66315:9;;;;;;;;:::i;:::-;;;;;;;:20;;;66337:5;66279:18;:64::i;:::-;66267:3:::0;::::1;::::0;::::1;:::i;:::-;;;;66231:112;;38712:287:::0;-1:-1:-1;;;;;38811:24:0;;798:10;38811:24;38807:54;;;38844:17;;-1:-1:-1;;;38844:17:0;;;;;;;;;;;38807:54;798:10;38874:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;38874:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;38874:53:0;;;;;;;;;;38943:48;;1651:41:1;;;38874:42:0;;798:10;38943:48;;1624:18:1;38943:48:0;;;;;;;38712:287;;:::o;78012:14::-;78005:21;;77945:87;:::o;78038:100::-;78083:7;33695:13;;-1:-1:-1;;33695:31:0;78106:26;;59895:4;78106:26;:::i;77284:247::-;77372:7;77388:16;77407:30;77426:4;77432;77407:18;:30::i;:::-;77461:12;;77388:49;;-1:-1:-1;;;;77461:12:0;;;;77450:23;;77446:55;;;-1:-1:-1;;77489:12:0;;-1:-1:-1;;;77489:12:0;;;;77482:19;;61411:30;;;;;;;;;;;;62543:89;2071:6;;-1:-1:-1;;;;;2071:6:0;798:10;2218:23;2210:68;;;;-1:-1:-1;;;2210:68:0;;;;;;;:::i;:::-;62606:12:::1;:20:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;;62606:20:0::1;-1:-1:-1::0;;;;62606:20:0;;::::1;::::0;;;::::1;::::0;;62543:89::o;39798:370::-;39965:28;39975:4;39981:2;39985:7;39965:9;:28::i;:::-;-1:-1:-1;;;;;40008:13:0;;22956:19;:23;40004:157;;40029:56;40060:4;40066:2;40070:7;40079:5;40029:30;:56::i;:::-;40025:136;;40109:40;;-1:-1:-1;;;40109:40:0;;;;;;;;;;;40025:136;39798:370;;;;:::o;66355:461::-;2071:6;;-1:-1:-1;;;;;2071:6:0;798:10;2218:23;2210:68;;;;-1:-1:-1;;;2210:68:0;;;;;;;:::i;:::-;66458:7:::1;66454:84;;;66476:21;:23:::0;;;;::::1;;;::::0;:21:::1;:23;::::0;::::1;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;66515:15;;66508:22;;;;:::i;:::-;66567:21;::::0;;;::::1;;;66550:39;::::0;;;:16:::1;:39;::::0;;;;;;;:46:::1;::::0;::::1;::::0;;;;;;;:59;;;:39;66643:112:::1;66665:15;:22:::0;66661:26:::1;::::0;::::1;;66643:112;;;66727:5;66705:27;;:15;66721:1;66705:18;;;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;::::1;;::::0;::::1;;:27;66701:54;;;66751:4;66743:12;;66701:54;66689:3:::0;::::1;::::0;::::1;:::i;:::-;;;;66643:112;;;;66769:5;66764:46;;66783:15;:27:::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;66783:27:0;;;;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;;::::1;::::0;;;;::::1;;::::0;;::::1;::::0;::::1;;;::::0;;;::::1;::::0;;66447:369:::1;66355:461:::0;;;:::o;72853:347::-;72982:24;;;;72945:11;72959:48;;;:22;:48;;;;;;;;:55;;;;;;;;;;:62;72922:14;;72959:62;-1:-1:-1;;;;;73049:16:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;73049:16:0;;73028:37;;73077:6;73072:105;73093:3;73089:1;:7;73072:105;;;73142:24;;;;73119:48;;;;:22;:48;;;;;;;;:55;;;;;;;;;;:58;;73175:1;;73119:58;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;73110:3;73114:1;73110:6;;;;;;;;:::i;:::-;;;;;;:67;;;;;;;;;;;73098:3;;;;;:::i;:::-;;;;73072:105;;67138:446;2071:6;;-1:-1:-1;;;;;2071:6:0;798:10;2218:23;2210:68;;;;-1:-1:-1;;;2210:68:0;;;;;;;:::i;:::-;67239:7:::1;67235:82;;;67257:20;:22:::0;;-1:-1:-1;;;67257:22:0;::::1;;;::::0;:20:::1;:22;::::0;::::1;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;67295:14;;67288:21;;;;:::i;:::-;67341:20;::::0;-1:-1:-1;;;67341:20:0;::::1;;;67325:37;::::0;;;:15:::1;:37;::::0;;;;;;;:43:::1;::::0;;::::1;::::0;;;;;;;:56;;;:37;67415:110:::1;67438:14;:21:::0;67434:25:::1;::::0;::::1;;67415:110;;;67498:4;67477:25;;:14;67492:1;67477:17;;;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;::::1;;::::0;;;;;::::1;;;;::::0;::::1;;;:25;67473:52;;;67521:4;67513:12;;67473:52;67461:3:::0;::::1;::::0;::::1;:::i;:::-;;;;67415:110;;;;67539:5;67534:44;;67553:14;:25:::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;67553:25:0;;;;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;;;::::1;::::0;;;;;;;::::1;;;::::0;;::::1;::::0;::::1;;;::::0;;;::::1;::::0;;67228:356:::1;67138:446:::0;;;:::o;53578:418::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59945:1:0;53734:25;;;:53;;;53774:13;;53763:7;:24;;53734:53;53730:102;;;53811:9;53578:418;-1:-1:-1;;53578:418:0:o;53730:102::-;-1:-1:-1;53854:20:0;;;;:11;:20;;;;;;;;;53842:32;;;;;;;;;-1:-1:-1;;;;;53842:32:0;;;;-1:-1:-1;;;53842:32:0;;-1:-1:-1;;;;;53842:32:0;;;;;;;;-1:-1:-1;;;53842:32:0;;;;;;;;;;;;;;;;53885:65;;53929:9;53578:418;-1:-1:-1;;53578:418:0:o;53885:65::-;53967:21;53980:7;53967:12;:21::i;77537:402::-;77610:13;77640:16;77648:7;77640;:16::i;:::-;77632:46;;;;-1:-1:-1;;;77632:46:0;;34201:2:1;77632:46:0;;;34183:21:1;34240:2;34220:18;;;34213:30;-1:-1:-1;;;34259:18:1;;;34252:47;34316:18;;77632:46:0;33999:341:1;77632:46:0;77697:15;77691:29;;;;;:::i;:::-;:34;77687:56;;-1:-1:-1;77687:56:0;;-1:-1:-1;;77734:9:0;;;;;;;;;-1:-1:-1;77734:9:0;;;77537:402::o;77687:56::-;77752:28;;;;;;;;;:23;:28;;77791:19;;;;77787:51;;;-1:-1:-1;77819:19:0;;;;;;;;;;;;-1:-1:-1;;;77819:19:0;;;;77787:51;77878:15;77895:25;77912:7;77895:16;:25::i;:::-;77922:9;77861:71;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;77847:86;;;77537:402;;;:::o;71419:327::-;71540:14;;;;:7;:14;;;;;;71561:13;;71540:14;;:19;71532:43;;;;-1:-1:-1;;;71532:43:0;;;;;;;;:::i;:::-;;71649:13;;;;;;;;;-1:-1:-1;;;;;71649:13:0;-1:-1:-1;;;;;71590:72:0;:55;71623:5;71630:4;71606:29;;;;;;;;35679:19:1;;;35736:2;35732:15;-1:-1:-1;;;;;;35728:53:1;35723:2;35714:12;;35707:75;35807:2;35798:12;;35522:294;71590:55:0;-1:-1:-1;;;;;71590:72:0;;71664:21;71582:104;;;;;-1:-1:-1;;;71582:104:0;;;;;;;;:::i;:::-;-1:-1:-1;;;71695:14:0;;;;-1:-1:-1;71695:7:0;:14;;;;;;:18;;-1:-1:-1;;71695:18:0;71712:1;71695:18;;;71720:13;:20;;-1:-1:-1;;;;;71720:20:0;;;-1:-1:-1;;;71720:20:0;-1:-1:-1;;;;;;71720:20:0;;;;;;;;;71419:327::o;72029:219::-;72158:6;72153:89;72170:19;;;72153:89;;;72203:39;72220:4;72226:2;72230:8;;72239:1;72230:11;;;;;;;:::i;:::-;;;;;;;72203:16;:39::i;:::-;72191:3;;;;:::i;:::-;;;;72153:89;;67590:513;2071:6;;-1:-1:-1;;;;;2071:6:0;798:10;2218:23;2210:68;;;;-1:-1:-1;;;2210:68:0;;;;;;;:::i;:::-;67900:58:::1;67923:13;67938:19;67900:22;:58::i;:::-;67965:64;67985:17;68004:24;67965:19;:64::i;:::-;68036:61;68055:16;68073:23;68036:18;:61::i;75480:1798::-:0;-1:-1:-1;;;;;75596:25:0;;75563:7;75596:25;;;:19;:25;;;;;;75685:12;;75563:7;;-1:-1:-1;;;75685:12:0;;;;75681:38;;75718:1;75711:8;;;;;;75681:38;75846:21;;;;;;;75829:39;;;;:16;:39;;;;;;;;-1:-1:-1;;;75869:12:0;;;;;75829:53;;;;;;;;;75793:32;;;;;;;:89;75789:110;;75898:1;75891:8;;;;;;75789:110;75967:20;;-1:-1:-1;;;75967:20:0;;;;75951:37;;;;:15;:37;;;;;;;;:43;;;;;;;;;;;;;;-1:-1:-1;;;;;75910:31:0;;;;:25;:31;;;;;:37;;;;;;;;;:84;75906:105;;76010:1;76003:8;;;;;;75906:105;76044:24;;;;;76024:45;;;;:19;:45;;;;;;;;76070:12;-1:-1:-1;;;76070:12:0;;;;;76024:59;;;;;;;76044:24;76024:65;;;;;;;;;;:72;;;;76020:170;;;-1:-1:-1;76136:24:0;;;;;76116:45;;;;:19;:45;;;;;;;;-1:-1:-1;;;76162:12:0;;;;;76116:59;;;;;;;;76136:24;76116:65;;;;;;;;;;:74;;76020:170;76248:17;;-1:-1:-1;;;76248:17:0;;;;76238:27;;76234:48;;76281:1;76274:8;;;;;;76234:48;-1:-1:-1;;;;;76333:38:0;;;;;;:32;:38;;;;;;;;76372:12;;-1:-1:-1;;;76372:12:0;;;;76333:52;;;;;;;:58;;;;;;;;;;;;-1:-1:-1;;76329:91:0;;76419:1;76412:8;;;;;;76329:91;76510:21;;;;;;;76493:39;;;;:16;:39;;;;;;;;-1:-1:-1;;;76533:12:0;;;;;76493:53;;;;;;;;;76457:32;;;;;;;:89;76453:110;;76562:1;76555:8;;;;;;76453:110;76680:20;;-1:-1:-1;;;76680:20:0;;;;76664:37;;;;:15;:37;;;;;;;;:43;;;;;;;;;;;;;;-1:-1:-1;;;;;76623:31:0;;;;:25;:31;;;;;:37;;;;;;;;;:84;76619:105;;76723:1;76716:8;;;;;;76619:105;76761:17;;76733:25;;76761:26;;76781:6;;-1:-1:-1;;;76761:17:0;;;;:26;:::i;:::-;-1:-1:-1;;;;;76832:38:0;;76794:24;76832:38;;;:32;:38;;;;;;;;76871:12;;-1:-1:-1;;;76871:12:0;;;;76832:52;;;;;;;:58;;;;;;;;;;;;76733:54;;-1:-1:-1;76794:24:0;76821:69;;:8;:69;:::i;:::-;77010:12;;-1:-1:-1;;;77010:12:0;;;;76897:35;76991:32;;;:18;:32;;;;;;;;76952:21;;;;;;76935:39;;:16;:39;;;;;:53;;;;;;;;;;76794:96;;-1:-1:-1;76897:35:0;76935:88;;76991:32;76935:88;:::i;:::-;-1:-1:-1;;;;;77102:31:0;;77030:23;77102:31;;;:25;:31;;;;;;;;:37;;;;;;;;;;;;;;77072:20;;-1:-1:-1;;;77072:20:0;;;;77056:37;;:15;:37;;;;;:43;;;;;;;;76897:126;;-1:-1:-1;77030:23:0;;77056:83;;77102:37;77056:83;:::i;:::-;77030:109;;77155:117;77159:14;:12;:14::i;:::-;77175:96;77179:74;77183:40;77187:17;77206:16;77183:3;:40::i;:::-;77225:27;77179:3;:74::i;:::-;77255:15;77175:3;:96::i;:::-;77155:3;:117::i;:::-;77148:124;75480:1798;-1:-1:-1;;;;;;;;;75480:1798:0:o;68109:77::-;2071:6;;-1:-1:-1;;;;;2071:6:0;798:10;2218:23;2210:68;;;;-1:-1:-1;;;2210:68:0;;;;;;;:::i;:::-;68159:14:::1;:21:::0;;-1:-1:-1;;;;68159:21:0::1;-1:-1:-1::0;;;68159:21:0::1;::::0;;68109:77::o;60863:29::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2907:201::-;2071:6;;-1:-1:-1;;;;;2071:6:0;798:10;2218:23;2210:68;;;;-1:-1:-1;;;2210:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2996:22:0;::::1;2988:73;;;::::0;-1:-1:-1;;;2988:73:0;;36023:2:1;2988:73:0::1;::::0;::::1;36005:21:1::0;36062:2;36042:18;;;36035:30;36101:34;36081:18;;;36074:62;-1:-1:-1;;;36152:18:1;;;36145:36;36198:19;;2988:73:0::1;35821:402:1::0;2988:73:0::1;3072:28;3091:8;3072:18;:28::i;:::-;2907:201:::0;:::o;64733:1294::-;2071:6;;-1:-1:-1;;;;;2071:6:0;798:10;2218:23;2210:68;;;;-1:-1:-1;;;2210:68:0;;;;;;;:::i;:::-;64844:24:::1;::::0;::::1;;64824:45;::::0;;;:19:::1;:45;::::0;;;;;;;:52:::1;::::0;;::::1;::::0;;;;;;;;64844:24;64824:58;;::::1;::::0;;;;;;;;:65:::1;;::::0;::::1;64816:94;;;::::0;-1:-1:-1;;;64816:94:0;;36430:2:1;64816:94:0::1;::::0;::::1;36412:21:1::0;36469:2;36449:18;;;36442:30;-1:-1:-1;;;36488:18:1;;;36481:46;36544:18;;64816:94:0::1;36228:340:1::0;64816:94:0::1;64937:24;::::0;;::::1;::::0;;::::1;64987:1;64917:45:::0;;;:19:::1;:45;::::0;;;;;;;:52:::1;::::0;::::1;::::0;;;;;;;;;64937:24;64917:58;;::::1;::::0;;;;;;;;;:71;;-1:-1:-1;;64917:71:0;;::::1;::::0;;;65015:24;;;::::1;64995:45:::0;;;;;;;;:52;;;;;;;;:58;;;;;;;;:70;;-1:-1:-1;;64995:70:0::1;::::0;;65092:24;;;::::1;65072:45:::0;;;;;;;;:52;;;;;;;;:58;;;;;;;;:67;;::::1;:71:::0;;;65170:24;;;::::1;65150:45:::0;;;;;;;;:52;;;;;;;;:58;;;;;;;;:69:::1;;:73:::0;;;65250:24;;;::::1;65230:45:::0;;;;;;;;:52;;;;;;;;:58;;;;;;;;:65:::1;;:73:::0;;;;::::1;::::0;;;65335:24;;;::::1;65310:50:::0;;:24:::1;:50:::0;;;;;:57;;;;;;;:59;;;;::::1;::::0;::::1;::::0;::::1;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;65413:7;65408:299;65453:24;::::0;::::1;;65430:48;::::0;;;:22:::1;:48;::::0;;;;;;;:55:::1;::::0;;::::1;::::0;;;;;;;:62;65426:66;;::::1;;65408:299;;;65535:24;::::0;::::1;;65512:48;::::0;;;:22:::1;:48;::::0;;;;;;;:55:::1;::::0;;::::1;::::0;;;;;;;:58;;:66:::1;::::0;;::::1;::::0;:58;::::1;::::0;;::::1;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;::::1;;::::0;;;;;::::1;;;;::::0;::::1;;;:66;65508:192;;;65638:24;::::0;::::1;;65615:48;::::0;;;:22:::1;:48;::::0;;;;;;;:55:::1;::::0;;::::1;::::0;;;;;;;65591:83:::1;::::0;;::::1;:23;:83::i;:::-;65685:5;;65508:192;65494:3:::0;::::1;::::0;::::1;:::i;:::-;;;;65408:299;;;-1:-1:-1::0;65744:24:0::1;::::0;::::1;::::0;;::::1;65719:50;::::0;;;:24:::1;:50;::::0;;;;;;;:57:::1;::::0;::::1;::::0;;;;;;;;::::1;65715:307;;65830:7;65825:190;65847:15;:22:::0;65843:26:::1;::::0;::::1;;65825:190;;;65913:5;65891:27;;:15;65907:1;65891:18;;;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;::::1;;::::0;::::1;;:27;65887:119;;;65933:43;65957:15;65974:1;65933:43;;:23;:43::i;65887:119::-;65871:3:::0;::::1;::::0;::::1;:::i;:::-;;;;65825:190;;33817:305:::0;33919:4;-1:-1:-1;;;;;;33956:40:0;;-1:-1:-1;;;33956:40:0;;:105;;-1:-1:-1;;;;;;;34013:48:0;;-1:-1:-1;;;34013:48:0;33956:105;:158;;;-1:-1:-1;;;;;;;;;;30909:40:0;;;34078:36;30800:157;40423:174;40480:4;40523:7;59945:1;40504:26;;:53;;;;;40544:13;;40534:7;:23;40504:53;:85;;;;-1:-1:-1;;40562:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;40562:27:0;;;;40561:28;;40423:174::o;49645:196::-;49760:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;49760:29:0;-1:-1:-1;;;;;49760:29:0;;;;;;;;;49805:28;;49760:24;;49805:28;;;;;;;49645:196;;;:::o;78760:302::-;78857:7;78873:15;78901:4;78891:15;;;;;;78873:33;;78913:21;79000:7;78947:61;;;;;;;37001:66:1;36989:79;;37093:2;37084:12;;37077:28;;;;37130:2;37121:12;;36759:380;78947:61:0;;;;-1:-1:-1;;78947:61:0;;;;;;;;;78937:72;;78947:61;78937:72;;;;79023:33;;;;;;;;;37371:25:1;;;37444:4;37432:17;;37412:18;;;37405:45;;;;37466:18;;;37459:34;;;37509:18;;;37502:34;;;78937:72:0;-1:-1:-1;79023:33:0;;37343:19:1;;79023:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79016:40;;;;78760:302;;;;;;;:::o;40681:104::-;40750:27;40760:2;40764:8;40750:27;;;;;;;;;;;;:9;:27::i;44593:2130::-;44708:35;44746:21;44759:7;44746:12;:21::i;:::-;44708:59;;44806:4;-1:-1:-1;;;;;44784:26:0;:13;:18;;;-1:-1:-1;;;;;44784:26:0;;44780:67;;44819:28;;-1:-1:-1;;;44819:28:0;;;;;;;;;;;44780:67;44860:22;798:10;-1:-1:-1;;;;;44886:20:0;;;;:73;;-1:-1:-1;44923:36:0;44940:4;798:10;39070:164;:::i;44923:36::-;44886:126;;;-1:-1:-1;798:10:0;44976:20;44988:7;44976:11;:20::i;:::-;-1:-1:-1;;;;;44976:36:0;;44886:126;44860:153;;45031:17;45026:66;;45057:35;;-1:-1:-1;;;45057:35:0;;;;;;;;;;;45026:66;-1:-1:-1;;;;;45107:16:0;;45103:52;;45132:23;;-1:-1:-1;;;45132:23:0;;;;;;;;;;;45103:52;45276:35;45293:1;45297:7;45306:4;45276:8;:35::i;:::-;-1:-1:-1;;;;;45607:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;45607:31:0;;;-1:-1:-1;;;;;45607:31:0;;;-1:-1:-1;;45607:31:0;;;;;;;45653:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;45653:29:0;;;;;;;;;;;45733:20;;;:11;:20;;;;;;45768:18;;-1:-1:-1;;;;;;45801:49:0;;;;-1:-1:-1;;;45834:15:0;45801:49;;;;;;;;;;46124:11;;46184:24;;;;;46227:13;;45733:20;;46184:24;;46227:13;46223:384;;46437:13;;46422:11;:28;46418:174;;46475:20;;46544:28;;;;-1:-1:-1;;;;;46518:54:0;-1:-1:-1;;;46518:54:0;-1:-1:-1;;;;;;46518:54:0;;;-1:-1:-1;;;;;46475:20:0;;46518:54;;;;46418:174;45582:1036;;;46654:7;46650:2;-1:-1:-1;;;;;46635:27:0;46644:4;-1:-1:-1;;;;;46635:27:0;;;;;;;;;;;46673:42;39798:370;35567:1111;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;35678:7:0;;59945:1;35727:23;35723:888;;35763:13;;35756:4;:20;35752:859;;;35797:31;35831:17;;;:11;:17;;;;;;;;;35797:51;;;;;;;;;-1:-1:-1;;;;;35797:51:0;;;;-1:-1:-1;;;35797:51:0;;-1:-1:-1;;;;;35797:51:0;;;;;;;;-1:-1:-1;;;35797:51:0;;;;;;;;;;;;;;35867:729;;35917:14;;-1:-1:-1;;;;;35917:28:0;;35913:101;;35981:9;35567:1111;-1:-1:-1;;;35567:1111:0:o;35913:101::-;-1:-1:-1;;;36356:6:0;36401:17;;;;:11;:17;;;;;;;;;36389:29;;;;;;;;;-1:-1:-1;;;;;36389:29:0;;;;;-1:-1:-1;;;36389:29:0;;-1:-1:-1;;;;;36389:29:0;;;;;;;;-1:-1:-1;;;36389:29:0;;;;;;;;;;;;;36449:28;36445:109;;36517:9;35567:1111;-1:-1:-1;;;35567:1111:0:o;36445:109::-;36316:261;;;35778:833;35752:859;36639:31;;-1:-1:-1;;;36639:31:0;;;;;;;;;;;3268:191;3361:6;;;-1:-1:-1;;;;;3378:17:0;;;-1:-1:-1;;;;;;3378:17:0;;;;;;;3411:40;;3361:6;;;3378:17;3361:6;;3411:40;;3342:16;;3411:40;3331:128;3268:191;:::o;50333:667::-;50517:72;;-1:-1:-1;;;50517:72:0;;50496:4;;-1:-1:-1;;;;;50517:36:0;;;;;:72;;798:10;;50568:4;;50574:7;;50583:5;;50517:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50517:72:0;;;;;;;;-1:-1:-1;;50517:72:0;;;;;;;;;;;;:::i;:::-;;;50513:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50751:13:0;;50747:235;;50797:40;;-1:-1:-1;;;50797:40:0;;;;;;;;;;;50747:235;50940:6;50934:13;50925:6;50921:2;50917:15;50910:38;50513:480;-1:-1:-1;;;;;;50636:55:0;-1:-1:-1;;;50636:55:0;;-1:-1:-1;50629:62:0;;6602:723;6658:13;6879:10;6875:53;;-1:-1:-1;;6906:10:0;;;;;;;;;;;;-1:-1:-1;;;6906:10:0;;;;;6602:723::o;6875:53::-;6953:5;6938:12;6994:78;7001:9;;6994:78;;7027:8;;;;:::i;:::-;;-1:-1:-1;7050:10:0;;-1:-1:-1;7058:2:0;7050:10;;:::i;:::-;;;6994:78;;;7082:19;7114:6;-1:-1:-1;;;;;7104:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7104:17:0;;7082:39;;7132:154;7139:10;;7132:154;;7166:11;7176:1;7166:11;;:::i;:::-;;-1:-1:-1;7235:10:0;7243:2;7235:5;:10;:::i;:::-;7222:24;;:2;:24;:::i;:::-;7209:39;;7192:6;7199;7192:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;7192:56:0;;;;;;;;-1:-1:-1;7263:11:0;7272:2;7263:11;;:::i;:::-;;;7132:154;;78654:100;78712:7;78739:1;78735;:5;:13;;78747:1;78735:13;;;-1:-1:-1;78743:1:0;;78728:20;-1:-1:-1;78654:100:0:o;78192:225::-;78292:5;78278:78;78303:12;;:16;;78318:1;;78303:16;:::i;:::-;78299:1;:20;78278:78;;;78344:5;78350;:1;78354;78350:5;:::i;:::-;78344:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;78333:5;78339:1;78333:8;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:23;;;;;;;;;;;;;;;;;;;;78321:3;;;;;:::i;:::-;;;;78278:78;;;-1:-1:-1;78376:12:0;;78370:5;;78376:16;;78391:1;;78376:16;:::i;:::-;78370:23;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;78363:30;;;;;;;;;;;78400:5;:11;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;78400:11:0;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;78192:225:0:o;78423:::-;78523:5;78509:78;78534:12;;:16;;78549:1;;78534:16;:::i;:::-;78530:1;:20;78509:78;;;78575:5;78581;:1;78585;78581:5;:::i;:::-;78575:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;78564:5;78570:1;78564:8;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;:23;;;;;;;;;;;;;;;;;;78552:3;;;;;:::i;:::-;;;;78509:78;;;-1:-1:-1;78607:12:0;;78601:5;;78607:16;;78622:1;;78607:16;:::i;:::-;78601:23;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;78594:30;;;;;;;;;;;78631:5;:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78423:225;;:::o;41158:1749::-;41281:20;41304:13;-1:-1:-1;;;;;41332:16:0;;41328:48;;41357:19;;-1:-1:-1;;;41357:19:0;;;;;;;;;;;41328:48;41391:13;41387:44;;41413:18;;-1:-1:-1;;;41413:18:0;;;;;;;;;;;41387:44;-1:-1:-1;;;;;41782:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;41841:49:0;;-1:-1:-1;;;;;41782:44:0;;;;;;;41841:49;;;-1:-1:-1;;;;;41782:44:0;;;;;;41841:49;;;;;;;;;;;;;;;;41907:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;41957:66:0;;;-1:-1:-1;;;42007:15:0;41957:66;;;;;;;;;;;;;41907:25;;42104:23;;;;22956:19;:23;42144:631;;42184:313;42215:38;;42240:12;;-1:-1:-1;;;;;42215:38:0;;;42232:1;;42215:38;;42232:1;;42215:38;42281:69;42320:1;42324:2;42328:14;;;;;;42344:5;42281:30;:69::i;:::-;42276:174;;42386:40;;-1:-1:-1;;;42386:40:0;;;;;;;;;;;42276:174;42492:3;42477:12;:18;42184:313;;42578:12;42561:13;;:29;42557:43;;42592:8;;;42557:43;42144:631;;;42641:119;42672:40;;42697:14;;;;;-1:-1:-1;;;;;42672:40:0;;;42689:1;;42672:40;;42689:1;;42672:40;42755:3;42740:12;:18;42641:119;;42144:631;-1:-1:-1;42789:13:0;:28;;;42839:60;;42872:2;42876:12;42890:8;42839:60;:::i;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;293:827:1;542:2;594:21;;;664:13;;567:18;;;686:22;;;513:4;;542:2;727;;745:18;;;;786:15;;;513:4;829:265;843:6;840:1;837:13;829:265;;;902:13;;944:9;;955:4;940:20;928:33;;1001:11;;995:18;981:12;;;974:40;1034:12;;;;1069:15;;;;865:1;858:9;829:265;;;-1:-1:-1;1111:3:1;;293:827;-1:-1:-1;;;;;;;293:827:1:o;1125:131::-;-1:-1:-1;;;;;;1199:32:1;;1189:43;;1179:71;;1246:1;1243;1236:12;1261:245;1319:6;1372:2;1360:9;1351:7;1347:23;1343:32;1340:52;;;1388:1;1385;1378:12;1340:52;1427:9;1414:23;1446:30;1470:5;1446:30;:::i;1703:180::-;1762:6;1815:2;1803:9;1794:7;1790:23;1786:32;1783:52;;;1831:1;1828;1821:12;1783:52;-1:-1:-1;1854:23:1;;1703:180;-1:-1:-1;1703:180:1:o;2081:258::-;2153:1;2163:113;2177:6;2174:1;2171:13;2163:113;;;2253:11;;;2247:18;2234:11;;;2227:39;2199:2;2192:10;2163:113;;;2294:6;2291:1;2288:13;2285:48;;;-1:-1:-1;;2329:1:1;2311:16;;2304:27;2081:258::o;2344:::-;2386:3;2424:5;2418:12;2451:6;2446:3;2439:19;2467:63;2523:6;2516:4;2511:3;2507:14;2500:4;2493:5;2489:16;2467:63;:::i;:::-;2584:2;2563:15;-1:-1:-1;;2559:29:1;2550:39;;;;2591:4;2546:50;;2344:258;-1:-1:-1;;2344:258:1:o;2607:220::-;2756:2;2745:9;2738:21;2719:4;2776:45;2817:2;2806:9;2802:18;2794:6;2776:45;:::i;3040:173::-;3108:20;;-1:-1:-1;;;;;3157:31:1;;3147:42;;3137:70;;3203:1;3200;3193:12;3137:70;3040:173;;;:::o;3218:254::-;3286:6;3294;3347:2;3335:9;3326:7;3322:23;3318:32;3315:52;;;3363:1;3360;3353:12;3315:52;3386:29;3405:9;3386:29;:::i;:::-;3376:39;3462:2;3447:18;;;;3434:32;;-1:-1:-1;;;3218:254:1:o;3477:160::-;3543:20;;3603:1;3592:20;;;3582:31;;3572:59;;3627:1;3624;3617:12;3642:159;3709:20;;3769:6;3758:18;;3748:29;;3738:57;;3791:1;3788;3781:12;3806:156;3872:20;;3932:4;3921:16;;3911:27;;3901:55;;3952:1;3949;3942:12;3967:675;4084:6;4092;4100;4108;4116;4124;4132;4140;4193:3;4181:9;4172:7;4168:23;4164:33;4161:53;;;4210:1;4207;4200:12;4161:53;4246:9;4233:23;4223:33;;4275:36;4307:2;4296:9;4292:18;4275:36;:::i;:::-;4265:46;;4330:37;4363:2;4352:9;4348:18;4330:37;:::i;:::-;4320:47;;4386:38;4420:2;4409:9;4405:18;4386:38;:::i;:::-;4376:48;;4471:3;4460:9;4456:19;4443:33;4433:43;;4495:37;4527:3;4516:9;4512:19;4495:37;:::i;:::-;4485:47;;4579:3;4568:9;4564:19;4551:33;4541:43;;4631:3;4620:9;4616:19;4603:33;4593:43;;3967:675;;;;;;;;;;;:::o;4829:182::-;4886:6;4939:2;4927:9;4918:7;4914:23;4910:32;4907:52;;;4955:1;4952;4945:12;4907:52;4978:27;4995:9;4978:27;:::i;5016:118::-;5102:5;5095:13;5088:21;5081:5;5078:32;5068:60;;5124:1;5121;5114:12;5139:519;5227:6;5235;5243;5251;5259;5312:3;5300:9;5291:7;5287:23;5283:33;5280:53;;;5329:1;5326;5319:12;5280:53;5352:27;5369:9;5352:27;:::i;:::-;5342:37;;5398:36;5430:2;5419:9;5415:18;5398:36;:::i;:::-;5388:46;;5481:2;5470:9;5466:18;5453:32;5443:42;;5532:2;5521:9;5517:18;5504:32;5494:42;;5586:3;5575:9;5571:19;5558:33;5600:28;5622:5;5600:28;:::i;:::-;5647:5;5637:15;;;5139:519;;;;;;;;:::o;5663:322::-;5737:6;5745;5753;5806:2;5794:9;5785:7;5781:23;5777:32;5774:52;;;5822:1;5819;5812:12;5774:52;5845:28;5863:9;5845:28;:::i;:::-;5835:38;;5892:36;5924:2;5913:9;5909:18;5892:36;:::i;:::-;5882:46;;5975:2;5964:9;5960:18;5947:32;5937:42;;5663:322;;;;;:::o;5990:328::-;6067:6;6075;6083;6136:2;6124:9;6115:7;6111:23;6107:32;6104:52;;;6152:1;6149;6142:12;6104:52;6175:29;6194:9;6175:29;:::i;:::-;6165:39;;6223:38;6257:2;6246:9;6242:18;6223:38;:::i;6323:458::-;6414:6;6422;6430;6438;6446;6499:3;6487:9;6478:7;6474:23;6470:33;6467:53;;;6516:1;6513;6506:12;6467:53;6552:9;6539:23;6529:33;;6581:36;6613:2;6602:9;6598:18;6581:36;:::i;:::-;6571:46;;6636:36;6668:2;6657:9;6653:18;6636:36;:::i;:::-;6323:458;;;;-1:-1:-1;6626:46:1;;6719:2;6704:18;;6691:32;;-1:-1:-1;6770:3:1;6755:19;6742:33;;6323:458;-1:-1:-1;;6323:458:1:o;6786:367::-;6849:8;6859:6;6913:3;6906:4;6898:6;6894:17;6890:27;6880:55;;6931:1;6928;6921:12;6880:55;-1:-1:-1;6954:20:1;;-1:-1:-1;;;;;6986:30:1;;6983:50;;;7029:1;7026;7019:12;6983:50;7066:4;7058:6;7054:17;7042:29;;7126:3;7119:4;7109:6;7106:1;7102:14;7094:6;7090:27;7086:38;7083:47;7080:67;;;7143:1;7140;7133:12;7080:67;6786:367;;;;;:::o;7158:127::-;7219:10;7214:3;7210:20;7207:1;7200:31;7250:4;7247:1;7240:15;7274:4;7271:1;7264:15;7290:257;7362:4;7356:11;;;7394:17;;-1:-1:-1;;;;;7426:34:1;;7462:22;;;7423:62;7420:88;;;7488:18;;:::i;:::-;7524:4;7517:24;7290:257;:::o;7552:253::-;7624:2;7618:9;7666:4;7654:17;;-1:-1:-1;;;;;7686:34:1;;7722:22;;;7683:62;7680:88;;;7748:18;;:::i;7810:275::-;7881:2;7875:9;7946:2;7927:13;;-1:-1:-1;;7923:27:1;7911:40;;-1:-1:-1;;;;;7966:34:1;;8002:22;;;7963:62;7960:88;;;8028:18;;:::i;:::-;8064:2;8057:22;7810:275;;-1:-1:-1;7810:275:1:o;8090:406::-;8154:5;-1:-1:-1;;;;;8180:6:1;8177:30;8174:56;;;8210:18;;:::i;:::-;8248:57;8293:2;8272:15;;-1:-1:-1;;8268:29:1;8299:4;8264:40;8248:57;:::i;:::-;8239:66;;8328:6;8321:5;8314:21;8368:3;8359:6;8354:3;8350:16;8347:25;8344:45;;;8385:1;8382;8375:12;8344:45;8434:6;8429:3;8422:4;8415:5;8411:16;8398:43;8488:1;8481:4;8472:6;8465:5;8461:18;8457:29;8450:40;8090:406;;;;;:::o;8501:220::-;8543:5;8596:3;8589:4;8581:6;8577:17;8573:27;8563:55;;8614:1;8611;8604:12;8563:55;8636:79;8711:3;8702:6;8689:20;8682:4;8674:6;8670:17;8636:79;:::i;8726:805::-;8848:6;8856;8864;8872;8880;8933:3;8921:9;8912:7;8908:23;8904:33;8901:53;;;8950:1;8947;8940:12;8901:53;8973:29;8992:9;8973:29;:::i;:::-;8963:39;;9021:38;9055:2;9044:9;9040:18;9021:38;:::i;:::-;9011:48;;9110:2;9099:9;9095:18;9082:32;-1:-1:-1;;;;;9174:2:1;9166:6;9163:14;9160:34;;;9190:1;9187;9180:12;9160:34;9229:70;9291:7;9282:6;9271:9;9267:22;9229:70;:::i;:::-;9318:8;;-1:-1:-1;9203:96:1;-1:-1:-1;9406:2:1;9391:18;;9378:32;;-1:-1:-1;9422:16:1;;;9419:36;;;9451:1;9448;9441:12;9419:36;;9474:51;9517:7;9506:8;9495:9;9491:24;9474:51;:::i;:::-;9464:61;;;8726:805;;;;;;;;:::o;9536:203::-;9616:4;-1:-1:-1;;;;;9641:6:1;9638:30;9635:56;;;9671:18;;:::i;:::-;-1:-1:-1;9716:1:1;9712:14;9728:4;9708:25;;9536:203::o;9744:979::-;9818:5;9871:3;9864:4;9856:6;9852:17;9848:27;9838:55;;9889:1;9886;9879:12;9838:55;9925:6;9912:20;9951:4;9975:80;9991:63;10051:2;9991:63;:::i;:::-;9975:80;:::i;:::-;10089:15;;;10175:1;10171:10;;;;10159:23;;10155:32;;;10120:12;;;;10199:15;;;10196:35;;;10227:1;10224;10217:12;10196:35;10263:2;10255:6;10251:15;10275:419;10291:6;10286:3;10283:15;10275:419;;;10369:4;10363:3;10358;10354:13;10350:24;10347:114;;;10415:1;10444:2;10440;10433:14;10347:114;10487:22;;:::i;:::-;10536:21;10553:3;10536:21;:::i;:::-;10522:36;;10607:12;;;10594:26;10578:14;;;10571:50;10634:18;;10672:12;;;;10317:4;10308:14;10275:419;;;-1:-1:-1;10712:5:1;9744:979;-1:-1:-1;;;;;;9744:979:1:o;10728:535::-;10856:6;10864;10917:2;10905:9;10896:7;10892:23;10888:32;10885:52;;;10933:1;10930;10923:12;10885:52;10973:9;10960:23;-1:-1:-1;;;;;10998:6:1;10995:30;10992:50;;;11038:1;11035;11028:12;10992:50;11061:81;11134:7;11125:6;11114:9;11110:22;11061:81;:::i;:::-;11051:91;;;11192:2;11181:9;11177:18;11164:32;11205:28;11227:5;11205:28;:::i;:::-;11252:5;11242:15;;;10728:535;;;;;:::o;11268:1156::-;11339:5;11392:3;11385:4;11377:6;11373:17;11369:27;11359:55;;11410:1;11407;11400:12;11359:55;11446:6;11433:20;11472:4;11496:80;11512:63;11572:2;11512:63;:::i;11496:80::-;11610:15;;;11696:1;11692:10;;;;11680:23;;11676:32;;;11641:12;;;;11720:15;;;11717:35;;;11748:1;11745;11738:12;11717:35;11784:2;11776:6;11772:15;11796:599;11812:6;11807:3;11804:15;11796:599;;;11890:4;11884:3;11879;11875:13;11871:24;11868:114;;;11936:1;11965:2;11961;11954:14;11868:114;12008:22;;:::i;:::-;12057:21;12074:3;12057:21;:::i;:::-;12050:5;12043:36;12115:30;12141:2;12136:3;12132:12;12115:30;:::i;:::-;12099:14;;;12092:54;12169:2;12220:12;;;12207:26;12191:14;;;12184:50;12257:2;12308:12;;;12295:26;12279:14;;;12272:50;12335:18;;12373:12;;;;11838:4;11829:14;11796:599;;12429:529;12554:6;12562;12615:2;12603:9;12594:7;12590:23;12586:32;12583:52;;;12631:1;12628;12621:12;12583:52;12671:9;12658:23;-1:-1:-1;;;;;12696:6:1;12693:30;12690:50;;;12736:1;12733;12726:12;12690:50;12759:78;12829:7;12820:6;12809:9;12805:22;12759:78;:::i;12963:182::-;13020:6;13073:2;13061:9;13052:7;13048:23;13044:32;13041:52;;;13089:1;13086;13079:12;13041:52;13112:27;13129:9;13112:27;:::i;13150:969::-;13391:2;13443:21;;;13513:13;;13416:18;;;13535:22;;;13362:4;;13391:2;13576;;13594:18;;;;13635:15;;;13362:4;13678:415;13692:6;13689:1;13686:13;13678:415;;;13751:13;;13793:9;;13804:4;13789:20;13777:33;;13864:11;;;13858:18;13855:1;13844:33;;;13830:12;;;13823:55;13918:11;;;13912:18;13898:12;;;13891:40;13954:4;13998:11;;;13992:18;13978:12;;;13971:40;;;;14040:4;14031:14;;;;14068:15;;;;13707:9;13678:415;;14313:450;14382:6;14435:2;14423:9;14414:7;14410:23;14406:32;14403:52;;;14451:1;14448;14441:12;14403:52;14491:9;14478:23;-1:-1:-1;;;;;14516:6:1;14513:30;14510:50;;;14556:1;14553;14546:12;14510:50;14579:22;;14632:4;14624:13;;14620:27;-1:-1:-1;14610:55:1;;14661:1;14658;14651:12;14610:55;14684:73;14749:7;14744:2;14731:16;14726:2;14722;14718:11;14684:73;:::i;14961:911::-;15045:6;15076:2;15119;15107:9;15098:7;15094:23;15090:32;15087:52;;;15135:1;15132;15125:12;15087:52;15175:9;15162:23;-1:-1:-1;;;;;15200:6:1;15197:30;15194:50;;;15240:1;15237;15230:12;15194:50;15263:22;;15316:4;15308:13;;15304:27;-1:-1:-1;15294:55:1;;15345:1;15342;15335:12;15294:55;15381:2;15368:16;15404:80;15420:63;15480:2;15420:63;:::i;15404:80::-;15518:15;;;15600:1;15596:10;;;;15588:19;;15584:28;;;15549:12;;;;15624:19;;;15621:39;;;15656:1;15653;15646:12;15621:39;15680:11;;;;15700:142;15716:6;15711:3;15708:15;15700:142;;;15782:17;;15770:30;;15733:12;;;;15820;;;;15700:142;;;15861:5;14961:911;-1:-1:-1;;;;;;;14961:911:1:o;15877:278::-;15961:12;;-1:-1:-1;;;;;15957:38:1;15945:51;;16049:4;16038:16;;;16032:23;-1:-1:-1;;;;;16028:48:1;16012:14;;;16005:72;16140:4;16129:16;;;16123:23;16116:31;16109:39;16093:14;;16086:63;15877:278::o;16160:722::-;16393:2;16445:21;;;16515:13;;16418:18;;;16537:22;;;16364:4;;16393:2;16616:15;;;;16590:2;16575:18;;;16364:4;16659:197;16673:6;16670:1;16667:13;16659:197;;;16722:52;16770:3;16761:6;16755:13;16722:52;:::i;:::-;16831:15;;;;16803:4;16794:14;;;;;16695:1;16688:9;16659:197;;16887:241;16943:6;16996:2;16984:9;16975:7;16971:23;16967:32;16964:52;;;17012:1;17009;17002:12;16964:52;17051:9;17038:23;17070:28;17092:5;17070:28;:::i;17133:186::-;17192:6;17245:2;17233:9;17224:7;17220:23;17216:32;17213:52;;;17261:1;17258;17251:12;17213:52;17284:29;17303:9;17284:29;:::i;17324:829::-;17571:2;17623:21;;;17693:13;;17596:18;;;17715:22;;;17542:4;;17571:2;17756;;17774:18;;;;17815:15;;;17542:4;17858:269;17872:6;17869:1;17866:13;17858:269;;;17931:13;;17983:9;;17980:1;17969:24;;;17957:37;;18034:11;;;18028:18;18014:12;;;18007:40;18067:12;;;;18102:15;;;;17887:9;17858:269;;18158:184;18216:6;18269:2;18257:9;18248:7;18244:23;18240:32;18237:52;;;18285:1;18282;18275:12;18237:52;18308:28;18326:9;18308:28;:::i;18347:632::-;18518:2;18570:21;;;18640:13;;18543:18;;;18662:22;;;18489:4;;18518:2;18741:15;;;;18715:2;18700:18;;;18489:4;18784:169;18798:6;18795:1;18792:13;18784:169;;;18859:13;;18847:26;;18928:15;;;;18893:12;;;;18820:1;18813:9;18784:169;;18984:585;19088:6;19096;19104;19112;19165:2;19153:9;19144:7;19140:23;19136:32;19133:52;;;19181:1;19178;19171:12;19133:52;19204:29;19223:9;19204:29;:::i;:::-;19194:39;;19252:38;19286:2;19275:9;19271:18;19252:38;:::i;:::-;19242:48;;19341:2;19330:9;19326:18;19313:32;-1:-1:-1;;;;;19360:6:1;19357:30;19354:50;;;19400:1;19397;19390:12;19354:50;19439:70;19501:7;19492:6;19481:9;19477:22;19439:70;:::i;:::-;18984:585;;;;-1:-1:-1;19528:8:1;-1:-1:-1;;;;18984:585:1:o;19574:322::-;19651:6;19659;19667;19720:2;19708:9;19699:7;19695:23;19691:32;19688:52;;;19736:1;19733;19726:12;19688:52;19759:29;19778:9;19759:29;:::i;:::-;19749:39;19835:2;19820:18;;19807:32;;-1:-1:-1;19886:2:1;19871:18;;;19858:32;;19574:322;-1:-1:-1;;;19574:322:1:o;19901:324::-;19973:6;19981;19989;20042:2;20030:9;20021:7;20017:23;20013:32;20010:52;;;20058:1;20055;20048:12;20010:52;20081:28;20099:9;20081:28;:::i;:::-;20071:38;;20128:36;20160:2;20149:9;20145:18;20128:36;:::i;:::-;20118:46;;20183:36;20215:2;20204:9;20200:18;20183:36;:::i;:::-;20173:46;;19901:324;;;;;:::o;20726:980::-;20801:5;20854:3;20847:4;20839:6;20835:17;20831:27;20821:55;;20872:1;20869;20862:12;20821:55;20908:6;20895:20;20934:4;20958:80;20974:63;21034:2;20974:63;:::i;20958:80::-;21072:15;;;21158:1;21154:10;;;;21142:23;;21138:32;;;21103:12;;;;21182:15;;;21179:35;;;21210:1;21207;21200:12;21179:35;21246:2;21238:6;21234:15;21258:419;21274:6;21269:3;21266:15;21258:419;;;21352:4;21346:3;21341;21337:13;21333:24;21330:114;;;21398:1;21427:2;21423;21416:14;21330:114;21470:22;;:::i;:::-;21519:21;21536:3;21519:21;:::i;:::-;21505:36;;21590:12;;;21577:26;21561:14;;;21554:50;21617:18;;21655:12;;;;21300:4;21291:14;21258:419;;21711:537;21840:6;21848;21901:2;21889:9;21880:7;21876:23;21872:32;21869:52;;;21917:1;21914;21907:12;21869:52;21957:9;21944:23;-1:-1:-1;;;;;21982:6:1;21979:30;21976:50;;;22022:1;22019;22012:12;21976:50;22045:82;22119:7;22110:6;22099:9;22095:22;22045:82;:::i;22253:315::-;22318:6;22326;22379:2;22367:9;22358:7;22354:23;22350:32;22347:52;;;22395:1;22392;22385:12;22347:52;22418:29;22437:9;22418:29;:::i;:::-;22408:39;;22497:2;22486:9;22482:18;22469:32;22510:28;22532:5;22510:28;:::i;22573:256::-;22639:6;22647;22700:2;22688:9;22679:7;22675:23;22671:32;22668:52;;;22716:1;22713;22706:12;22668:52;22739:29;22758:9;22739:29;:::i;:::-;22729:39;;22787:36;22819:2;22808:9;22804:18;22787:36;:::i;:::-;22777:46;;22573:256;;;;;:::o;22834:537::-;22929:6;22937;22945;22953;23006:3;22994:9;22985:7;22981:23;22977:33;22974:53;;;23023:1;23020;23013:12;22974:53;23046:29;23065:9;23046:29;:::i;:::-;23036:39;;23094:38;23128:2;23117:9;23113:18;23094:38;:::i;:::-;23084:48;;23179:2;23168:9;23164:18;23151:32;23141:42;;23234:2;23223:9;23219:18;23206:32;-1:-1:-1;;;;;23253:6:1;23250:30;23247:50;;;23293:1;23290;23283:12;23247:50;23316:49;23357:7;23348:6;23337:9;23333:22;23316:49;:::i;:::-;23306:59;;;22834:537;;;;;;;:::o;23376:379::-;23448:6;23456;23464;23517:2;23505:9;23496:7;23492:23;23488:32;23485:52;;;23533:1;23530;23523:12;23485:52;23556:27;23573:9;23556:27;:::i;:::-;23546:37;;23630:2;23619:9;23615:18;23602:32;23592:42;;23684:2;23673:9;23669:18;23656:32;23697:28;23719:5;23697:28;:::i;:::-;23744:5;23734:15;;;23376:379;;;;;:::o;23760:254::-;23825:6;23833;23886:2;23874:9;23865:7;23861:23;23857:32;23854:52;;;23902:1;23899;23892:12;23854:52;23925:28;23943:9;23925:28;:::i;:::-;23915:38;;23972:36;24004:2;23993:9;23989:18;23972:36;:::i;24019:643::-;24186:2;24238:21;;;24308:13;;24211:18;;;24330:22;;;24157:4;;24186:2;24409:15;;;;24383:2;24368:18;;;24157:4;24452:184;24466:6;24463:1;24460:13;24452:184;;;24541:13;;24538:1;24527:28;;;24515:41;;24611:15;;;;24576:12;;;;24481:9;24452:184;;24667:379;24739:6;24747;24755;24808:2;24796:9;24787:7;24783:23;24779:32;24776:52;;;24824:1;24821;24814:12;24776:52;24847:27;24864:9;24847:27;:::i;25051:265::-;25247:2;25232:18;;25259:51;25236:9;25292:6;25259:51;:::i;25321:462::-;25414:6;25422;25430;25438;25446;25499:3;25487:9;25478:7;25474:23;25470:33;25467:53;;;25516:1;25513;25506:12;25467:53;25552:9;25539:23;25529:33;;25581:38;25615:2;25604:9;25600:18;25581:38;:::i;25788:1393::-;26070:6;26078;26086;26094;26102;26110;26163:3;26151:9;26142:7;26138:23;26134:33;26131:53;;;26180:1;26177;26170:12;26131:53;26220:9;26207:23;-1:-1:-1;;;;;26290:2:1;26282:6;26279:14;26276:34;;;26306:1;26303;26296:12;26276:34;26329:78;26399:7;26390:6;26379:9;26375:22;26329:78;:::i;:::-;26319:88;;26457:2;26446:9;26442:18;26429:32;26416:45;;26470:28;26492:5;26470:28;:::i;:::-;26517:5;;-1:-1:-1;26575:2:1;26560:18;;26547:32;;26591:16;;;26588:36;;;26620:1;26617;26610:12;26588:36;26643:84;26719:7;26708:8;26697:9;26693:24;26643:84;:::i;:::-;26633:94;;26779:2;26768:9;26764:18;26751:32;26736:47;;26792:30;26814:7;26792:30;:::i;:::-;26841:7;;-1:-1:-1;26901:3:1;26886:19;;26873:33;;26918:16;;;26915:36;;;26947:1;26944;26937:12;26915:36;;26970:83;27045:7;27034:8;27023:9;27019:24;26970:83;:::i;:::-;26960:93;;;27105:3;27094:9;27090:19;27077:33;27119:30;27141:7;27119:30;:::i;:::-;27168:7;27158:17;;;25788:1393;;;;;;;;:::o;27186:260::-;27254:6;27262;27315:2;27303:9;27294:7;27290:23;27286:32;27283:52;;;27331:1;27328;27321:12;27283:52;27354:29;27373:9;27354:29;:::i;:::-;27344:39;;27402:38;27436:2;27425:9;27421:18;27402:38;:::i;27451:254::-;27516:6;27524;27577:2;27565:9;27556:7;27552:23;27548:32;27545:52;;;27593:1;27590;27583:12;27545:52;27616:28;27634:9;27616:28;:::i;27710:252::-;27774:6;27782;27835:2;27823:9;27814:7;27810:23;27806:32;27803:52;;;27851:1;27848;27841:12;27803:52;27874:27;27891:9;27874:27;:::i;27967:127::-;28028:10;28023:3;28019:20;28016:1;28009:31;28059:4;28056:1;28049:15;28083:4;28080:1;28073:15;28099:127;28160:10;28155:3;28151:20;28148:1;28141:31;28191:4;28188:1;28181:15;28215:4;28212:1;28205:15;28231:135;28270:3;-1:-1:-1;;28291:17:1;;28288:43;;;28311:18;;:::i;:::-;-1:-1:-1;28358:1:1;28347:13;;28231:135::o;28371:380::-;28450:1;28446:12;;;;28493;;;28514:61;;28568:4;28560:6;28556:17;28546:27;;28514:61;28621:2;28613:6;28610:14;28590:18;28587:38;28584:161;;;28667:10;28662:3;28658:20;28655:1;28648:31;28702:4;28699:1;28692:15;28730:4;28727:1;28720:15;28584:161;;28371:380;;;:::o;29456:128::-;29496:3;29527:1;29523:6;29520:1;29517:13;29514:39;;;29533:18;;:::i;:::-;-1:-1:-1;29569:9:1;;29456:128::o;29589:926::-;29698:4;29727:2;29756;29745:9;29738:21;29779:1;29812:6;29806:13;29842:36;29868:9;29842:36;:::i;:::-;29914:6;29909:2;29898:9;29894:18;29887:34;29940:2;29961:1;29993:2;29982:9;29978:18;30010:1;30005:121;;;;30140:1;30135:354;;;;29971:518;;30005:121;-1:-1:-1;;30053:24:1;;30033:18;;;30026:52;30113:2;30098:18;;;-1:-1:-1;30005:121:1;;30135:354;30166:6;30163:1;30156:17;30214:2;30211:1;30201:16;30239:1;30253:180;30267:6;30264:1;30261:13;30253:180;;;30360:14;;30336:17;;;30332:26;;30325:50;30403:16;;;;30282:10;;30253:180;;;30457:17;;30453:26;;;-1:-1:-1;;29971:518:1;-1:-1:-1;30506:3:1;;29589:926;-1:-1:-1;;;;;;;;29589:926:1:o;31255:168::-;31295:7;31361:1;31357;31353:6;31349:14;31346:1;31343:21;31338:1;31331:9;31324:17;31320:45;31317:71;;;31368:18;;:::i;:::-;-1:-1:-1;31408:9:1;;31255:168::o;31428:127::-;31489:10;31484:3;31480:20;31477:1;31470:31;31520:4;31517:1;31510:15;31544:4;31541:1;31534:15;31560:120;31600:1;31626;31616:35;;31631:18;;:::i;:::-;-1:-1:-1;31665:9:1;;31560:120::o;32065:245::-;32132:6;32185:2;32173:9;32164:7;32160:23;32156:32;32153:52;;;32201:1;32198;32191:12;32153:52;32233:9;32227:16;32252:28;32274:5;32252:28;:::i;32315:356::-;32517:2;32499:21;;;32536:18;;;32529:30;32595:34;32590:2;32575:18;;32568:62;32662:2;32647:18;;32315:356::o;32676:197::-;32714:3;32742:6;32783:2;32776:5;32772:14;32810:2;32801:7;32798:15;32795:41;;;32816:18;;:::i;:::-;32865:1;32852:15;;32676:197;-1:-1:-1;;;32676:197:1:o;32878:175::-;32915:3;32959:4;32952:5;32948:16;32988:4;32979:7;32976:17;32973:43;;;32996:18;;:::i;:::-;33045:1;33032:15;;32878:175;-1:-1:-1;;32878:175:1:o;33680:184::-;33750:6;33803:2;33791:9;33782:7;33778:23;33774:32;33771:52;;;33819:1;33816;33809:12;33771:52;-1:-1:-1;33842:16:1;;33680:184;-1:-1:-1;33680:184:1:o;33869:125::-;33909:4;33937:1;33934;33931:8;33928:34;;;33942:18;;:::i;:::-;-1:-1:-1;33979:9:1;;33869:125::o;34345:1172::-;34569:3;34598:1;34631:6;34625:13;34661:36;34687:9;34661:36;:::i;:::-;34716:1;34733:18;;;34760:104;;;;34878:1;34873:356;;;;34726:503;;34760:104;-1:-1:-1;;34793:24:1;;34781:37;;34838:16;;;;-1:-1:-1;34760:104:1;;34873:356;34904:6;34901:1;34894:17;34934:4;34979:2;34976:1;34966:16;35004:1;35018:165;35032:6;35029:1;35026:13;35018:165;;;35110:14;;35097:11;;;35090:35;35153:16;;;;35047:10;;35018:165;;;35022:3;;;35212:6;35207:3;35203:16;35196:23;;34726:503;;;;;35260:6;35254:13;35276:55;35322:8;35317:3;35310:4;35302:6;35298:17;35276:55;:::i;:::-;35396:13;;35353:18;;;35418:57;35396:13;35353:18;35452:4;35440:17;;35418:57;:::i;:::-;35491:20;;34345:1172;-1:-1:-1;;;;;34345:1172:1:o;36573:181::-;36611:3;36655:6;36648:5;36644:18;36681:7;36671:41;;36692:18;;:::i;:::-;-1:-1:-1;;36728:20:1;;36573:181;-1:-1:-1;;36573:181:1:o;37547:489::-;-1:-1:-1;;;;;37816:15:1;;;37798:34;;37868:15;;37863:2;37848:18;;37841:43;37915:2;37900:18;;37893:34;;;37963:3;37958:2;37943:18;;37936:31;;;37741:4;;37984:46;;38010:19;;38002:6;37984:46;:::i;:::-;37976:54;37547:489;-1:-1:-1;;;;;;37547:489:1:o;38041:249::-;38110:6;38163:2;38151:9;38142:7;38138:23;38134:32;38131:52;;;38179:1;38176;38169:12;38131:52;38211:9;38205:16;38230:30;38254:5;38230:30;:::i;38295:112::-;38327:1;38353;38343:35;;38358:18;;:::i;:::-;-1:-1:-1;38392:9:1;;38295:112::o;38412:127::-;38473:10;38468:3;38464:20;38461:1;38454:31;38504:4;38501:1;38494:15;38528:4;38525:1;38518:15
Swarm Source
ipfs://f4436b7a1c60be7185342b2eb02d5dac6a80f749927f6a02880d2584ff0c3392
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 26 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ 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.