Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Loading...
Loading
Contract Name:
GoldDuckClaim
Compiler Version
v0.8.15+commit.e14f2714
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-09-04 */ // SPDX-License-Identifier: MITs // File: @openzeppelin/contracts/utils/Address.sol // 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/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: @openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } // File: @openzeppelin/contracts/utils/Context.sol // 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/security/Pausable.sol // OpenZeppelin Contracts v4.4.1 (security/Pausable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // File: @openzeppelin/contracts/access/Ownable.sol // 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: GoldDuckMigarate/main.sol pragma solidity 0.8.15; pragma abicoder v2; contract GoldDuckClaim is Pausable, Ownable, ReentrancyGuard { using SafeMath for uint256; using SafeERC20 for IERC20; using Address for address payable; IERC20 public oldToken = IERC20(0x378E8c47eb42cCE0dd9Cff48276a2aB73e9C254F); IERC20 public newToken = IERC20(0xE585E1878856868D9657aab815A8b8BA6a7A960D); uint256 public oldTokenSupply = 100_000_000_000_000e9; uint256 public newTokenSupply = 10_000_000e18; struct userStore { uint256 oldTokenDeposited; uint256 newTokenReceived; } mapping (address => userStore) public userInfo; mapping (address => bool) public excludedAddress; event claimEvent( address indexed _user, uint256 _oldToken, uint256 _newToken, uint256 _timeStamp ); receive() external payable {} /** * @dev Triggers stopped state. * * Can only be called by the current owner. * * Requirements: * * - The contract must not be paused. */ function pause() public onlyOwner{ _pause(); } /** * @dev Triggers normal state. * * Can only be called by the current owner. * * Requirements: * * - The contract must not be unpaused. */ function unpause() public onlyOwner{ _unpause(); } function recoverLeftOverBNB(uint256 amount) external onlyOwner { payable(owner()).sendValue(amount); } function setTokenSupply(uint256 _oldTokenSupply, uint256 _newTokenSupply) external onlyOwner { oldTokenSupply = _oldTokenSupply; newTokenSupply = _newTokenSupply; } function setTokenAddress(address _oldTokenAddress, address _newTokenAddress) external onlyOwner { oldToken = IERC20(_oldTokenAddress); newToken = IERC20(_newTokenAddress); } /** * @dev This function is help to the recover the stucked funds. * * Can only be called by the platform owner. * * Requirements: * * - `token` token contract address. * - `amount` amount of tokens * */ function releaseTokens(address token,uint256 amount) external onlyOwner { IERC20(token).safeTransfer(owner(),amount); } function excludeAddressfromMigration(address wallet) public onlyOwner { excludedAddress[wallet] = true; } function includeAddressInMigration(address wallet) public onlyOwner { excludedAddress[wallet] = false; } function coinBalance() public view returns (uint256) { return (address(this).balance); } function newTokenBalance() public view returns (uint256) { return newToken.balanceOf(address(this)); } function oldTokenBalance() public view returns (uint256) { return oldToken.balanceOf(address(this)); } function claimTokens(uint256 amount) external nonReentrant whenNotPaused { require(!excludedAddress[_msgSender()], "Caller is excluded wallet"); uint256 amountOut = getAmountOut(amount); userInfo[_msgSender()].oldTokenDeposited += amount; userInfo[_msgSender()].newTokenReceived += amountOut; oldToken.safeTransferFrom(_msgSender(),address(this), amount); newToken.safeTransfer(_msgSender(),amountOut); emit claimEvent(_msgSender(),amount,amountOut,block.timestamp); } function getAmountOut(uint256 oldTokenAmount) public view returns (uint256) { return ( oldTokenAmount.mul(newTokenSupply).div(oldTokenSupply) ); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_user","type":"address"},{"indexed":false,"internalType":"uint256","name":"_oldToken","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_newToken","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_timeStamp","type":"uint256"}],"name":"claimEvent","type":"event"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claimTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"coinBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"excludeAddressfromMigration","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"excludedAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"oldTokenAmount","type":"uint256"}],"name":"getAmountOut","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"includeAddressInMigration","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"newToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"newTokenBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"newTokenSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"oldToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"oldTokenBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"oldTokenSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"recoverLeftOverBNB","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"releaseTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_oldTokenAddress","type":"address"},{"internalType":"address","name":"_newTokenAddress","type":"address"}],"name":"setTokenAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_oldTokenSupply","type":"uint256"},{"internalType":"uint256","name":"_newTokenSupply","type":"uint256"}],"name":"setTokenSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userInfo","outputs":[{"internalType":"uint256","name":"oldTokenDeposited","type":"uint256"},{"internalType":"uint256","name":"newTokenReceived","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405273378e8c47eb42cce0dd9cff48276a2ab73e9c254f600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073e585e1878856868d9657aab815a8b8ba6a7a960d600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555069152d02c7e14af68000006004556a084595161401484a0000006005553480156100d757600080fd5b5060008060006101000a81548160ff02191690831515021790555061010e61010361011a60201b60201c565b61012260201b60201c565b600180819055506101e7565b600033905090565b60008060019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600060016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61247480620001f76000396000f3fe6080604052600436106101445760003560e01c80638456cb59116100b6578063c7afe9f21161006f578063c7afe9f21461040c578063cc8a288014610435578063cff803f414610472578063d26c8a8a1461049b578063f2fde38b146104c6578063f40d71f1146104ef5761014b565b80638456cb591461032057806387f2c83b146103375780638c56aa1d146103605780638da5cb5b1461038b578063b31c710a146103b6578063c42bd05a146103e15761014b565b80633f4ba83a116101085780633f4ba83a1461023657806346e04a2f1461024d5780634fae0495146102765780635c195217146102a15780635c975abb146102de578063715018a6146103095761014b565b8063031132ab1461015057806311c118211461017b5780631959a002146101a45780631cdefa42146101e2578063278d17ad1461020d5761014b565b3661014b57005b600080fd5b34801561015c57600080fd5b50610165610518565b6040516101729190611876565b60405180910390f35b34801561018757600080fd5b506101a2600480360381019061019d91906118c2565b61051e565b005b3480156101b057600080fd5b506101cb60048036038101906101c6919061194d565b6105cd565b6040516101d992919061197a565b60405180910390f35b3480156101ee57600080fd5b506101f76105f1565b6040516102049190611876565b60405180910390f35b34801561021957600080fd5b50610234600480360381019061022f91906119a3565b610694565b005b34801561024257600080fd5b5061024b610722565b005b34801561025957600080fd5b50610274600480360381019061026f91906118c2565b6107a8565b005b34801561028257600080fd5b5061028b610aac565b6040516102989190611876565b60405180910390f35b3480156102ad57600080fd5b506102c860048036038101906102c391906118c2565b610b4f565b6040516102d59190611876565b60405180910390f35b3480156102ea57600080fd5b506102f3610b81565b60405161030091906119fe565b60405180910390f35b34801561031557600080fd5b5061031e610b97565b005b34801561032c57600080fd5b50610335610c1f565b005b34801561034357600080fd5b5061035e6004803603810190610359919061194d565b610ca5565b005b34801561036c57600080fd5b50610375610d7c565b6040516103829190611876565b60405180910390f35b34801561039757600080fd5b506103a0610d82565b6040516103ad9190611a28565b60405180910390f35b3480156103c257600080fd5b506103cb610dab565b6040516103d89190611aa2565b60405180910390f35b3480156103ed57600080fd5b506103f6610dd1565b6040516104039190611aa2565b60405180910390f35b34801561041857600080fd5b50610433600480360381019061042e9190611abd565b610df7565b005b34801561044157600080fd5b5061045c6004803603810190610457919061194d565b610ef9565b60405161046991906119fe565b60405180910390f35b34801561047e57600080fd5b506104996004803603810190610494919061194d565b610f19565b005b3480156104a757600080fd5b506104b0610ff0565b6040516104bd9190611876565b60405180910390f35b3480156104d257600080fd5b506104ed60048036038101906104e8919061194d565b610ff8565b005b3480156104fb57600080fd5b5061051660048036038101906105119190611afd565b6110ef565b005b60045481565b6105266111a1565b73ffffffffffffffffffffffffffffffffffffffff16610544610d82565b73ffffffffffffffffffffffffffffffffffffffff161461059a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059190611b9a565b60405180910390fd5b6105ca816105a6610d82565b73ffffffffffffffffffffffffffffffffffffffff166111a990919063ffffffff16565b50565b60066020528060005260406000206000915090508060000154908060010154905082565b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161064e9190611a28565b602060405180830381865afa15801561066b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061068f9190611bcf565b905090565b61069c6111a1565b73ffffffffffffffffffffffffffffffffffffffff166106ba610d82565b73ffffffffffffffffffffffffffffffffffffffff1614610710576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070790611b9a565b60405180910390fd5b81600481905550806005819055505050565b61072a6111a1565b73ffffffffffffffffffffffffffffffffffffffff16610748610d82565b73ffffffffffffffffffffffffffffffffffffffff161461079e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079590611b9a565b60405180910390fd5b6107a661129d565b565b6002600154036107ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e490611c48565b60405180910390fd5b60026001819055506107fd610b81565b1561083d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083490611cb4565b60405180910390fd5b600760006108496111a1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156108d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c890611d20565b60405180910390fd5b60006108dc82610b4f565b905081600660006108eb6111a1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282546109379190611d6f565b92505081905550806006600061094b6111a1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010160008282546109979190611d6f565b925050819055506109f46109a96111a1565b3084600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661133e909392919063ffffffff16565b610a486109ff6111a1565b82600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166113c79092919063ffffffff16565b610a506111a1565b73ffffffffffffffffffffffffffffffffffffffff167f8b98cb23c7b798c73f0dc268c298c85c718555f3451f6ea16df499b944c7d1ff838342604051610a9993929190611dc5565b60405180910390a2506001808190555050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610b099190611a28565b602060405180830381865afa158015610b26573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b4a9190611bcf565b905090565b6000610b7a600454610b6c6005548561144d90919063ffffffff16565b61146390919063ffffffff16565b9050919050565b60008060009054906101000a900460ff16905090565b610b9f6111a1565b73ffffffffffffffffffffffffffffffffffffffff16610bbd610d82565b73ffffffffffffffffffffffffffffffffffffffff1614610c13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0a90611b9a565b60405180910390fd5b610c1d6000611479565b565b610c276111a1565b73ffffffffffffffffffffffffffffffffffffffff16610c45610d82565b73ffffffffffffffffffffffffffffffffffffffff1614610c9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9290611b9a565b60405180910390fd5b610ca361153e565b565b610cad6111a1565b73ffffffffffffffffffffffffffffffffffffffff16610ccb610d82565b73ffffffffffffffffffffffffffffffffffffffff1614610d21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1890611b9a565b60405180910390fd5b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60055481565b60008060019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610dff6111a1565b73ffffffffffffffffffffffffffffffffffffffff16610e1d610d82565b73ffffffffffffffffffffffffffffffffffffffff1614610e73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6a90611b9a565b60405180910390fd5b81600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b60076020528060005260406000206000915054906101000a900460ff1681565b610f216111a1565b73ffffffffffffffffffffffffffffffffffffffff16610f3f610d82565b73ffffffffffffffffffffffffffffffffffffffff1614610f95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8c90611b9a565b60405180910390fd5b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600047905090565b6110006111a1565b73ffffffffffffffffffffffffffffffffffffffff1661101e610d82565b73ffffffffffffffffffffffffffffffffffffffff1614611074576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106b90611b9a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036110e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110da90611e6e565b60405180910390fd5b6110ec81611479565b50565b6110f76111a1565b73ffffffffffffffffffffffffffffffffffffffff16611115610d82565b73ffffffffffffffffffffffffffffffffffffffff161461116b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116290611b9a565b60405180910390fd5b61119d611176610d82565b828473ffffffffffffffffffffffffffffffffffffffff166113c79092919063ffffffff16565b5050565b600033905090565b804710156111ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e390611eda565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161121290611f2b565b60006040518083038185875af1925050503d806000811461124f576040519150601f19603f3d011682016040523d82523d6000602084013e611254565b606091505b5050905080611298576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128f90611fb2565b60405180910390fd5b505050565b6112a5610b81565b6112e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112db9061201e565b60405180910390fd5b60008060006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6113276111a1565b6040516113349190611a28565b60405180910390a1565b6113c1846323b872dd60e01b85858560405160240161135f9392919061203e565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506115e0565b50505050565b6114488363a9059cbb60e01b84846040516024016113e6929190612075565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506115e0565b505050565b6000818361145b919061209e565b905092915050565b600081836114719190612127565b905092915050565b60008060019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600060016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611546610b81565b15611586576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157d90611cb4565b60405180910390fd5b60016000806101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586115c96111a1565b6040516115d69190611a28565b60405180910390a1565b6000611642826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166116a79092919063ffffffff16565b90506000815111156116a257808060200190518101906116629190612184565b6116a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169890612223565b60405180910390fd5b5b505050565b60606116b684846000856116bf565b90509392505050565b606082471015611704576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fb906122b5565b60405180910390fd5b61170d856117d3565b61174c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174390612321565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff16858760405161177591906123b0565b60006040518083038185875af1925050503d80600081146117b2576040519150601f19603f3d011682016040523d82523d6000602084013e6117b7565b606091505b50915091506117c78282866117f6565b92505050949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6060831561180657829050611856565b6000835111156118195782518084602001fd5b816040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184d919061241c565b60405180910390fd5b9392505050565b6000819050919050565b6118708161185d565b82525050565b600060208201905061188b6000830184611867565b92915050565b600080fd5b61189f8161185d565b81146118aa57600080fd5b50565b6000813590506118bc81611896565b92915050565b6000602082840312156118d8576118d7611891565b5b60006118e6848285016118ad565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061191a826118ef565b9050919050565b61192a8161190f565b811461193557600080fd5b50565b60008135905061194781611921565b92915050565b60006020828403121561196357611962611891565b5b600061197184828501611938565b91505092915050565b600060408201905061198f6000830185611867565b61199c6020830184611867565b9392505050565b600080604083850312156119ba576119b9611891565b5b60006119c8858286016118ad565b92505060206119d9858286016118ad565b9150509250929050565b60008115159050919050565b6119f8816119e3565b82525050565b6000602082019050611a1360008301846119ef565b92915050565b611a228161190f565b82525050565b6000602082019050611a3d6000830184611a19565b92915050565b6000819050919050565b6000611a68611a63611a5e846118ef565b611a43565b6118ef565b9050919050565b6000611a7a82611a4d565b9050919050565b6000611a8c82611a6f565b9050919050565b611a9c81611a81565b82525050565b6000602082019050611ab76000830184611a93565b92915050565b60008060408385031215611ad457611ad3611891565b5b6000611ae285828601611938565b9250506020611af385828601611938565b9150509250929050565b60008060408385031215611b1457611b13611891565b5b6000611b2285828601611938565b9250506020611b33858286016118ad565b9150509250929050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611b84602083611b3d565b9150611b8f82611b4e565b602082019050919050565b60006020820190508181036000830152611bb381611b77565b9050919050565b600081519050611bc981611896565b92915050565b600060208284031215611be557611be4611891565b5b6000611bf384828501611bba565b91505092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000611c32601f83611b3d565b9150611c3d82611bfc565b602082019050919050565b60006020820190508181036000830152611c6181611c25565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000611c9e601083611b3d565b9150611ca982611c68565b602082019050919050565b60006020820190508181036000830152611ccd81611c91565b9050919050565b7f43616c6c6572206973206578636c756465642077616c6c657400000000000000600082015250565b6000611d0a601983611b3d565b9150611d1582611cd4565b602082019050919050565b60006020820190508181036000830152611d3981611cfd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611d7a8261185d565b9150611d858361185d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611dba57611db9611d40565b5b828201905092915050565b6000606082019050611dda6000830186611867565b611de76020830185611867565b611df46040830184611867565b949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611e58602683611b3d565b9150611e6382611dfc565b604082019050919050565b60006020820190508181036000830152611e8781611e4b565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000611ec4601d83611b3d565b9150611ecf82611e8e565b602082019050919050565b60006020820190508181036000830152611ef381611eb7565b9050919050565b600081905092915050565b50565b6000611f15600083611efa565b9150611f2082611f05565b600082019050919050565b6000611f3682611f08565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000611f9c603a83611b3d565b9150611fa782611f40565b604082019050919050565b60006020820190508181036000830152611fcb81611f8f565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000612008601483611b3d565b915061201382611fd2565b602082019050919050565b6000602082019050818103600083015261203781611ffb565b9050919050565b60006060820190506120536000830186611a19565b6120606020830185611a19565b61206d6040830184611867565b949350505050565b600060408201905061208a6000830185611a19565b6120976020830184611867565b9392505050565b60006120a98261185d565b91506120b48361185d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156120ed576120ec611d40565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006121328261185d565b915061213d8361185d565b92508261214d5761214c6120f8565b5b828204905092915050565b612161816119e3565b811461216c57600080fd5b50565b60008151905061217e81612158565b92915050565b60006020828403121561219a57612199611891565b5b60006121a88482850161216f565b91505092915050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b600061220d602a83611b3d565b9150612218826121b1565b604082019050919050565b6000602082019050818103600083015261223c81612200565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b600061229f602683611b3d565b91506122aa82612243565b604082019050919050565b600060208201905081810360008301526122ce81612292565b9050919050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b600061230b601d83611b3d565b9150612316826122d5565b602082019050919050565b6000602082019050818103600083015261233a816122fe565b9050919050565b600081519050919050565b60005b8381101561236a57808201518184015260208101905061234f565b83811115612379576000848401525b50505050565b600061238a82612341565b6123948185611efa565b93506123a481856020860161234c565b80840191505092915050565b60006123bc828461237f565b915081905092915050565b600081519050919050565b6000601f19601f8301169050919050565b60006123ee826123c7565b6123f88185611b3d565b935061240881856020860161234c565b612411816123d2565b840191505092915050565b6000602082019050818103600083015261243681846123e3565b90509291505056fea26469706673582212207c13a7a96a0d6bb1f3fde628cd418164bb26dd8b55c06d53048a51e0b63641c764736f6c634300080f0033
Deployed Bytecode
0x6080604052600436106101445760003560e01c80638456cb59116100b6578063c7afe9f21161006f578063c7afe9f21461040c578063cc8a288014610435578063cff803f414610472578063d26c8a8a1461049b578063f2fde38b146104c6578063f40d71f1146104ef5761014b565b80638456cb591461032057806387f2c83b146103375780638c56aa1d146103605780638da5cb5b1461038b578063b31c710a146103b6578063c42bd05a146103e15761014b565b80633f4ba83a116101085780633f4ba83a1461023657806346e04a2f1461024d5780634fae0495146102765780635c195217146102a15780635c975abb146102de578063715018a6146103095761014b565b8063031132ab1461015057806311c118211461017b5780631959a002146101a45780631cdefa42146101e2578063278d17ad1461020d5761014b565b3661014b57005b600080fd5b34801561015c57600080fd5b50610165610518565b6040516101729190611876565b60405180910390f35b34801561018757600080fd5b506101a2600480360381019061019d91906118c2565b61051e565b005b3480156101b057600080fd5b506101cb60048036038101906101c6919061194d565b6105cd565b6040516101d992919061197a565b60405180910390f35b3480156101ee57600080fd5b506101f76105f1565b6040516102049190611876565b60405180910390f35b34801561021957600080fd5b50610234600480360381019061022f91906119a3565b610694565b005b34801561024257600080fd5b5061024b610722565b005b34801561025957600080fd5b50610274600480360381019061026f91906118c2565b6107a8565b005b34801561028257600080fd5b5061028b610aac565b6040516102989190611876565b60405180910390f35b3480156102ad57600080fd5b506102c860048036038101906102c391906118c2565b610b4f565b6040516102d59190611876565b60405180910390f35b3480156102ea57600080fd5b506102f3610b81565b60405161030091906119fe565b60405180910390f35b34801561031557600080fd5b5061031e610b97565b005b34801561032c57600080fd5b50610335610c1f565b005b34801561034357600080fd5b5061035e6004803603810190610359919061194d565b610ca5565b005b34801561036c57600080fd5b50610375610d7c565b6040516103829190611876565b60405180910390f35b34801561039757600080fd5b506103a0610d82565b6040516103ad9190611a28565b60405180910390f35b3480156103c257600080fd5b506103cb610dab565b6040516103d89190611aa2565b60405180910390f35b3480156103ed57600080fd5b506103f6610dd1565b6040516104039190611aa2565b60405180910390f35b34801561041857600080fd5b50610433600480360381019061042e9190611abd565b610df7565b005b34801561044157600080fd5b5061045c6004803603810190610457919061194d565b610ef9565b60405161046991906119fe565b60405180910390f35b34801561047e57600080fd5b506104996004803603810190610494919061194d565b610f19565b005b3480156104a757600080fd5b506104b0610ff0565b6040516104bd9190611876565b60405180910390f35b3480156104d257600080fd5b506104ed60048036038101906104e8919061194d565b610ff8565b005b3480156104fb57600080fd5b5061051660048036038101906105119190611afd565b6110ef565b005b60045481565b6105266111a1565b73ffffffffffffffffffffffffffffffffffffffff16610544610d82565b73ffffffffffffffffffffffffffffffffffffffff161461059a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059190611b9a565b60405180910390fd5b6105ca816105a6610d82565b73ffffffffffffffffffffffffffffffffffffffff166111a990919063ffffffff16565b50565b60066020528060005260406000206000915090508060000154908060010154905082565b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161064e9190611a28565b602060405180830381865afa15801561066b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061068f9190611bcf565b905090565b61069c6111a1565b73ffffffffffffffffffffffffffffffffffffffff166106ba610d82565b73ffffffffffffffffffffffffffffffffffffffff1614610710576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070790611b9a565b60405180910390fd5b81600481905550806005819055505050565b61072a6111a1565b73ffffffffffffffffffffffffffffffffffffffff16610748610d82565b73ffffffffffffffffffffffffffffffffffffffff161461079e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079590611b9a565b60405180910390fd5b6107a661129d565b565b6002600154036107ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e490611c48565b60405180910390fd5b60026001819055506107fd610b81565b1561083d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083490611cb4565b60405180910390fd5b600760006108496111a1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156108d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c890611d20565b60405180910390fd5b60006108dc82610b4f565b905081600660006108eb6111a1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282546109379190611d6f565b92505081905550806006600061094b6111a1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010160008282546109979190611d6f565b925050819055506109f46109a96111a1565b3084600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661133e909392919063ffffffff16565b610a486109ff6111a1565b82600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166113c79092919063ffffffff16565b610a506111a1565b73ffffffffffffffffffffffffffffffffffffffff167f8b98cb23c7b798c73f0dc268c298c85c718555f3451f6ea16df499b944c7d1ff838342604051610a9993929190611dc5565b60405180910390a2506001808190555050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610b099190611a28565b602060405180830381865afa158015610b26573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b4a9190611bcf565b905090565b6000610b7a600454610b6c6005548561144d90919063ffffffff16565b61146390919063ffffffff16565b9050919050565b60008060009054906101000a900460ff16905090565b610b9f6111a1565b73ffffffffffffffffffffffffffffffffffffffff16610bbd610d82565b73ffffffffffffffffffffffffffffffffffffffff1614610c13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0a90611b9a565b60405180910390fd5b610c1d6000611479565b565b610c276111a1565b73ffffffffffffffffffffffffffffffffffffffff16610c45610d82565b73ffffffffffffffffffffffffffffffffffffffff1614610c9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9290611b9a565b60405180910390fd5b610ca361153e565b565b610cad6111a1565b73ffffffffffffffffffffffffffffffffffffffff16610ccb610d82565b73ffffffffffffffffffffffffffffffffffffffff1614610d21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1890611b9a565b60405180910390fd5b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60055481565b60008060019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610dff6111a1565b73ffffffffffffffffffffffffffffffffffffffff16610e1d610d82565b73ffffffffffffffffffffffffffffffffffffffff1614610e73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6a90611b9a565b60405180910390fd5b81600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b60076020528060005260406000206000915054906101000a900460ff1681565b610f216111a1565b73ffffffffffffffffffffffffffffffffffffffff16610f3f610d82565b73ffffffffffffffffffffffffffffffffffffffff1614610f95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8c90611b9a565b60405180910390fd5b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600047905090565b6110006111a1565b73ffffffffffffffffffffffffffffffffffffffff1661101e610d82565b73ffffffffffffffffffffffffffffffffffffffff1614611074576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106b90611b9a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036110e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110da90611e6e565b60405180910390fd5b6110ec81611479565b50565b6110f76111a1565b73ffffffffffffffffffffffffffffffffffffffff16611115610d82565b73ffffffffffffffffffffffffffffffffffffffff161461116b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116290611b9a565b60405180910390fd5b61119d611176610d82565b828473ffffffffffffffffffffffffffffffffffffffff166113c79092919063ffffffff16565b5050565b600033905090565b804710156111ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e390611eda565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161121290611f2b565b60006040518083038185875af1925050503d806000811461124f576040519150601f19603f3d011682016040523d82523d6000602084013e611254565b606091505b5050905080611298576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128f90611fb2565b60405180910390fd5b505050565b6112a5610b81565b6112e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112db9061201e565b60405180910390fd5b60008060006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6113276111a1565b6040516113349190611a28565b60405180910390a1565b6113c1846323b872dd60e01b85858560405160240161135f9392919061203e565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506115e0565b50505050565b6114488363a9059cbb60e01b84846040516024016113e6929190612075565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506115e0565b505050565b6000818361145b919061209e565b905092915050565b600081836114719190612127565b905092915050565b60008060019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600060016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611546610b81565b15611586576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157d90611cb4565b60405180910390fd5b60016000806101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586115c96111a1565b6040516115d69190611a28565b60405180910390a1565b6000611642826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166116a79092919063ffffffff16565b90506000815111156116a257808060200190518101906116629190612184565b6116a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169890612223565b60405180910390fd5b5b505050565b60606116b684846000856116bf565b90509392505050565b606082471015611704576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fb906122b5565b60405180910390fd5b61170d856117d3565b61174c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174390612321565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff16858760405161177591906123b0565b60006040518083038185875af1925050503d80600081146117b2576040519150601f19603f3d011682016040523d82523d6000602084013e6117b7565b606091505b50915091506117c78282866117f6565b92505050949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6060831561180657829050611856565b6000835111156118195782518084602001fd5b816040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184d919061241c565b60405180910390fd5b9392505050565b6000819050919050565b6118708161185d565b82525050565b600060208201905061188b6000830184611867565b92915050565b600080fd5b61189f8161185d565b81146118aa57600080fd5b50565b6000813590506118bc81611896565b92915050565b6000602082840312156118d8576118d7611891565b5b60006118e6848285016118ad565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061191a826118ef565b9050919050565b61192a8161190f565b811461193557600080fd5b50565b60008135905061194781611921565b92915050565b60006020828403121561196357611962611891565b5b600061197184828501611938565b91505092915050565b600060408201905061198f6000830185611867565b61199c6020830184611867565b9392505050565b600080604083850312156119ba576119b9611891565b5b60006119c8858286016118ad565b92505060206119d9858286016118ad565b9150509250929050565b60008115159050919050565b6119f8816119e3565b82525050565b6000602082019050611a1360008301846119ef565b92915050565b611a228161190f565b82525050565b6000602082019050611a3d6000830184611a19565b92915050565b6000819050919050565b6000611a68611a63611a5e846118ef565b611a43565b6118ef565b9050919050565b6000611a7a82611a4d565b9050919050565b6000611a8c82611a6f565b9050919050565b611a9c81611a81565b82525050565b6000602082019050611ab76000830184611a93565b92915050565b60008060408385031215611ad457611ad3611891565b5b6000611ae285828601611938565b9250506020611af385828601611938565b9150509250929050565b60008060408385031215611b1457611b13611891565b5b6000611b2285828601611938565b9250506020611b33858286016118ad565b9150509250929050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611b84602083611b3d565b9150611b8f82611b4e565b602082019050919050565b60006020820190508181036000830152611bb381611b77565b9050919050565b600081519050611bc981611896565b92915050565b600060208284031215611be557611be4611891565b5b6000611bf384828501611bba565b91505092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000611c32601f83611b3d565b9150611c3d82611bfc565b602082019050919050565b60006020820190508181036000830152611c6181611c25565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000611c9e601083611b3d565b9150611ca982611c68565b602082019050919050565b60006020820190508181036000830152611ccd81611c91565b9050919050565b7f43616c6c6572206973206578636c756465642077616c6c657400000000000000600082015250565b6000611d0a601983611b3d565b9150611d1582611cd4565b602082019050919050565b60006020820190508181036000830152611d3981611cfd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611d7a8261185d565b9150611d858361185d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611dba57611db9611d40565b5b828201905092915050565b6000606082019050611dda6000830186611867565b611de76020830185611867565b611df46040830184611867565b949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611e58602683611b3d565b9150611e6382611dfc565b604082019050919050565b60006020820190508181036000830152611e8781611e4b565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000611ec4601d83611b3d565b9150611ecf82611e8e565b602082019050919050565b60006020820190508181036000830152611ef381611eb7565b9050919050565b600081905092915050565b50565b6000611f15600083611efa565b9150611f2082611f05565b600082019050919050565b6000611f3682611f08565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000611f9c603a83611b3d565b9150611fa782611f40565b604082019050919050565b60006020820190508181036000830152611fcb81611f8f565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000612008601483611b3d565b915061201382611fd2565b602082019050919050565b6000602082019050818103600083015261203781611ffb565b9050919050565b60006060820190506120536000830186611a19565b6120606020830185611a19565b61206d6040830184611867565b949350505050565b600060408201905061208a6000830185611a19565b6120976020830184611867565b9392505050565b60006120a98261185d565b91506120b48361185d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156120ed576120ec611d40565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006121328261185d565b915061213d8361185d565b92508261214d5761214c6120f8565b5b828204905092915050565b612161816119e3565b811461216c57600080fd5b50565b60008151905061217e81612158565b92915050565b60006020828403121561219a57612199611891565b5b60006121a88482850161216f565b91505092915050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b600061220d602a83611b3d565b9150612218826121b1565b604082019050919050565b6000602082019050818103600083015261223c81612200565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b600061229f602683611b3d565b91506122aa82612243565b604082019050919050565b600060208201905081810360008301526122ce81612292565b9050919050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b600061230b601d83611b3d565b9150612316826122d5565b602082019050919050565b6000602082019050818103600083015261233a816122fe565b9050919050565b600081519050919050565b60005b8381101561236a57808201518184015260208101905061234f565b83811115612379576000848401525b50505050565b600061238a82612341565b6123948185611efa565b93506123a481856020860161234c565b80840191505092915050565b60006123bc828461237f565b915081905092915050565b600081519050919050565b6000601f19601f8301169050919050565b60006123ee826123c7565b6123f88185611b3d565b935061240881856020860161234c565b612411816123d2565b840191505092915050565b6000602082019050818103600083015261243681846123e3565b90509291505056fea26469706673582212207c13a7a96a0d6bb1f3fde628cd418164bb26dd8b55c06d53048a51e0b63641c764736f6c634300080f0033
Deployed Bytecode Sourcemap
31030:3749:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31377:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32470:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31640:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;33912:116;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32594:188;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32400:62;;;;;;;;;;;;;:::i;:::-;;34036:548;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33788:116;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34592:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27224:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30123:103;;;;;;;;;;;;;:::i;:::-;;32134:58;;;;;;;;;;;;;:::i;:::-;;33416:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31437:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29472:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31207:75;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31289;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32790:197;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31693:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33543:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33670:110;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30381:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33275:133;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31377:53;;;;:::o;32470:116::-;29703:12;:10;:12::i;:::-;29692:23;;:7;:5;:7::i;:::-;:23;;;29684:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32544:34:::1;32571:6;32552:7;:5;:7::i;:::-;32544:26;;;;:34;;;;:::i;:::-;32470:116:::0;:::o;31640:46::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;33912:116::-;33960:7;33987:8;;;;;;;;;;;:18;;;34014:4;33987:33;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33980:40;;33912:116;:::o;32594:188::-;29703:12;:10;:12::i;:::-;29692:23;;:7;:5;:7::i;:::-;:23;;;29684:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32716:15:::1;32699:14;:32;;;;32759:15;32742:14;:32;;;;32594:188:::0;;:::o;32400:62::-;29703:12;:10;:12::i;:::-;29692:23;;:7;:5;:7::i;:::-;:23;;;29684:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32444:10:::1;:8;:10::i;:::-;32400:62::o:0;34036:548::-;10353:1;10951:7;;:19;10943:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;10353:1;11084:7;:18;;;;27550:8:::1;:6;:8::i;:::-;27549:9;27541:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;34130:15:::2;:29;34146:12;:10;:12::i;:::-;34130:29;;;;;;;;;;;;;;;;;;;;;;;;;34129:30;34121:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34202:17;34222:20;34235:6;34222:12;:20::i;:::-;34202:40;;34301:6;34257:8;:22;34266:12;:10;:12::i;:::-;34257:22;;;;;;;;;;;;;;;:40;;;:50;;;;;;;:::i;:::-;;;;;;;;34361:9;34318:8;:22;34327:12;:10;:12::i;:::-;34318:22;;;;;;;;;;;;;;;:39;;;:52;;;;;;;:::i;:::-;;;;;;;;34381:61;34407:12;:10;:12::i;:::-;34428:4;34435:6;34381:8;;;;;;;;;;;:25;;;;:61;;;;;;:::i;:::-;34458:45;34480:12;:10;:12::i;:::-;34493:9;34458:8;;;;;;;;;;;:21;;;;:45;;;;;:::i;:::-;34530:12;:10;:12::i;:::-;34519:57;;;34543:6;34550:9;34560:15;34519:57;;;;;;;;:::i;:::-;;;;;;;;34109:475;10309:1:::0;11263:7;:22;;;;34036:548;:::o;33788:116::-;33836:7;33863:8;;;;;;;;;;;:18;;;33890:4;33863:33;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33856:40;;33788:116;:::o;34592:182::-;34659:7;34701:54;34740:14;;34701:34;34720:14;;34701;:18;;:34;;;;:::i;:::-;:38;;:54;;;;:::i;:::-;34679:87;;34592:182;;;:::o;27224:86::-;27271:4;27295:7;;;;;;;;;;;27288:14;;27224:86;:::o;30123:103::-;29703:12;:10;:12::i;:::-;29692:23;;:7;:5;:7::i;:::-;:23;;;29684:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30188:30:::1;30215:1;30188:18;:30::i;:::-;30123:103::o:0;32134:58::-;29703:12;:10;:12::i;:::-;29692:23;;:7;:5;:7::i;:::-;:23;;;29684:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32176:8:::1;:6;:8::i;:::-;32134:58::o:0;33416:119::-;29703:12;:10;:12::i;:::-;29692:23;;:7;:5;:7::i;:::-;:23;;;29684:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33523:4:::1;33497:15;:23;33513:6;33497:23;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;33416:119:::0;:::o;31437:45::-;;;;:::o;29472:87::-;29518:7;29545:6;;;;;;;;;;;29538:13;;29472:87;:::o;31207:75::-;;;;;;;;;;;;;:::o;31289:::-;;;;;;;;;;;;;:::o;32790:197::-;29703:12;:10;:12::i;:::-;29692:23;;:7;:5;:7::i;:::-;:23;;;29684:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32916:16:::1;32898:8;;:35;;;;;;;;;;;;;;;;;;32962:16;32944:8;;:35;;;;;;;;;;;;;;;;;;32790:197:::0;;:::o;31693:48::-;;;;;;;;;;;;;;;;;;;;;;:::o;33543:118::-;29703:12;:10;:12::i;:::-;29692:23;;:7;:5;:7::i;:::-;:23;;;29684:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33648:5:::1;33622:15;:23;33638:6;33622:23;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;33543:118:::0;:::o;33670:110::-;33714:7;33742:21;33734:30;;33670:110;:::o;30381:201::-;29703:12;:10;:12::i;:::-;29692:23;;:7;:5;:7::i;:::-;:23;;;29684:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30490:1:::1;30470:22;;:8;:22;;::::0;30462:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;30546:28;30565:8;30546:18;:28::i;:::-;30381:201:::0;:::o;33275:133::-;29703:12;:10;:12::i;:::-;29692:23;;:7;:5;:7::i;:::-;:23;;;29684:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33358:42:::1;33385:7;:5;:7::i;:::-;33393:6;33365:5;33358:26;;;;:42;;;;;:::i;:::-;33275:133:::0;;:::o;25878:98::-;25931:7;25958:10;25951:17;;25878:98;:::o;2532:317::-;2647:6;2622:21;:31;;2614:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2701:12;2719:9;:14;;2741:6;2719:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2700:52;;;2771:7;2763:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;2603:246;2532:317;;:::o;28283:120::-;27827:8;:6;:8::i;:::-;27819:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;28352:5:::1;28342:7:::0;::::1;:15;;;;;;;;;;;;;;;;;;28373:22;28382:12;:10;:12::i;:::-;28373:22;;;;;;:::i;:::-;;;;;;;;28283:120::o:0;22122:248::-;22266:96;22286:5;22316:27;;;22345:4;22351:2;22355:5;22293:68;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22266:19;:96::i;:::-;22122:248;;;;:::o;21903:211::-;22020:86;22040:5;22070:23;;;22095:2;22099:5;22047:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22020:19;:86::i;:::-;21903:211;;;:::o;14900:98::-;14958:7;14989:1;14985;:5;;;;:::i;:::-;14978:12;;14900:98;;;;:::o;15299:::-;15357:7;15388:1;15384;:5;;;;:::i;:::-;15377:12;;15299:98;;;;:::o;30742:191::-;30816:16;30835:6;;;;;;;;;;;30816:25;;30861:8;30852:6;;:17;;;;;;;;;;;;;;;;;;30916:8;30885:40;;30906:8;30885:40;;;;;;;;;;;;30805:128;30742:191;:::o;28024:118::-;27550:8;:6;:8::i;:::-;27549:9;27541:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;28094:4:::1;28084:7;::::0;:14:::1;;;;;;;;;;;;;;;;;;28114:20;28121:12;:10;:12::i;:::-;28114:20;;;;;;:::i;:::-;;;;;;;;28024:118::o:0;24476:716::-;24900:23;24926:69;24954:4;24926:69;;;;;;;;;;;;;;;;;24934:5;24926:27;;;;:69;;;;;:::i;:::-;24900:95;;25030:1;25010:10;:17;:21;25006:179;;;25107:10;25096:30;;;;;;;;;;;;:::i;:::-;25088:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;25006:179;24546:646;24476:716;;:::o;4016:229::-;4153:12;4185:52;4207:6;4215:4;4221:1;4224:12;4185:21;:52::i;:::-;4178:59;;4016:229;;;;;:::o;5136:510::-;5306:12;5364:5;5339:21;:30;;5331:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;5431:18;5442:6;5431:10;:18::i;:::-;5423:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;5497:12;5511:23;5538:6;:11;;5557:5;5564:4;5538:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5496:73;;;;5587:51;5604:7;5613:10;5625:12;5587:16;:51::i;:::-;5580:58;;;;5136:510;;;;;;:::o;1271:326::-;1331:4;1588:1;1566:7;:19;;;:23;1559:30;;1271:326;;;:::o;7822:712::-;7972:12;8001:7;7997:530;;;8032:10;8025:17;;;;7997:530;8166:1;8146:10;:17;:21;8142:374;;;8344:10;8338:17;8405:15;8392:10;8388:2;8384:19;8377:44;8142:374;8487:12;8480:20;;;;;;;;;;;:::i;:::-;;;;;;;;7822:712;;;;;;:::o;7:77:1:-;44:7;73:5;62:16;;7:77;;;:::o;90:118::-;177:24;195:5;177:24;:::i;:::-;172:3;165:37;90:118;;:::o;214:222::-;307:4;345:2;334:9;330:18;322:26;;358:71;426:1;415:9;411:17;402:6;358:71;:::i;:::-;214:222;;;;:::o;523:117::-;632:1;629;622:12;769:122;842:24;860:5;842:24;:::i;:::-;835:5;832:35;822:63;;881:1;878;871:12;822:63;769:122;:::o;897:139::-;943:5;981:6;968:20;959:29;;997:33;1024:5;997:33;:::i;:::-;897:139;;;;:::o;1042:329::-;1101:6;1150:2;1138:9;1129:7;1125:23;1121:32;1118:119;;;1156:79;;:::i;:::-;1118:119;1276:1;1301:53;1346:7;1337:6;1326:9;1322:22;1301:53;:::i;:::-;1291:63;;1247:117;1042:329;;;;:::o;1377:126::-;1414:7;1454:42;1447:5;1443:54;1432:65;;1377:126;;;:::o;1509:96::-;1546:7;1575:24;1593:5;1575:24;:::i;:::-;1564:35;;1509:96;;;:::o;1611:122::-;1684:24;1702:5;1684:24;:::i;:::-;1677:5;1674:35;1664:63;;1723:1;1720;1713:12;1664:63;1611:122;:::o;1739:139::-;1785:5;1823:6;1810:20;1801:29;;1839:33;1866:5;1839:33;:::i;:::-;1739:139;;;;:::o;1884:329::-;1943:6;1992:2;1980:9;1971:7;1967:23;1963:32;1960:119;;;1998:79;;:::i;:::-;1960:119;2118:1;2143:53;2188:7;2179:6;2168:9;2164:22;2143:53;:::i;:::-;2133:63;;2089:117;1884:329;;;;:::o;2219:332::-;2340:4;2378:2;2367:9;2363:18;2355:26;;2391:71;2459:1;2448:9;2444:17;2435:6;2391:71;:::i;:::-;2472:72;2540:2;2529:9;2525:18;2516:6;2472:72;:::i;:::-;2219:332;;;;;:::o;2557:474::-;2625:6;2633;2682:2;2670:9;2661:7;2657:23;2653:32;2650:119;;;2688:79;;:::i;:::-;2650:119;2808:1;2833:53;2878:7;2869:6;2858:9;2854:22;2833:53;:::i;:::-;2823:63;;2779:117;2935:2;2961:53;3006:7;2997:6;2986:9;2982:22;2961:53;:::i;:::-;2951:63;;2906:118;2557:474;;;;;:::o;3037:90::-;3071:7;3114:5;3107:13;3100:21;3089:32;;3037:90;;;:::o;3133:109::-;3214:21;3229:5;3214:21;:::i;:::-;3209:3;3202:34;3133:109;;:::o;3248:210::-;3335:4;3373:2;3362:9;3358:18;3350:26;;3386:65;3448:1;3437:9;3433:17;3424:6;3386:65;:::i;:::-;3248:210;;;;:::o;3464:118::-;3551:24;3569:5;3551:24;:::i;:::-;3546:3;3539:37;3464:118;;:::o;3588:222::-;3681:4;3719:2;3708:9;3704:18;3696:26;;3732:71;3800:1;3789:9;3785:17;3776:6;3732:71;:::i;:::-;3588:222;;;;:::o;3816:60::-;3844:3;3865:5;3858:12;;3816:60;;;:::o;3882:142::-;3932:9;3965:53;3983:34;3992:24;4010:5;3992:24;:::i;:::-;3983:34;:::i;:::-;3965:53;:::i;:::-;3952:66;;3882:142;;;:::o;4030:126::-;4080:9;4113:37;4144:5;4113:37;:::i;:::-;4100:50;;4030:126;;;:::o;4162:140::-;4226:9;4259:37;4290:5;4259:37;:::i;:::-;4246:50;;4162:140;;;:::o;4308:159::-;4409:51;4454:5;4409:51;:::i;:::-;4404:3;4397:64;4308:159;;:::o;4473:250::-;4580:4;4618:2;4607:9;4603:18;4595:26;;4631:85;4713:1;4702:9;4698:17;4689:6;4631:85;:::i;:::-;4473:250;;;;:::o;4729:474::-;4797:6;4805;4854:2;4842:9;4833:7;4829:23;4825:32;4822:119;;;4860:79;;:::i;:::-;4822:119;4980:1;5005:53;5050:7;5041:6;5030:9;5026:22;5005:53;:::i;:::-;4995:63;;4951:117;5107:2;5133:53;5178:7;5169:6;5158:9;5154:22;5133:53;:::i;:::-;5123:63;;5078:118;4729:474;;;;;:::o;5209:::-;5277:6;5285;5334:2;5322:9;5313:7;5309:23;5305:32;5302:119;;;5340:79;;:::i;:::-;5302:119;5460:1;5485:53;5530:7;5521:6;5510:9;5506:22;5485:53;:::i;:::-;5475:63;;5431:117;5587:2;5613:53;5658:7;5649:6;5638:9;5634:22;5613:53;:::i;:::-;5603:63;;5558:118;5209:474;;;;;:::o;5689:169::-;5773:11;5807:6;5802:3;5795:19;5847:4;5842:3;5838:14;5823:29;;5689:169;;;;:::o;5864:182::-;6004:34;6000:1;5992:6;5988:14;5981:58;5864:182;:::o;6052:366::-;6194:3;6215:67;6279:2;6274:3;6215:67;:::i;:::-;6208:74;;6291:93;6380:3;6291:93;:::i;:::-;6409:2;6404:3;6400:12;6393:19;;6052:366;;;:::o;6424:419::-;6590:4;6628:2;6617:9;6613:18;6605:26;;6677:9;6671:4;6667:20;6663:1;6652:9;6648:17;6641:47;6705:131;6831:4;6705:131;:::i;:::-;6697:139;;6424:419;;;:::o;6849:143::-;6906:5;6937:6;6931:13;6922:22;;6953:33;6980:5;6953:33;:::i;:::-;6849:143;;;;:::o;6998:351::-;7068:6;7117:2;7105:9;7096:7;7092:23;7088:32;7085:119;;;7123:79;;:::i;:::-;7085:119;7243:1;7268:64;7324:7;7315:6;7304:9;7300:22;7268:64;:::i;:::-;7258:74;;7214:128;6998:351;;;;:::o;7355:181::-;7495:33;7491:1;7483:6;7479:14;7472:57;7355:181;:::o;7542:366::-;7684:3;7705:67;7769:2;7764:3;7705:67;:::i;:::-;7698:74;;7781:93;7870:3;7781:93;:::i;:::-;7899:2;7894:3;7890:12;7883:19;;7542:366;;;:::o;7914:419::-;8080:4;8118:2;8107:9;8103:18;8095:26;;8167:9;8161:4;8157:20;8153:1;8142:9;8138:17;8131:47;8195:131;8321:4;8195:131;:::i;:::-;8187:139;;7914:419;;;:::o;8339:166::-;8479:18;8475:1;8467:6;8463:14;8456:42;8339:166;:::o;8511:366::-;8653:3;8674:67;8738:2;8733:3;8674:67;:::i;:::-;8667:74;;8750:93;8839:3;8750:93;:::i;:::-;8868:2;8863:3;8859:12;8852:19;;8511:366;;;:::o;8883:419::-;9049:4;9087:2;9076:9;9072:18;9064:26;;9136:9;9130:4;9126:20;9122:1;9111:9;9107:17;9100:47;9164:131;9290:4;9164:131;:::i;:::-;9156:139;;8883:419;;;:::o;9308:175::-;9448:27;9444:1;9436:6;9432:14;9425:51;9308:175;:::o;9489:366::-;9631:3;9652:67;9716:2;9711:3;9652:67;:::i;:::-;9645:74;;9728:93;9817:3;9728:93;:::i;:::-;9846:2;9841:3;9837:12;9830:19;;9489:366;;;:::o;9861:419::-;10027:4;10065:2;10054:9;10050:18;10042:26;;10114:9;10108:4;10104:20;10100:1;10089:9;10085:17;10078:47;10142:131;10268:4;10142:131;:::i;:::-;10134:139;;9861:419;;;:::o;10286:180::-;10334:77;10331:1;10324:88;10431:4;10428:1;10421:15;10455:4;10452:1;10445:15;10472:305;10512:3;10531:20;10549:1;10531:20;:::i;:::-;10526:25;;10565:20;10583:1;10565:20;:::i;:::-;10560:25;;10719:1;10651:66;10647:74;10644:1;10641:81;10638:107;;;10725:18;;:::i;:::-;10638:107;10769:1;10766;10762:9;10755:16;;10472:305;;;;:::o;10783:442::-;10932:4;10970:2;10959:9;10955:18;10947:26;;10983:71;11051:1;11040:9;11036:17;11027:6;10983:71;:::i;:::-;11064:72;11132:2;11121:9;11117:18;11108:6;11064:72;:::i;:::-;11146;11214:2;11203:9;11199:18;11190:6;11146:72;:::i;:::-;10783:442;;;;;;:::o;11231:225::-;11371:34;11367:1;11359:6;11355:14;11348:58;11440:8;11435:2;11427:6;11423:15;11416:33;11231:225;:::o;11462:366::-;11604:3;11625:67;11689:2;11684:3;11625:67;:::i;:::-;11618:74;;11701:93;11790:3;11701:93;:::i;:::-;11819:2;11814:3;11810:12;11803:19;;11462:366;;;:::o;11834:419::-;12000:4;12038:2;12027:9;12023:18;12015:26;;12087:9;12081:4;12077:20;12073:1;12062:9;12058:17;12051:47;12115:131;12241:4;12115:131;:::i;:::-;12107:139;;11834:419;;;:::o;12259:179::-;12399:31;12395:1;12387:6;12383:14;12376:55;12259:179;:::o;12444:366::-;12586:3;12607:67;12671:2;12666:3;12607:67;:::i;:::-;12600:74;;12683:93;12772:3;12683:93;:::i;:::-;12801:2;12796:3;12792:12;12785:19;;12444:366;;;:::o;12816:419::-;12982:4;13020:2;13009:9;13005:18;12997:26;;13069:9;13063:4;13059:20;13055:1;13044:9;13040:17;13033:47;13097:131;13223:4;13097:131;:::i;:::-;13089:139;;12816:419;;;:::o;13241:147::-;13342:11;13379:3;13364:18;;13241:147;;;;:::o;13394:114::-;;:::o;13514:398::-;13673:3;13694:83;13775:1;13770:3;13694:83;:::i;:::-;13687:90;;13786:93;13875:3;13786:93;:::i;:::-;13904:1;13899:3;13895:11;13888:18;;13514:398;;;:::o;13918:379::-;14102:3;14124:147;14267:3;14124:147;:::i;:::-;14117:154;;14288:3;14281:10;;13918:379;;;:::o;14303:245::-;14443:34;14439:1;14431:6;14427:14;14420:58;14512:28;14507:2;14499:6;14495:15;14488:53;14303:245;:::o;14554:366::-;14696:3;14717:67;14781:2;14776:3;14717:67;:::i;:::-;14710:74;;14793:93;14882:3;14793:93;:::i;:::-;14911:2;14906:3;14902:12;14895:19;;14554:366;;;:::o;14926:419::-;15092:4;15130:2;15119:9;15115:18;15107:26;;15179:9;15173:4;15169:20;15165:1;15154:9;15150:17;15143:47;15207:131;15333:4;15207:131;:::i;:::-;15199:139;;14926:419;;;:::o;15351:170::-;15491:22;15487:1;15479:6;15475:14;15468:46;15351:170;:::o;15527:366::-;15669:3;15690:67;15754:2;15749:3;15690:67;:::i;:::-;15683:74;;15766:93;15855:3;15766:93;:::i;:::-;15884:2;15879:3;15875:12;15868:19;;15527:366;;;:::o;15899:419::-;16065:4;16103:2;16092:9;16088:18;16080:26;;16152:9;16146:4;16142:20;16138:1;16127:9;16123:17;16116:47;16180:131;16306:4;16180:131;:::i;:::-;16172:139;;15899:419;;;:::o;16324:442::-;16473:4;16511:2;16500:9;16496:18;16488:26;;16524:71;16592:1;16581:9;16577:17;16568:6;16524:71;:::i;:::-;16605:72;16673:2;16662:9;16658:18;16649:6;16605:72;:::i;:::-;16687;16755:2;16744:9;16740:18;16731:6;16687:72;:::i;:::-;16324:442;;;;;;:::o;16772:332::-;16893:4;16931:2;16920:9;16916:18;16908:26;;16944:71;17012:1;17001:9;16997:17;16988:6;16944:71;:::i;:::-;17025:72;17093:2;17082:9;17078:18;17069:6;17025:72;:::i;:::-;16772:332;;;;;:::o;17110:348::-;17150:7;17173:20;17191:1;17173:20;:::i;:::-;17168:25;;17207:20;17225:1;17207:20;:::i;:::-;17202:25;;17395:1;17327:66;17323:74;17320:1;17317:81;17312:1;17305:9;17298:17;17294:105;17291:131;;;17402:18;;:::i;:::-;17291:131;17450:1;17447;17443:9;17432:20;;17110:348;;;;:::o;17464:180::-;17512:77;17509:1;17502:88;17609:4;17606:1;17599:15;17633:4;17630:1;17623:15;17650:185;17690:1;17707:20;17725:1;17707:20;:::i;:::-;17702:25;;17741:20;17759:1;17741:20;:::i;:::-;17736:25;;17780:1;17770:35;;17785:18;;:::i;:::-;17770:35;17827:1;17824;17820:9;17815:14;;17650:185;;;;:::o;17841:116::-;17911:21;17926:5;17911:21;:::i;:::-;17904:5;17901:32;17891:60;;17947:1;17944;17937:12;17891:60;17841:116;:::o;17963:137::-;18017:5;18048:6;18042:13;18033:22;;18064:30;18088:5;18064:30;:::i;:::-;17963:137;;;;:::o;18106:345::-;18173:6;18222:2;18210:9;18201:7;18197:23;18193:32;18190:119;;;18228:79;;:::i;:::-;18190:119;18348:1;18373:61;18426:7;18417:6;18406:9;18402:22;18373:61;:::i;:::-;18363:71;;18319:125;18106:345;;;;:::o;18457:229::-;18597:34;18593:1;18585:6;18581:14;18574:58;18666:12;18661:2;18653:6;18649:15;18642:37;18457:229;:::o;18692:366::-;18834:3;18855:67;18919:2;18914:3;18855:67;:::i;:::-;18848:74;;18931:93;19020:3;18931:93;:::i;:::-;19049:2;19044:3;19040:12;19033:19;;18692:366;;;:::o;19064:419::-;19230:4;19268:2;19257:9;19253:18;19245:26;;19317:9;19311:4;19307:20;19303:1;19292:9;19288:17;19281:47;19345:131;19471:4;19345:131;:::i;:::-;19337:139;;19064:419;;;:::o;19489:225::-;19629:34;19625:1;19617:6;19613:14;19606:58;19698:8;19693:2;19685:6;19681:15;19674:33;19489:225;:::o;19720:366::-;19862:3;19883:67;19947:2;19942:3;19883:67;:::i;:::-;19876:74;;19959:93;20048:3;19959:93;:::i;:::-;20077:2;20072:3;20068:12;20061:19;;19720:366;;;:::o;20092:419::-;20258:4;20296:2;20285:9;20281:18;20273:26;;20345:9;20339:4;20335:20;20331:1;20320:9;20316:17;20309:47;20373:131;20499:4;20373:131;:::i;:::-;20365:139;;20092:419;;;:::o;20517:179::-;20657:31;20653:1;20645:6;20641:14;20634:55;20517:179;:::o;20702:366::-;20844:3;20865:67;20929:2;20924:3;20865:67;:::i;:::-;20858:74;;20941:93;21030:3;20941:93;:::i;:::-;21059:2;21054:3;21050:12;21043:19;;20702:366;;;:::o;21074:419::-;21240:4;21278:2;21267:9;21263:18;21255:26;;21327:9;21321:4;21317:20;21313:1;21302:9;21298:17;21291:47;21355:131;21481:4;21355:131;:::i;:::-;21347:139;;21074:419;;;:::o;21499:98::-;21550:6;21584:5;21578:12;21568:22;;21499:98;;;:::o;21603:307::-;21671:1;21681:113;21695:6;21692:1;21689:13;21681:113;;;21780:1;21775:3;21771:11;21765:18;21761:1;21756:3;21752:11;21745:39;21717:2;21714:1;21710:10;21705:15;;21681:113;;;21812:6;21809:1;21806:13;21803:101;;;21892:1;21883:6;21878:3;21874:16;21867:27;21803:101;21652:258;21603:307;;;:::o;21916:373::-;22020:3;22048:38;22080:5;22048:38;:::i;:::-;22102:88;22183:6;22178:3;22102:88;:::i;:::-;22095:95;;22199:52;22244:6;22239:3;22232:4;22225:5;22221:16;22199:52;:::i;:::-;22276:6;22271:3;22267:16;22260:23;;22024:265;21916:373;;;;:::o;22295:271::-;22425:3;22447:93;22536:3;22527:6;22447:93;:::i;:::-;22440:100;;22557:3;22550:10;;22295:271;;;;:::o;22572:99::-;22624:6;22658:5;22652:12;22642:22;;22572:99;;;:::o;22677:102::-;22718:6;22769:2;22765:7;22760:2;22753:5;22749:14;22745:28;22735:38;;22677:102;;;:::o;22785:364::-;22873:3;22901:39;22934:5;22901:39;:::i;:::-;22956:71;23020:6;23015:3;22956:71;:::i;:::-;22949:78;;23036:52;23081:6;23076:3;23069:4;23062:5;23058:16;23036:52;:::i;:::-;23113:29;23135:6;23113:29;:::i;:::-;23108:3;23104:39;23097:46;;22877:272;22785:364;;;;:::o;23155:313::-;23268:4;23306:2;23295:9;23291:18;23283:26;;23355:9;23349:4;23345:20;23341:1;23330:9;23326:17;23319:47;23383:78;23456:4;23447:6;23383:78;:::i;:::-;23375:86;;23155:313;;;;:::o
Swarm Source
ipfs://7c13a7a96a0d6bb1f3fde628cd418164bb26dd8b55c06d53048a51e0b63641c7
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ 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.