More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 38 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Update Token | 9621386 | 1823 days ago | IN | 0 ETH | 0.00008714 | ||||
Update Token | 9621385 | 1823 days ago | IN | 0 ETH | 0.00008705 | ||||
Update Token | 9621381 | 1823 days ago | IN | 0 ETH | 0.00006964 | ||||
Update Token | 9621381 | 1823 days ago | IN | 0 ETH | 0.00006971 | ||||
Update Token | 9621381 | 1823 days ago | IN | 0 ETH | 0.00006974 | ||||
Update Token | 9621381 | 1823 days ago | IN | 0 ETH | 0.00006974 | ||||
Update Token | 9621365 | 1823 days ago | IN | 0 ETH | 0.00006974 | ||||
Claim | 9621354 | 1823 days ago | IN | 0 ETH | 0.00022685 | ||||
Claim | 9621352 | 1823 days ago | IN | 0 ETH | 0.00022685 | ||||
Update Token | 9621348 | 1823 days ago | IN | 0 ETH | 0.000122 | ||||
Pause | 9609462 | 1825 days ago | IN | 0 ETH | 0.00035754 | ||||
Claim | 9607255 | 1825 days ago | IN | 0 ETH | 0.00006104 | ||||
Claim | 9607255 | 1825 days ago | IN | 0 ETH | 0.00002272 | ||||
Claim | 9607255 | 1825 days ago | IN | 0 ETH | 0.00002272 | ||||
Claim | 9607255 | 1825 days ago | IN | 0 ETH | 0.00004981 | ||||
Claim | 9607246 | 1825 days ago | IN | 0 ETH | 0.00014174 | ||||
Claim | 9607240 | 1825 days ago | IN | 0 ETH | 0.00014174 | ||||
Lock | 9591434 | 1827 days ago | IN | 0 ETH | 0.00041535 | ||||
Lock | 9570558 | 1831 days ago | IN | 0.025 ETH | 0.00038736 | ||||
Lock | 9557193 | 1833 days ago | IN | 0 ETH | 0.00062296 | ||||
Lock | 9438090 | 1851 days ago | IN | 0.15 ETH | 0.00142955 | ||||
Lock | 9417993 | 1854 days ago | IN | 0.03 ETH | 0.00038736 | ||||
Claim | 9392601 | 1858 days ago | IN | 0 ETH | 0.00013011 | ||||
Lock | 9392577 | 1858 days ago | IN | 0 ETH | 0.00055167 | ||||
Lock | 9385575 | 1859 days ago | IN | 0 ETH | 0.00063244 |
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x73866e69...8c8059E04 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
Lock
Compiler Version
v0.5.13+commit.5b0b510c
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2019-12-18 */ // File: openzeppelin-solidity/contracts/math/SafeMath.sol pragma solidity ^0.5.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @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) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @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 sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. * * _Available since v2.4.0._ */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @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) { // 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 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts 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. * * _Available since v2.4.0._ */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts 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 mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message 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. * * _Available since v2.4.0._ */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } // File: openzeppelin-solidity/contracts/GSN/Context.sol pragma solidity ^0.5.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 GSN 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. */ contract Context { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. constructor () internal { } // solhint-disable-previous-line no-empty-blocks function _msgSender() internal view returns (address payable) { return msg.sender; } function _msgData() internal view returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: openzeppelin-solidity/contracts/ownership/Ownable.sol pragma solidity ^0.5.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. * * 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. */ 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 () internal { _owner = _msgSender(); emit OwnershipTransferred(address(0), _owner); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(isOwner(), "Ownable: caller is not the owner"); _; } /** * @dev Returns true if the caller is the current owner. */ function isOwner() public view returns (bool) { return _msgSender() == _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 onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public onlyOwner { _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). */ function _transferOwnership(address newOwner) internal { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File: openzeppelin-solidity/contracts/token/ERC20/IERC20.sol pragma solidity ^0.5.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. Does not include * the optional functions; to access them see {ERC20Detailed}. */ 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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, 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-solidity/contracts/utils/Address.sol pragma solidity ^0.5.5; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * This test is non-exhaustive, and there may be false-negatives: during the * execution of a contract's constructor, its address will be reported as * not containing 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. */ function isContract(address account) internal view returns (bool) { // This method relies in extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != 0x0 && codehash != accountHash); } /** * @dev Converts an `address` into `address payable`. Note that this is * simply a type cast: the actual underlying value is not changed. * * _Available since v2.4.0._ */ function toPayable(address account) internal pure returns (address payable) { return address(uint160(account)); } /** * @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]. * * _Available since v2.4.0._ */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-call-value (bool success, ) = recipient.call.value(amount)(""); require(success, "Address: unable to send value, recipient may have reverted"); } } // File: openzeppelin-solidity/contracts/token/ERC20/SafeERC20.sol pragma solidity ^0.5.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 ERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using SafeMath for uint256; 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)); } 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' // solhint-disable-next-line max-line-length 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).add(value); callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero"); 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. // A Solidity high level call has three parts: // 1. The target address is checked to verify it contains contract code // 2. The call itself is made, and success asserted // 3. The return value is decoded, which in turn checks the size of the returned data. // solhint-disable-next-line max-line-length require(address(token).isContract(), "SafeERC20: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = address(token).call(data); require(success, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } // File: contracts/Lock.sol pragma solidity 0.5.13; /** * @dev This contract will hold user locked funds which will be unlocked after * lock-up period ends */ contract Lock is Ownable { using SafeERC20 for IERC20; using SafeMath for uint256; using Address for address; enum Status { _, OPEN, CLOSED } enum TokenStatus {_, ACTIVE, INACTIVE } struct Token { address tokenAddress; uint256 minAmount; bool emergencyUnlock; TokenStatus status; } Token[] private _tokens; //Keeps track of token index in above array mapping(address => uint256) private _tokenVsIndex; //Fee to be paid for each lock-up //In percentage //Ex. for 1% enter 100. For 1.25% enter 125 uint256 private _fee; //Wallet where fees will go address payable private _wallet; address constant private ETH_ADDRESS = address( 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE ); struct LockedAsset { address token;// Token address uint256 amount;// Amount locked uint256 startDate;// Start date. We can remove this later uint256 endDate; address payable beneficiary;// Beneficary who will receive funds Status status; } struct Airdrop { address destToken; //numerator and denominator will be used to calculate ratio //Example 1DAI will get you 4 SAI //which means numerator = 4 and denominator = 1 uint256 numerator; uint256 denominator; uint256 date;// Date at which time this entry was made //Only those locked asset which were locked before this date will be //given airdropped tokens } //Mapping of base token versus airdropped token mapping(address => Airdrop[]) private _baseTokenVsAirdrops; //Global lockedasset id. Also give total number of lock-ups made so far uint256 private _lockId; //list of all asset ids for a user/beneficiary mapping(address => uint256[]) private _userVsLockIds; mapping(uint256 => LockedAsset) private _idVsLockedAsset; bool private _paused; event TokenAdded(address indexed token); event TokenInactivated(address indexed token); event TokenActivated(address indexed token); event FeeChanged(uint256 fee); event WalletChanged(address indexed wallet); event AssetLocked( address indexed token, address indexed sender, address indexed beneficiary, uint256 id, uint256 amount, uint256 startDate, uint256 endDate ); event TokenUpdated( uint256 indexed id, address indexed token, uint256 minAmount, bool emergencyUnlock ); event Paused(); event Unpaused(); event AssetClaimed( uint256 indexed id, address indexed beneficiary, address indexed token ); event AirdropAdded( address indexed baseToken, address indexed destToken, uint256 airdropDate ); event TokensAirdropped( address indexed destToken, uint256 amount ); modifier tokenExist(address token) { require(_tokenVsIndex[token] > 0, "Lock: Token does not exist!!"); _; } modifier tokenDoesNotExist(address token) { require(_tokenVsIndex[token] == 0, "Lock: Token already exist!!"); _; } modifier canLockAsset(address token) { uint256 index = _tokenVsIndex[token]; require(index > 0, "Lock: Token does not exist!!"); require( _tokens[index.sub(1)].status == TokenStatus.ACTIVE, "Lock: Token not active!!" ); require( !_tokens[index.sub(1)].emergencyUnlock, "Lock: Token is in emergency unlock state!!" ); _; } modifier canClaim(uint256 id) { require(claimable(id), "Lock: Can't claim asset"); require( _idVsLockedAsset[id].beneficiary == msg.sender, "Lock: Unauthorized access!!" ); _; } /** * @dev Modifier to make a function callable only when the contract is not paused. */ modifier whenNotPaused() { require(!_paused, "Lock: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. */ modifier whenPaused() { require(_paused, "Lock: not paused"); _; } /** * @dev constructor * @param fee Fee to be paid for each lock-up * @param wallet Wallet address where fees will go * @param tokens List of tokens * @param minAmount Min lock-up amount for each token */ constructor( uint256 fee, address payable wallet, address[] memory tokens, uint256[] memory minAmount ) public { require( tokens.length == minAmount.length, "Lock: Length mismatch between token list and their minimum lock amount!!" ); require( wallet != address(0), "Lock: Please provide valid wallet address!!" ); _wallet = wallet; _fee = fee; for(uint256 i = 0; i<tokens.length; i = i.add(1)) { require( _tokenVsIndex[tokens[i]] == 0, "Lock: Token already exists" ); _tokens.push(Token({ tokenAddress: tokens[i], minAmount: minAmount[i], emergencyUnlock: false, status: TokenStatus.ACTIVE })); _tokenVsIndex[tokens[i]] = _tokens.length; emit TokenAdded(tokens[i]); } } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() external view returns (bool) { return _paused; } /** * @dev returns lock-up fee */ function getFee() external view returns(uint256) { return _fee; } /** * @dev returns the fee receiver wallet address */ function getWallet() external view returns(address) { return _wallet; } /** * @dev Returns total token count */ function getTokenCount() external view returns(uint256) { return _tokens.length; } /** * @dev Returns list of supported tokens * This will be a paginated method which will only send 15 tokens in one request * This is done to prevent infinite loops and overflow of gas limits * @param start start index for pagination * @param length Amount of tokens to fetch */ function getTokens(uint256 start, uint256 length) external view returns( address[] memory tokenAddresses, uint256[] memory minAmounts, bool[] memory emergencyUnlocks, TokenStatus[] memory statuses ) { tokenAddresses = new address[](length); minAmounts = new uint256[](length); emergencyUnlocks = new bool[](length); statuses = new TokenStatus[](length); require(start.add(length) <= _tokens.length, "Lock: Invalid input"); require(length > 0 && length <= 15, "Lock: Invalid length"); uint256 count = 0; for(uint256 i = start; i < start.add(length); i++) { tokenAddresses[count] = _tokens[i].tokenAddress; minAmounts[count] = _tokens[i].minAmount; emergencyUnlocks[count] = _tokens[i].emergencyUnlock; statuses[count] = _tokens[i].status; count = count.add(1); } return( tokenAddresses, minAmounts, emergencyUnlocks, statuses ); } /** * @dev Returns information about specific token * @dev tokenAddress Address of the token */ function getTokenInfo(address tokenAddress) external view returns( uint256 minAmount, bool emergencyUnlock, TokenStatus status ) { uint256 index = _tokenVsIndex[tokenAddress]; if(index > 0){ index = index.sub(1); Token memory token = _tokens[index]; return ( token.minAmount, token.emergencyUnlock, token.status ); } } /** * @dev Returns information about a locked asset * @param id Asset id */ function getLockedAsset(uint256 id) external view returns( address token, uint256 amount, uint256 startDate, uint256 endDate, address beneficiary, Status status ) { LockedAsset memory asset = _idVsLockedAsset[id]; token = asset.token; amount = asset.amount; startDate = asset.startDate; endDate = asset.endDate; beneficiary = asset.beneficiary; status = asset.status; return( token, amount, startDate, endDate, beneficiary, status ); } /** * @dev Returns all asset ids for a user * @param user Address of the user */ function getAssetIds( address user ) external view returns (uint256[] memory ids) { return _userVsLockIds[user]; } /** * @dev Returns airdrop info for a given token * @param token Token address */ function getAirdrops(address token) external view returns( address[] memory destTokens, uint256[] memory numerators, uint256[] memory denominators, uint256[] memory dates ) { uint256 length = _baseTokenVsAirdrops[token].length; destTokens = new address[](length); numerators = new uint256[](length); denominators = new uint256[](length); dates = new uint256[](length); //This loop can be very costly if there are very large number of airdrops for a token. //Which we presume will not be the case for(uint256 i = 0; i < length; i++){ Airdrop memory airdrop = _baseTokenVsAirdrops[token][i]; destTokens[i] = airdrop.destToken; numerators[i] = airdrop.numerator; denominators[i] = airdrop.denominator; dates[i] = airdrop.date; } return ( destTokens, numerators, denominators, dates ); } /** * @dev Called by an admin to pause, triggers stopped state. */ function pause() external onlyOwner whenNotPaused { _paused = true; emit Paused(); } /** * @dev Called by an admin to unpause, returns to normal state. */ function unpause() external onlyOwner whenPaused { _paused = false; emit Unpaused(); } /** * @dev Allows admin to set airdrop token for a given base token * @param baseToken Address of the base token * @param destToken Address of the airdropped token * @param numerator Numerator to calculate ratio * @param denominator Denominator to calculate ratio * @param date Date at which airdrop happened or will happen */ function setAirdrop( address baseToken, address destToken, uint256 numerator, uint256 denominator, uint256 date ) external onlyOwner tokenExist(baseToken) { require(destToken != address(0), "Lock: Invalid destination token!!"); require(numerator > 0, "Lock: Invalid numerator!!"); require(denominator > 0, "Lock: Invalid denominator!!"); require(isActive(baseToken), "Lock: Base token is not active!!"); _baseTokenVsAirdrops[baseToken].push(Airdrop({ destToken: destToken, numerator: numerator, denominator: denominator, date: date })); emit AirdropAdded( baseToken, destToken, date ); } /** * @dev Allows admin to update airdrop at given index * @param baseToken Base token address for which airdrop has to be updated * @param numerator New numerator * @param denominator New denominator * @param date New airdrop date * @param index Index at which this airdrop resides for the basetoken */ function updateAirdrop( address baseToken, uint256 numerator, uint256 denominator, uint256 date, uint256 index ) external onlyOwner { require( _baseTokenVsAirdrops[baseToken].length > index, "Lock: Invalid index value!!" ); require(numerator > 0, "Lock: Invalid numerator!!"); require(denominator > 0, "Lock: Invalid denominator!!"); Airdrop storage airdrop = _baseTokenVsAirdrops[baseToken][index]; airdrop.numerator = numerator; airdrop.denominator = denominator; airdrop.date = date; } /** * @dev Allows admin to set fee * @param fee New fee values */ function setFee(uint256 fee) external onlyOwner { _fee = fee; emit FeeChanged(fee); } /** * @dev Allows admin to set fee receiver wallet * @param wallet New wallet address */ function setWallet(address payable wallet) external onlyOwner { require( wallet != address(0), "Lock: Please provider valid wallet address!!" ); _wallet = wallet; emit WalletChanged(wallet); } /** * @dev Allows admin to update token info * @param tokenAddress Address of the token to be updated * @param minAmount Min amount of tokens required to lock * @param emergencyUnlock If token is in emergency unlock state */ function updateToken( address tokenAddress, uint256 minAmount, bool emergencyUnlock ) external onlyOwner tokenExist(tokenAddress) { uint256 index = _tokenVsIndex[tokenAddress].sub(1); Token storage token = _tokens[index]; token.minAmount = minAmount; token.emergencyUnlock = emergencyUnlock; emit TokenUpdated( index, tokenAddress, minAmount, emergencyUnlock ); } /** * @dev Allows admin to add new token to the list * @param token Address of the token * @param minAmount Minimum amount of tokens to lock for this token */ function addToken( address token, uint256 minAmount ) external onlyOwner tokenDoesNotExist(token) { _tokens.push(Token({ tokenAddress: token, minAmount: minAmount, emergencyUnlock: false, status: TokenStatus.ACTIVE })); _tokenVsIndex[token] = _tokens.length; emit TokenAdded(token); } /** * @dev Allows admin to inactivate token * @param token Address of the token to be inactivated */ function inactivateToken( address token ) external onlyOwner tokenExist(token) { uint256 index = _tokenVsIndex[token].sub(1); require( _tokens[index].status == TokenStatus.ACTIVE, "Lock: Token already inactive!!" ); _tokens[index].status = TokenStatus.INACTIVE; emit TokenInactivated(token); } /** * @dev Allows admin to activate any existing token * @param token Address of the token to be activated */ function activateToken( address token ) external onlyOwner tokenExist(token) { uint256 index = _tokenVsIndex[token].sub(1); require( _tokens[index].status == TokenStatus.INACTIVE, "Lock: Token already active!!" ); _tokens[index].status = TokenStatus.ACTIVE; emit TokenActivated(token); } /** * @dev Allows user to lock asset. In case of ERC-20 token the user will * first have to approve the contract to spend on his/her behalf * @param tokenAddress Address of the token to be locked * @param amount Amount of tokens to lock * @param duration Duration for which tokens to be locked. In seconds * @param beneficiary Address of the beneficiary */ function lock( address tokenAddress, uint256 amount, uint256 duration, address payable beneficiary ) external payable whenNotPaused canLockAsset(tokenAddress) { require( beneficiary != address(0), "Lock: Provide valid beneficiary address!!" ); Token memory token = _tokens[_tokenVsIndex[tokenAddress].sub(1)]; require( amount >= token.minAmount, "Lock: Please provide minimum amount of tokens!!" ); uint256 endDate = block.timestamp.add(duration); uint256 fee = amount.mul(_fee).div(10000); uint256 newAmount = amount.sub(fee); if(ETH_ADDRESS == tokenAddress) { _lockETH( newAmount, fee, endDate, beneficiary ); } else { _lockERC20( tokenAddress, newAmount, fee, endDate, beneficiary ); } emit AssetLocked( tokenAddress, msg.sender, beneficiary, _lockId, newAmount, block.timestamp, endDate ); } /** * @dev Allows beneficiary of locked asset to claim asset after lock-up period ends * @param id Id of the locked asset */ function claim(uint256 id) external canClaim(id) { LockedAsset memory lockedAsset = _idVsLockedAsset[id]; if(ETH_ADDRESS == lockedAsset.token) { _claimETH( id ); } else { _claimERC20( id ); } emit AssetClaimed( id, lockedAsset.beneficiary, lockedAsset.token ); } /** * @dev Returns whether given asset can be claimed or not * @param id id of an asset */ function claimable(uint256 id) public view returns(bool){ if( _idVsLockedAsset[id].status == Status.OPEN && ( _idVsLockedAsset[id].endDate <= block.timestamp || _tokens[_tokenVsIndex[_idVsLockedAsset[id].token].sub(1)].emergencyUnlock ) ) { return true; } return false; } /** * @dev Returns whether provided token is active or not * @param token Address of the token to be checked */ function isActive(address token) public view returns(bool) { uint256 index = _tokenVsIndex[token]; if(index > 0){ return (_tokens[index.sub(1)].status == TokenStatus.ACTIVE); } return false; } /** * @dev Helper method to lock ETH */ function _lockETH( uint256 amount, uint256 fee, uint256 endDate, address payable beneficiary ) private { //Transferring fee to the wallet (bool success,) = _wallet.call.value(fee)(""); require(success, "Lock: Transfer of fee failed"); _lockId = _lockId.add(1); _idVsLockedAsset[_lockId] = LockedAsset({ token: ETH_ADDRESS, amount: amount, startDate: block.timestamp, endDate: endDate, beneficiary: beneficiary, status: Status.OPEN }); _userVsLockIds[beneficiary].push(_lockId); } /** * @dev Helper method to lock ERC-20 tokens */ function _lockERC20( address token, uint256 amount, uint256 fee, uint256 endDate, address payable beneficiary ) private { //Transfer fee to the wallet IERC20(token).safeTransferFrom(msg.sender, _wallet, fee); //Transfer required amount of tokens to the contract from user balance IERC20(token).safeTransferFrom(msg.sender, address(this), amount); _lockId = _lockId.add(1); _idVsLockedAsset[_lockId] = LockedAsset({ token: token, amount: amount, startDate: block.timestamp, endDate: endDate, beneficiary: beneficiary, status: Status.OPEN }); _userVsLockIds[beneficiary].push(_lockId); } /** * @dev Helper method to claim ETH */ function _claimETH(uint256 id) private { LockedAsset storage asset = _idVsLockedAsset[id]; asset.status = Status.CLOSED; (bool success,) = msg.sender.call.value(asset.amount)(""); require(success, "Lock: Failed to transfer eth!!"); _claimAirdroppedTokens( asset.token, asset.startDate, asset.amount ); } /** * @dev Helper method to claim ERC-20 */ function _claimERC20(uint256 id) private { LockedAsset storage asset = _idVsLockedAsset[id]; asset.status = Status.CLOSED; IERC20(asset.token).safeTransfer(msg.sender, asset.amount); _claimAirdroppedTokens( asset.token, asset.startDate, asset.amount ); } /** * @dev Helper method to claim airdropped tokens * @param baseToken Base Token address * @param lockDate Date when base tokens were locked * @param amount Amount of base tokens locked */ function _claimAirdroppedTokens( address baseToken, uint256 lockDate, uint256 amount ) private { //This loop can be very costly if number of airdropped tokens //for base token is very large. But we assume that it is not going to be the case for(uint256 i = 0; i < _baseTokenVsAirdrops[baseToken].length; i++) { Airdrop memory airdrop = _baseTokenVsAirdrops[baseToken][i]; if(airdrop.date < lockDate || airdrop.date > block.timestamp) { return; } else { uint256 airdropAmount = amount.mul(airdrop.numerator).div(airdrop.denominator); IERC20(airdrop.destToken).safeTransfer(msg.sender, airdropAmount); emit TokensAirdropped(airdrop.destToken, airdropAmount); } } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"uint256","name":"fee","type":"uint256"},{"internalType":"address payable","name":"wallet","type":"address"},{"internalType":"address[]","name":"tokens","type":"address[]"},{"internalType":"uint256[]","name":"minAmount","type":"uint256[]"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"baseToken","type":"address"},{"indexed":true,"internalType":"address","name":"destToken","type":"address"},{"indexed":false,"internalType":"uint256","name":"airdropDate","type":"uint256"}],"name":"AirdropAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":true,"internalType":"address","name":"beneficiary","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"}],"name":"AssetClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"beneficiary","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"startDate","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"endDate","type":"uint256"}],"name":"AssetLocked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"fee","type":"uint256"}],"name":"FeeChanged","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":[],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token","type":"address"}],"name":"TokenActivated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token","type":"address"}],"name":"TokenAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token","type":"address"}],"name":"TokenInactivated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"minAmount","type":"uint256"},{"indexed":false,"internalType":"bool","name":"emergencyUnlock","type":"bool"}],"name":"TokenUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"destToken","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TokensAirdropped","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"wallet","type":"address"}],"name":"WalletChanged","type":"event"},{"constant":false,"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"activateToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"minAmount","type":"uint256"}],"name":"addToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"claim","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"claimable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"getAirdrops","outputs":[{"internalType":"address[]","name":"destTokens","type":"address[]"},{"internalType":"uint256[]","name":"numerators","type":"uint256[]"},{"internalType":"uint256[]","name":"denominators","type":"uint256[]"},{"internalType":"uint256[]","name":"dates","type":"uint256[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getAssetIds","outputs":[{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"getLockedAsset","outputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"startDate","type":"uint256"},{"internalType":"uint256","name":"endDate","type":"uint256"},{"internalType":"address","name":"beneficiary","type":"address"},{"internalType":"enum Lock.Status","name":"status","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getTokenCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"getTokenInfo","outputs":[{"internalType":"uint256","name":"minAmount","type":"uint256"},{"internalType":"bool","name":"emergencyUnlock","type":"bool"},{"internalType":"enum Lock.TokenStatus","name":"status","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"length","type":"uint256"}],"name":"getTokens","outputs":[{"internalType":"address[]","name":"tokenAddresses","type":"address[]"},{"internalType":"uint256[]","name":"minAmounts","type":"uint256[]"},{"internalType":"bool[]","name":"emergencyUnlocks","type":"bool[]"},{"internalType":"enum Lock.TokenStatus[]","name":"statuses","type":"uint8[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"inactivateToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"duration","type":"uint256"},{"internalType":"address payable","name":"beneficiary","type":"address"}],"name":"lock","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"baseToken","type":"address"},{"internalType":"address","name":"destToken","type":"address"},{"internalType":"uint256","name":"numerator","type":"uint256"},{"internalType":"uint256","name":"denominator","type":"uint256"},{"internalType":"uint256","name":"date","type":"uint256"}],"name":"setAirdrop","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"fee","type":"uint256"}],"name":"setFee","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address payable","name":"wallet","type":"address"}],"name":"setWallet","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"baseToken","type":"address"},{"internalType":"uint256","name":"numerator","type":"uint256"},{"internalType":"uint256","name":"denominator","type":"uint256"},{"internalType":"uint256","name":"date","type":"uint256"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"updateAirdrop","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"minAmount","type":"uint256"},{"internalType":"bool","name":"emergencyUnlock","type":"bool"}],"name":"updateToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]
Deployed Bytecode
0x60806040526004361061019c5760003560e01c806369fe0e2d116100ec578063af81c5b91161008a578063d1d58b2511610064578063d1d58b2514610a80578063deaa59df14610ad3578063e92f093514610b24578063f2fde38b14610ca25761019c565b8063af81c5b914610993578063ced72f87146109ee578063cedfbff214610a195761019c565b80638456cb59116100c65780638456cb591461088d5780638da5cb5b146108a45780638f32d59b146108fb5780639f8a13d71461092a5761019c565b806369fe0e2d14610810578063715018a61461084b57806378a89567146108625761019c565b8063379607f5116101595780634c7fafc0116101335780634c7fafc0146106015780634f4438501461069057806355c4d48f146107095780635c975abb146107e15761019c565b8063379607f51461043d5780633f4ba83a14610478578063494cfc6c1461048f5761019c565b80630852c9ea146101a15780630d1ce2d214610219578063132996041461026a5780631f69565f146102c15780632b255762146103465780632e131cf9146103ec575b600080fd5b610217600480360360808110156101b757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610cf3565b005b34801561022557600080fd5b506102686004803603602081101561023c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611301565b005b34801561027657600080fd5b5061027f6115c5565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156102cd57600080fd5b50610310600480360360208110156102e457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506115ef565b604051808481526020018315151515815260200182600281111561033057fe5b60ff168152602001935050505060405180910390f35b34801561035257600080fd5b506103956004803603602081101561036957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611753565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b838110156103d85780820151818401526020810190506103bd565b505050509050019250505060405180910390f35b3480156103f857600080fd5b5061043b6004803603602081101561040f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506117ea565b005b34801561044957600080fd5b506104766004803603602081101561046057600080fd5b8101908080359060200190929190505050611ab0565b005b34801561048457600080fd5b5061048d611dee565b005b34801561049b57600080fd5b506104d2600480360360408110156104b257600080fd5b810190808035906020019092919080359060200190929190505050611f33565b6040518080602001806020018060200180602001858103855289818151815260200191508051906020019060200280838360005b83811015610521578082015181840152602081019050610506565b50505050905001858103845288818151815260200191508051906020019060200280838360005b83811015610563578082015181840152602081019050610548565b50505050905001858103835287818151815260200191508051906020019060200280838360005b838110156105a557808201518184015260208101905061058a565b50505050905001858103825286818151815260200191508051906020019060200280838360005b838110156105e75780820151818401526020810190506105cc565b505050509050019850505050505050505060405180910390f35b34801561060d57600080fd5b5061068e600480360360a081101561062457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190929190803590602001909291905050506122d2565b005b34801561069c57600080fd5b50610707600480360360a08110156106b357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803590602001909291908035906020019092919080359060200190929190505050612765565b005b34801561071557600080fd5b506107426004803603602081101561072c57600080fd5b8101908080359060200190929190505050612a01565b604051808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018260028111156107c857fe5b60ff168152602001965050505050505060405180910390f35b3480156107ed57600080fd5b506107f6612b6f565b604051808215151515815260200191505060405180910390f35b34801561081c57600080fd5b506108496004803603602081101561083357600080fd5b8101908080359060200190929190505050612b86565b005b34801561085757600080fd5b50610860612c41565b005b34801561086e57600080fd5b50610877612d7a565b6040518082815260200191505060405180910390f35b34801561089957600080fd5b506108a2612d87565b005b3480156108b057600080fd5b506108b9612ecd565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561090757600080fd5b50610910612ef6565b604051808215151515815260200191505060405180910390f35b34801561093657600080fd5b506109796004803603602081101561094d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612f54565b604051808215151515815260200191505060405180910390f35b34801561099f57600080fd5b506109ec600480360360408110156109b657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061300d565b005b3480156109fa57600080fd5b50610a036132de565b6040518082815260200191505060405180910390f35b348015610a2557600080fd5b50610a7e60048036036060811015610a3c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035151590602001909291905050506132e8565b005b348015610a8c57600080fd5b50610ab960048036036020811015610aa357600080fd5b8101908080359060200190929190505050613516565b604051808215151515815260200191505060405180910390f35b348015610adf57600080fd5b50610b2260048036036020811015610af657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061364a565b005b348015610b3057600080fd5b50610b7360048036036020811015610b4757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506137d1565b6040518080602001806020018060200180602001858103855289818151815260200191508051906020019060200280838360005b83811015610bc2578082015181840152602081019050610ba7565b50505050905001858103845288818151815260200191508051906020019060200280838360005b83811015610c04578082015181840152602081019050610be9565b50505050905001858103835287818151815260200191508051906020019060200280838360005b83811015610c46578082015181840152602081019050610c2b565b50505050905001858103825286818151815260200191508051906020019060200280838360005b83811015610c88578082015181840152602081019050610c6d565b505050509050019850505050505050505060405180910390f35b348015610cae57600080fd5b50610cf160048036036020811015610cc557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613a9a565b005b600960009054906101000a900460ff1615610d76576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600c8152602001807f4c6f636b3a20706175736564000000000000000000000000000000000000000081525060200191505060405180910390fd5b836000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060008111610e31576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4c6f636b3a20546f6b656e20646f6573206e6f7420657869737421210000000081525060200191505060405180910390fd5b60016002811115610e3e57fe5b6001610e54600184613b2090919063ffffffff16565b81548110610e5e57fe5b906000526020600020906003020160020160019054906101000a900460ff166002811115610e8857fe5b14610efb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f4c6f636b3a20546f6b656e206e6f74206163746976652121000000000000000081525060200191505060405180910390fd5b6001610f11600183613b2090919063ffffffff16565b81548110610f1b57fe5b906000526020600020906003020160020160009054906101000a900460ff1615610f90576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614ed6602a913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611016576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180614f716029913960400191505060405180910390fd5b61101e614d8d565b60016110736001600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b8154811061107d57fe5b90600052602060002090600302016040518060800160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001600182015481526020016002820160009054906101000a900460ff161515151581526020016002820160019054906101000a900460ff16600281111561112f57fe5b600281111561113a57fe5b815250509050806020015186101561119d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180614f21602f913960400191505060405180910390fd5b60006111b28642613b6a90919063ffffffff16565b905060006111df6127106111d16003548b613bf290919063ffffffff16565b613c7890919063ffffffff16565b905060006111f6828a613b2090919063ffffffff16565b90508973ffffffffffffffffffffffffffffffffffffffff1673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee73ffffffffffffffffffffffffffffffffffffffff1614156112515761124c8183858a613cc2565b61125f565b61125e8a8284868b613fb4565b5b8673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff168b73ffffffffffffffffffffffffffffffffffffffff167f0c57f44edfa69957173c5d3f3eeda99be56e9eeba45f68863cc8489eb9429a6d6006548542896040518085815260200184815260200183815260200182815260200194505050505060405180910390a450505050505050505050565b611309612ef6565b61137b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b806000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611431576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4c6f636b3a20546f6b656e20646f6573206e6f7420657869737421210000000081525060200191505060405180910390fd5b60006114866001600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b905060028081111561149457fe5b600182815481106114a157fe5b906000526020600020906003020160020160019054906101000a900460ff1660028111156114cb57fe5b1461153e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4c6f636b3a20546f6b656e20616c72656164792061637469766521210000000081525060200191505060405180910390fd5b600180828154811061154c57fe5b906000526020600020906003020160020160016101000a81548160ff0219169083600281111561157857fe5b02179055508273ffffffffffffffffffffffffffffffffffffffff167f8745618cc29c4ac0cb23d9a7a8d5663f9739c8171e613d3c755e23307f74c10660405160405180910390a2505050565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080600080600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600081111561174a57611654600182613b2090919063ffffffff16565b905061165e614d8d565b6001828154811061166b57fe5b90600052602060002090600302016040518060800160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001600182015481526020016002820160009054906101000a900460ff161515151581526020016002820160019054906101000a900460ff16600281111561171d57fe5b600281111561172857fe5b815250509050806020015181604001518260600151945094509450505061174c565b505b9193909250565b6060600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054806020026020016040519081016040528092919081815260200182805480156117de57602002820191906000526020600020905b8154815260200190600101908083116117ca575b50505050509050919050565b6117f2612ef6565b611864576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b806000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541161191a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4c6f636b3a20546f6b656e20646f6573206e6f7420657869737421210000000081525060200191505060405180910390fd5b600061196f6001600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b90506001600281111561197e57fe5b6001828154811061198b57fe5b906000526020600020906003020160020160019054906101000a900460ff1660028111156119b557fe5b14611a28576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f4c6f636b3a20546f6b656e20616c726561647920696e6163746976652121000081525060200191505060405180910390fd5b600260018281548110611a3757fe5b906000526020600020906003020160020160016101000a81548160ff02191690836002811115611a6357fe5b02179055508273ffffffffffffffffffffffffffffffffffffffff167f65aac865e0d58610ea97c315e01d54aefcc67970686385e918d4b536bf95b83060405160405180910390a2505050565b80611aba81613516565b611b2c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f4c6f636b3a2043616e277420636c61696d20617373657400000000000000000081525060200191505060405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166008600083815260200190815260200160002060040160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c03576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4c6f636b3a20556e617574686f72697a6564206163636573732121000000000081525060200191505060405180910390fd5b611c0b614dd8565b600860008481526020019081526020016000206040518060c00160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016001820154815260200160028201548152602001600382015481526020016004820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016004820160149054906101000a900460ff166002811115611d1157fe5b6002811115611d1c57fe5b815250509050806000015173ffffffffffffffffffffffffffffffffffffffff1673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee73ffffffffffffffffffffffffffffffffffffffff161415611d7c57611d7783614210565b611d86565b611d8583614369565b5b806000015173ffffffffffffffffffffffffffffffffffffffff16816080015173ffffffffffffffffffffffffffffffffffffffff16847f0d6c42a482d45488f8ddf865e738e739a1666783d6477c6874658f138923622260405160405180910390a4505050565b611df6612ef6565b611e68576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600960009054906101000a900460ff16611eea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f4c6f636b3a206e6f74207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6000600960006101000a81548160ff0219169083151502179055507fa45f47fdea8a1efdd9029a5691c7f759c32b7c698632b563573e155625d1693360405160405180910390a1565b60608060608084604051908082528060200260200182016040528015611f685781602001602082028038833980820191505090505b50935084604051908082528060200260200182016040528015611f9a5781602001602082028038833980820191505090505b50925084604051908082528060200260200182016040528015611fcc5781602001602082028038833980820191505090505b50915084604051908082528060200260200182016040528015611ffe5781602001602082028038833980820191505090505b50905060018054905061201a8688613b6a90919063ffffffff16565b111561208e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f4c6f636b3a20496e76616c696420696e7075740000000000000000000000000081525060200191505060405180910390fd5b60008511801561209f5750600f8511155b612111576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f4c6f636b3a20496e76616c6964206c656e67746800000000000000000000000081525060200191505060405180910390fd5b600080905060008790505b61212f8789613b6a90919063ffffffff16565b8110156122bb576001818154811061214357fe5b906000526020600020906003020160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1686838151811061218157fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600181815481106121c857fe5b9060005260206000209060030201600101548583815181106121e657fe5b602002602001018181525050600181815481106121ff57fe5b906000526020600020906003020160020160009054906101000a900460ff1684838151811061222a57fe5b6020026020010190151590811515815250506001818154811061224957fe5b906000526020600020906003020160020160019054906101000a900460ff1683838151811061227457fe5b6020026020010190600281111561228757fe5b9081600281111561229457fe5b815250506122ac600183613b6a90919063ffffffff16565b9150808060010191505061211c565b508484848494509450945094505092959194509250565b6122da612ef6565b61234c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b846000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411612402576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4c6f636b3a20546f6b656e20646f6573206e6f7420657869737421210000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612488576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180614f006021913960400191505060405180910390fd5b600084116124fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4c6f636b3a20496e76616c6964206e756d657261746f7221210000000000000081525060200191505060405180910390fd5b60008311612574576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4c6f636b3a20496e76616c69642064656e6f6d696e61746f722121000000000081525060200191505060405180910390fd5b61257d86612f54565b6125ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4c6f636b3a204261736520746f6b656e206973206e6f7420616374697665212181525060200191505060405180910390fd5b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060405180608001604052808773ffffffffffffffffffffffffffffffffffffffff168152602001868152602001858152602001848152509080600181540180825580915050906001820390600052602060002090600402016000909192909190915060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151816001015560408201518160020155606082015181600301555050508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167f845d6913bf4617ae8cecd5f26b3875caab9e3cd7c82c584b87d0dc8c0e61d98b846040518082815260200191505060405180910390a3505050505050565b61276d612ef6565b6127df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905011612896576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4c6f636b3a20496e76616c696420696e6465782076616c75652121000000000081525060200191505060405180910390fd5b6000841161290c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4c6f636b3a20496e76616c6964206e756d657261746f7221210000000000000081525060200191505060405180910390fd5b60008311612982576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4c6f636b3a20496e76616c69642064656e6f6d696e61746f722121000000000081525060200191505060405180910390fd5b6000600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002082815481106129ce57fe5b90600052602060002090600402019050848160010181905550838160020181905550828160030181905550505050505050565b600080600080600080612a12614dd8565b600860008981526020019081526020016000206040518060c00160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016001820154815260200160028201548152602001600382015481526020016004820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016004820160149054906101000a900460ff166002811115612b1857fe5b6002811115612b2357fe5b81525050905080600001519650806020015195508060400151945080606001519350806080015192508060a0015191508686868686869650965096509650965096505091939550919395565b6000600960009054906101000a900460ff16905090565b612b8e612ef6565b612c00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b806003819055507f6bbc57480a46553fa4d156ce702beef5f3ad66303b0ed1a5d4cb44966c6584c3816040518082815260200191505060405180910390a150565b612c49612ef6565b612cbb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600180549050905090565b612d8f612ef6565b612e01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600960009054906101000a900460ff1615612e84576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600c8152602001807f4c6f636b3a20706175736564000000000000000000000000000000000000000081525060200191505060405180910390fd5b6001600960006101000a81548160ff0219169083151502179055507f9e87fac88ff661f02d44f95383c817fece4bce600a3dab7a54406878b965e75260405160405180910390a1565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612f38614434565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b600080600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060008111156130025760016002811115612faf57fe5b6001612fc5600184613b2090919063ffffffff16565b81548110612fcf57fe5b906000526020600020906003020160020160019054906101000a900460ff166002811115612ff957fe5b14915050613008565b60009150505b919050565b613015612ef6565b613087576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b816000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541461313d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4c6f636b3a20546f6b656e20616c72656164792065786973742121000000000081525060200191505060405180910390fd5b600160405180608001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020018481526020016000151581526020016001600281111561318257fe5b8152509080600181540180825580915050906001820390600052602060002090600302016000909192909190915060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151816001015560408201518160020160006101000a81548160ff02191690831515021790555060608201518160020160016101000a81548160ff0219169083600281111561324557fe5b0217905550505050600180549050600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff167f784c8f4dbf0ffedd6e72c76501c545a70f8b203b30a26ce542bf92ba87c248a460405160405180910390a2505050565b6000600354905090565b6132f0612ef6565b613362576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b826000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411613418576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4c6f636b3a20546f6b656e20646f6573206e6f7420657869737421210000000081525060200191505060405180910390fd5b600061346d6001600260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b905060006001828154811061347e57fe5b90600052602060002090600302019050848160010181905550838160020160006101000a81548160ff0219169083151502179055508573ffffffffffffffffffffffffffffffffffffffff16827fa4fb324f4229a6050c901024578545ce049bd8f2ca14ba283822ba4f54c2ba37878760405180838152602001821515151581526020019250505060405180910390a3505050505050565b60006001600281111561352557fe5b6008600084815260200190815260200160002060040160149054906101000a900460ff16600281111561355457fe5b1480156136325750426008600084815260200190815260200160002060030154111580613631575060016136076001600260006008600088815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b8154811061361157fe5b906000526020600020906003020160020160009054906101000a900460ff165b5b156136405760019050613645565b600090505b919050565b613652612ef6565b6136c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561374a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614e84602c913960400191505060405180910390fd5b80600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f3ce716f94fe275e52428cbf6b7f388e5a65976d4edabc34355a77f5e89655bdc60405160405180910390a250565b6060806060806000600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905090508060405190808252806020026020018201604052801561384d5781602001602082028038833980820191505090505b5094508060405190808252806020026020018201604052801561387f5781602001602082028038833980820191505090505b509350806040519080825280602002602001820160405280156138b15781602001602082028038833980820191505090505b509250806040519080825280602002602001820160405280156138e35781602001602082028038833980820191505090505b50915060008090505b81811015613a85576138fc614e45565b600560008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020828154811061394657fe5b90600052602060002090600402016040518060800160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016001820154815260200160028201548152602001600382015481525050905080600001518783815181106139e657fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508060200151868381518110613a3157fe5b6020026020010181815250508060400151858381518110613a4e57fe5b6020026020010181815250508060600151848381518110613a6b57fe5b6020026020010181815250505080806001019150506138ec565b50848484849450945094509450509193509193565b613aa2612ef6565b613b14576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b613b1d8161443c565b50565b6000613b6283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250614580565b905092915050565b600080828401905083811015613be8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600080831415613c055760009050613c72565b6000828402905082848281613c1657fe5b0414613c6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180614f506021913960400191505060405180910390fd5b809150505b92915050565b6000613cba83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614640565b905092915050565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168460405180600001905060006040518083038185875af1925050503d8060008114613d44576040519150601f19603f3d011682016040523d82523d6000602084013e613d49565b606091505b5050905080613dc0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4c6f636b3a205472616e73666572206f6620666565206661696c65640000000081525060200191505060405180910390fd5b613dd66001600654613b6a90919063ffffffff16565b6006819055506040518060c0016040528073eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee73ffffffffffffffffffffffffffffffffffffffff1681526020018681526020014281526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200160016002811115613e5257fe5b81525060086000600654815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160010155604082015181600201556060820151816003015560808201518160040160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060a08201518160040160146101000a81548160ff02191690836002811115613f3a57fe5b0217905550905050600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060065490806001815401808255809150509060018203906000526020600020016000909192909190915055505050505050565b61400333600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16858873ffffffffffffffffffffffffffffffffffffffff16614706909392919063ffffffff16565b6140303330868873ffffffffffffffffffffffffffffffffffffffff16614706909392919063ffffffff16565b6140466001600654613b6a90919063ffffffff16565b6006819055506040518060c001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020018581526020014281526020018381526020018273ffffffffffffffffffffffffffffffffffffffff168152602001600160028111156140ae57fe5b81525060086000600654815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160010155604082015181600201556060820151816003015560808201518160040160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060a08201518160040160146101000a81548160ff0219169083600281111561419657fe5b0217905550905050600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060065490806001815401808255809150509060018203906000526020600020016000909192909190915055505050505050565b600060086000838152602001908152602001600020905060028160040160146101000a81548160ff0219169083600281111561424857fe5b021790555060003373ffffffffffffffffffffffffffffffffffffffff16826001015460405180600001905060006040518083038185875af1925050503d80600081146142b1576040519150601f19603f3d011682016040523d82523d6000602084013e6142b6565b606091505b505090508061432d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f4c6f636b3a204661696c656420746f207472616e73666572206574682121000081525060200191505060405180910390fd5b6143648260000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168360020154846001015461480c565b505050565b600060086000838152602001908152602001600020905060028160040160146101000a81548160ff021916908360028111156143a157fe5b02179055506143f93382600101548360000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16614a269092919063ffffffff16565b6144308160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168260020154836001015461480c565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156144c2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180614eb06026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600083831115829061462d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156145f25780820151818401526020810190506145d7565b50505050905090810190601f16801561461f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080831182906146ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156146b1578082015181840152602081019050614696565b50505050905090810190601f1680156146de5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816146f857fe5b049050809150509392505050565b614806848573ffffffffffffffffffffffffffffffffffffffff166323b872dd905060e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050614af7565b50505050565b60008090505b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050811015614a1f57614864614e45565b600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002082815481106148ae57fe5b90600052602060002090600402016040518060800160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016001820154815260200160028201548152602001600382015481525050905083816060015110806149525750428160600151115b1561495e575050614a21565b600061498d826040015161497f846020015187613bf290919063ffffffff16565b613c7890919063ffffffff16565b90506149be3382846000015173ffffffffffffffffffffffffffffffffffffffff16614a269092919063ffffffff16565b816000015173ffffffffffffffffffffffffffffffffffffffff167fb82d2a7de6e3c04c554cd659f5f2b8d49c0131c0363c91a4ccef6756d1602990826040518082815260200191505060405180910390a250508080600101915050614812565b505b505050565b614af2838473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb905060e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050614af7565b505050565b614b168273ffffffffffffffffffffffffffffffffffffffff16614d42565b614b88576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e74726163740081525060200191505060405180910390fd5b600060608373ffffffffffffffffffffffffffffffffffffffff16836040518082805190602001908083835b60208310614bd75780518252602082019150602081019050602083039250614bb4565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114614c39576040519150601f19603f3d011682016040523d82523d6000602084013e614c3e565b606091505b509150915081614cb6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c656481525060200191505060405180910390fd5b600081511115614d3c57808060200190516020811015614cd557600080fd5b8101908080519060200190929190505050614d3b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614f9a602a913960400191505060405180910390fd5b5b50505050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f91506000801b8214158015614d845750808214155b92505050919050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff1681526020016000815260200160001515815260200160006002811115614dd257fe5b81525090565b6040518060c00160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600081526020016000815260200160008152602001600073ffffffffffffffffffffffffffffffffffffffff16815260200160006002811115614e3f57fe5b81525090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600081526020016000815260200160008152509056fe4c6f636b3a20506c656173652070726f76696465722076616c69642077616c6c6574206164647265737321214f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734c6f636b3a20546f6b656e20697320696e20656d657267656e637920756e6c6f636b20737461746521214c6f636b3a20496e76616c69642064657374696e6174696f6e20746f6b656e21214c6f636b3a20506c656173652070726f76696465206d696e696d756d20616d6f756e74206f6620746f6b656e732121536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774c6f636b3a2050726f766964652076616c69642062656e6566696369617279206164647265737321215361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a265627a7a7231582056c27d87f1a1d97209238eecec08484027f09171176bd0661f79ca010358946264736f6c634300050d0032
Deployed Bytecode Sourcemap
19235:23329:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36038:1368;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;36038:1368:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;35218:415;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35218:415:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;35218:415:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;25371:85;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25371:85:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;27161:492;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27161:492:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;27161:492:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28531:174;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28531:174:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;28531:174:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;28531:174:0;;;;;;;;;;;;;;;;;34659:421;;8:9:-1;5:2;;;30:1;27;20:12;5:2;34659:421:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;34659:421:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;37559:459;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37559:459:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;37559:459:0;;;;;;;;;;;;;;;;;:::i;:::-;;30166:109;;8:9:-1;5:2;;;30:1;27;20:12;5:2;30166:109:0;;;:::i;:::-;;25937:1100;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25937:1100:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;25937:1100:0;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;25937:1100:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;25937:1100:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;25937:1100:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;25937:1100:0;;;;;;;;;;;;;;;;;;;;;;;30650:841;;8:9:-1;5:2;;;30:1;27;20:12;5:2;30650:841:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;30650:841:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;31843:666;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31843:666:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;31843:666:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27757:665;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27757:665:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;27757:665:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25078:80;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25078:80:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;32605:108;;8:9:-1;5:2;;;30:1;27;20:12;5:2;32605:108:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;32605:108:0;;;;;;;;;;;;;;;;;:::i;:::-;;8454:140;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8454:140:0;;;:::i;:::-;;25519:96;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25519:96:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29966:107;;8:9:-1;5:2;;;30:1;27;20:12;5:2;29966:107:0;;;:::i;:::-;;7643:79;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7643:79:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;8009:94;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8009:94:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;38686:248;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38686:248:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;38686:248:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;34094:434;;8:9:-1;5:2;;;30:1;27;20:12;5:2;34094:434:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;34094:434:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;25215:79;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25215:79:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33354:548;;8:9:-1;5:2;;;30:1;27;20:12;5:2;33354:548:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;33354:548:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;38137:409;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38137:409:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;38137:409:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;32830:261;;8:9:-1;5:2;;;30:1;27;20:12;5:2;32830:261:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;32830:261:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;28815:1061;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28815:1061:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;28815:1061:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;28815:1061:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;28815:1061:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;28815:1061:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;28815:1061:0;;;;;;;;;;;;;;;;;;;;;;;8749:109;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8749:109:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;8749:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;36038:1368;23449:7;;;;;;;;;;;23448:8;23440:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36260:12;22637:13;22653;:20;22667:5;22653:20;;;;;;;;;;;;;;;;22637:36;;22702:1;22694:5;:9;22686:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22803:18;22771:50;;;;;;;;:7;22779:12;22789:1;22779:5;:9;;:12;;;;:::i;:::-;22771:21;;;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;:50;;;;;;;;;22749:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22909:7;22917:12;22927:1;22917:5;:9;;:12;;;;:::i;:::-;22909:21;;;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;22908:38;22886:130;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36335:1;36312:25;;:11;:25;;;;36290:116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36419:18;;:::i;:::-;36440:7;36448:34;36480:1;36448:13;:27;36462:12;36448:27;;;;;;;;;;;;;;;;:31;;:34;;;;:::i;:::-;36440:43;;;;;;;;;;;;;;;;;;36419:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36528:5;:15;;;36518:6;:25;;36496:122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36631:15;36649:29;36669:8;36649:15;:19;;:29;;;;:::i;:::-;36631:47;;36689:11;36703:27;36724:5;36703:16;36714:4;;36703:6;:10;;:16;;;;:::i;:::-;:20;;:27;;;;:::i;:::-;36689:41;;36741:17;36761:15;36772:3;36761:6;:10;;:15;;;;:::i;:::-;36741:35;;36807:12;36792:27;;20006:42;36792:27;;;36789:394;;;36836:129;36863:9;36891:3;36913:7;36939:11;36836:8;:129::i;:::-;36789:394;;;37009:162;37038:12;37069:9;37097:3;37119:7;37145:11;37009:10;:162::i;:::-;36789:394;37278:11;37200:198;;37253:10;37200:198;;37226:12;37200:198;;;37304:7;;37326:9;37350:15;37380:7;37200:198;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23027:1;;;;23484;;36038:1368;;;;:::o;35218:415::-;7855:9;:7;:9::i;:::-;7847:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35329:5;22381:1;22358:13;:20;22372:5;22358:20;;;;;;;;;;;;;;;;:24;22350:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35352:13;35368:27;35393:1;35368:13;:20;35382:5;35368:20;;;;;;;;;;;;;;;;:24;;:27;;;;:::i;:::-;35352:43;;35455:20;35430:45;;;;;;;;:7;35438:5;35430:14;;;;;;;;;;;;;;;;;;:21;;;;;;;;;;;;:45;;;;;;;;;35408:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35568:18;35544:7;35552:5;35544:14;;;;;;;;;;;;;;;;;;:21;;;:42;;;;;;;;;;;;;;;;;;;;;;;;35619:5;35604:21;;;;;;;;;;;;22426:1;7912;35218:415;:::o;25371:85::-;25414:7;25441;;;;;;;;;;;25434:14;;25371:85;:::o;27161:492::-;27237:17;27265:20;27296:18;27338:13;27354;:27;27368:12;27354:27;;;;;;;;;;;;;;;;27338:43;;27405:1;27397:5;:9;27394:252;;;27430:12;27440:1;27430:5;:9;;:12;;;;:::i;:::-;27422:20;;27457:18;;:::i;:::-;27478:7;27486:5;27478:14;;;;;;;;;;;;;;;;;;27457:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27533:5;:15;;;27567:5;:21;;;27607:5;:12;;;27507:127;;;;;;;;;;27394:252;27161:492;;;;;;;:::o;28531:174::-;28632:20;28677:14;:20;28692:4;28677:20;;;;;;;;;;;;;;;28670:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28531:174;;;:::o;34659:421::-;7855:9;:7;:9::i;:::-;7847:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34772:5;22381:1;22358:13;:20;22372:5;22358:20;;;;;;;;;;;;;;;;:24;22350:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34795:13;34811:27;34836:1;34811:13;:20;34825:5;34811:20;;;;;;;;;;;;;;;;:24;;:27;;;;:::i;:::-;34795:43;;34898:18;34873:43;;;;;;;;:7;34881:5;34873:14;;;;;;;;;;;;;;;;;;:21;;;;;;;;;;;;:43;;;;;;;;;34851:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35011:20;34987:7;34995:5;34987:14;;;;;;;;;;;;;;;;;;:21;;;:44;;;;;;;;;;;;;;;;;;;;;;;;35066:5;35049:23;;;;;;;;;;;;22426:1;7912;34659:421;:::o;37559:459::-;37604:2;23095:13;23105:2;23095:9;:13::i;:::-;23087:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23207:10;23171:46;;:16;:20;23188:2;23171:20;;;;;;;;;;;:32;;;;;;;;;;;;:46;;;23149:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37619:30;;:::i;:::-;37652:16;:20;37669:2;37652:20;;;;;;;;;;;37619:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37701:11;:17;;;37686:32;;20006:42;37686:32;;;37683:200;;;37735:45;37763:2;37735:9;:45::i;:::-;37683:200;;;37824:47;37854:2;37824:11;:47::i;:::-;37683:200;37982:11;:17;;;37900:110;;37944:11;:23;;;37900:110;;37927:2;37900:110;;;;;;;;;;23283:1;37559:459;;:::o;30166:109::-;7855:9;:7;:9::i;:::-;7847:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23642:7;;;;;;;;;;;23634:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30236:5;30226:7;;:15;;;;;;;;;;;;;;;;;;30257:10;;;;;;;;;;30166:109::o;25937:1100::-;26019:31;26061:27;26099:30;26140:29;26224:6;26210:21;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;117:4;105:10;97:6;88:34;148:4;140:6;136:17;126:27;;0:157;26210:21:0;;;;26193:38;;26269:6;26255:21;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;117:4;105:10;97:6;88:34;148:4;140:6;136:17;126:27;;0:157;26255:21:0;;;;26242:34;;26317:6;26306:18;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;117:4;105:10;97:6;88:34;148:4;140:6;136:17;126:27;;0:157;26306:18:0;;;;26287:37;;26364:6;26346:25;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;117:4;105:10;97:6;88:34;148:4;140:6;136:17;126:27;;0:157;26346:25:0;;;;26335:36;;26413:7;:14;;;;26392:17;26402:6;26392:5;:9;;:17;;;;:::i;:::-;:35;;26384:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26479:1;26470:6;:10;:26;;;;;26494:2;26484:6;:12;;26470:26;26462:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26532:13;26548:1;26532:17;;26564:9;26576:5;26564:17;;26560:332;26587:17;26597:6;26587:5;:9;;:17;;;;:::i;:::-;26583:1;:21;26560:332;;;26650:7;26658:1;26650:10;;;;;;;;;;;;;;;;;;:23;;;;;;;;;;;;26626:14;26641:5;26626:21;;;;;;;;;;;;;:47;;;;;;;;;;;26708:7;26716:1;26708:10;;;;;;;;;;;;;;;;;;:20;;;26688:10;26699:5;26688:17;;;;;;;;;;;;;:40;;;;;26769:7;26777:1;26769:10;;;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;26743:16;26760:5;26743:23;;;;;;;;;;;;;:52;;;;;;;;;;;26828:7;26836:1;26828:10;;;;;;;;;;;;;;;;;;:17;;;;;;;;;;;;26810:8;26819:5;26810:15;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;;;;;;26868:12;26878:1;26868:5;:9;;:12;;;;:::i;:::-;26860:20;;26606:3;;;;;;;26560:332;;;;26925:14;26954:10;26979:16;27010:8;26904:125;;;;;;;;;25937:1100;;;;;;;:::o;30650:841::-;7855:9;:7;:9::i;:::-;7847:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30871:9;22381:1;22358:13;:20;22372:5;22358:20;;;;;;;;;;;;;;;;:24;22350:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30927:1;30906:23;;:9;:23;;;;30898:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30998:1;30986:9;:13;30978:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31062:1;31048:11;:15;31040:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31114:19;31123:9;31114:8;:19::i;:::-;31106:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31183:20;:31;31204:9;31183:31;;;;;;;;;;;;;;;31220:154;;;;;;;;31254:9;31220:154;;;;;;31289:9;31220:154;;;;31326:11;31220:154;;;;31358:4;31220:154;;;31183:192;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;31183:192:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31444:9;31393:90;;31420:9;31393:90;;;31468:4;31393:90;;;;;;;;;;;;;;;;;;7912:1;30650:841;;;;;:::o;31843:666::-;7855:9;:7;:9::i;:::-;7847:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32122:5;32081:20;:31;32102:9;32081:31;;;;;;;;;;;;;;;:38;;;;:46;32059:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32213:1;32201:9;:13;32193:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32277:1;32263:11;:15;32255:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32323:23;32349:20;:31;32370:9;32349:31;;;;;;;;;;;;;;;32381:5;32349:38;;;;;;;;;;;;;;;;;;32323:64;;32418:9;32398:7;:17;;:29;;;;32460:11;32438:7;:19;;:33;;;;32497:4;32482:7;:12;;:19;;;;7912:1;31843:666;;;;;:::o;27757:665::-;27825:13;27849:14;27874:17;27902:15;27928:19;27958:13;27995:24;;:::i;:::-;28022:16;:20;28039:2;28022:20;;;;;;;;;;;27995:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28061:5;:11;;;28053:19;;28092:5;:12;;;28083:21;;28127:5;:15;;;28115:27;;28163:5;:13;;;28153:23;;28201:5;:17;;;28187:31;;28238:5;:12;;;28229:21;;28284:5;28304:6;28325:9;28349:7;28371:11;28397:6;28263:151;;;;;;;;;;;;;27757:665;;;;;;;:::o;25078:80::-;25119:4;25143:7;;;;;;;;;;;25136:14;;25078:80;:::o;32605:108::-;7855:9;:7;:9::i;:::-;7847:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32671:3;32664:4;:10;;;;32690:15;32701:3;32690:15;;;;;;;;;;;;;;;;;;32605:108;:::o;8454:140::-;7855:9;:7;:9::i;:::-;7847:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8553:1;8516:40;;8537:6;;;;;;;;;;;8516:40;;;;;;;;;;;;8584:1;8567:6;;:19;;;;;;;;;;;;;;;;;;8454:140::o;25519:96::-;25566:7;25593;:14;;;;25586:21;;25519:96;:::o;29966:107::-;7855:9;:7;:9::i;:::-;7847:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23449:7;;;;;;;;;;;23448:8;23440:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30037:4;30027:7;;:14;;;;;;;;;;;;;;;;;;30057:8;;;;;;;;;;29966:107::o;7643:79::-;7681:7;7708:6;;;;;;;;;;;7701:13;;7643:79;:::o;8009:94::-;8049:4;8089:6;;;;;;;;;;;8073:22;;:12;:10;:12::i;:::-;:22;;;8066:29;;8009:94;:::o;38686:248::-;38739:4;38756:13;38772;:20;38786:5;38772:20;;;;;;;;;;;;;;;;38756:36;;38816:1;38808:5;:9;38805:99;;;38873:18;38841:50;;;;;;;;:7;38849:12;38859:1;38849:5;:9;;:12;;;;:::i;:::-;38841:21;;;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;:50;;;;;;;;;38833:59;;;;;38805:99;38921:5;38914:12;;;38686:248;;;;:::o;34094:434::-;7855:9;:7;:9::i;:::-;7847:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34235:5;22528:1;22504:13;:20;22518:5;22504:20;;;;;;;;;;;;;;;;:25;22496:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34258:7;34271:165;;;;;;;;34306:5;34271:165;;;;;;34337:9;34271:165;;;;34378:5;34271:165;;;;;;34406:18;34271:165;;;;;;;;;;;34258:179;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;34258:179:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34471:7;:14;;;;34448:13;:20;34462:5;34448:20;;;;;;;;;;;;;;;:37;;;;34514:5;34503:17;;;;;;;;;;;;7912:1;34094:434;;:::o;25215:79::-;25255:7;25282:4;;25275:11;;25215:79;:::o;33354:548::-;7855:9;:7;:9::i;:::-;7847:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33529:12;22381:1;22358:13;:20;22372:5;22358:20;;;;;;;;;;;;;;;;:24;22350:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33559:13;33575:34;33607:1;33575:13;:27;33589:12;33575:27;;;;;;;;;;;;;;;;:31;;:34;;;;:::i;:::-;33559:50;;33620:19;33642:7;33650:5;33642:14;;;;;;;;;;;;;;;;;;33620:36;;33685:9;33667:5;:15;;:27;;;;33729:15;33705:5;:21;;;:39;;;;;;;;;;;;;;;;;;33817:12;33770:124;;33797:5;33770:124;33844:9;33868:15;33770:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;22426:1;;7912;33354:548;;;:::o;38137:409::-;38188:4;38254:11;38223:42;;;;;;;;:16;:20;38240:2;38223:20;;;;;;;;;;;:27;;;;;;;;;;;;:42;;;;;;;;;:234;;;;;38333:15;38301:16;:20;38318:2;38301:20;;;;;;;;;;;:28;;;:47;;:141;;;;38369:7;38377:48;38423:1;38377:13;:41;38391:16;:20;38408:2;38391:20;;;;;;;;;;;:26;;;;;;;;;;;;38377:41;;;;;;;;;;;;;;;;:45;;:48;;;;:::i;:::-;38369:57;;;;;;;;;;;;;;;;;;:73;;;;;;;;;;;;38301:141;38223:234;38206:310;;;38500:4;38493:11;;;;38206:310;38533:5;38526:12;;38137:409;;;;:::o;32830:261::-;7855:9;:7;:9::i;:::-;7847:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32943:1;32925:20;;:6;:20;;;;32903:114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33038:6;33028:7;;:16;;;;;;;;;;;;;;;;;;33076:6;33062:21;;;;;;;;;;;;32830:261;:::o;28815:1061::-;28883:27;28921;28959:29;28999:22;29048:14;29065:20;:27;29086:5;29065:27;;;;;;;;;;;;;;;:34;;;;29048:51;;29139:6;29125:21;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;117:4;105:10;97:6;88:34;148:4;140:6;136:17;126:27;;0:157;29125:21:0;;;;29112:34;;29184:6;29170:21;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;117:4;105:10;97:6;88:34;148:4;140:6;136:17;126:27;;0:157;29170:21:0;;;;29157:34;;29231:6;29217:21;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;117:4;105:10;97:6;88:34;148:4;140:6;136:17;126:27;;0:157;29217:21:0;;;;29202:36;;29271:6;29257:21;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;117:4;105:10;97:6;88:34;148:4;140:6;136:17;126:27;;0:157;29257:21:0;;;;29249:29;;29440:9;29452:1;29440:13;;29436:305;29459:6;29455:1;:10;29436:305;;;29488:22;;:::i;:::-;29513:20;:27;29534:5;29513:27;;;;;;;;;;;;;;;29541:1;29513:30;;;;;;;;;;;;;;;;;;29488:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29574:7;:17;;;29558:10;29569:1;29558:13;;;;;;;;;;;;;:33;;;;;;;;;;;29622:7;:17;;;29606:10;29617:1;29606:13;;;;;;;;;;;;;:33;;;;;29672:7;:19;;;29654:12;29667:1;29654:15;;;;;;;;;;;;;:37;;;;;29717:7;:12;;;29706:5;29712:1;29706:8;;;;;;;;;;;;;:23;;;;;29436:305;29467:3;;;;;;;29436:305;;;;29775:10;29800;29825:12;29852:5;29753:115;;;;;;;;;28815:1061;;;;;:::o;8749:109::-;7855:9;:7;:9::i;:::-;7847:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8822:28;8841:8;8822:18;:28::i;:::-;8749:109;:::o;1377:136::-;1435:7;1462:43;1466:1;1469;1462:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;1455:50;;1377:136;;;;:::o;921:181::-;979:7;999:9;1015:1;1011;:5;999:17;;1040:1;1035;:6;;1027:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1093:1;1086:8;;;921:181;;;;:::o;2293:471::-;2351:7;2601:1;2596;:6;2592:47;;;2626:1;2619:8;;;;2592:47;2651:9;2667:1;2663;:5;2651:17;;2696:1;2691;2687;:5;;;;;;:10;2679:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2755:1;2748:8;;;2293:471;;;;;:::o;3232:132::-;3290:7;3317:39;3321:1;3324;3317:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;3310:46;;3232:132;;;;:::o;38997:686::-;39211:12;39228:7;;;;;;;;;;;:12;;39247:3;39228:27;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;39210:45:0;;;39274:7;39266:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39337:14;39349:1;39337:7;;:11;;:14;;;;:::i;:::-;39327:7;:24;;;;39392:231;;;;;;;;20006:42;39392:231;;;;;;39460:6;39392:231;;;;39492:15;39392:231;;;;39531:7;39392:231;;;;39566:11;39392:231;;;;;;39600:11;39392:231;;;;;;;;;;;39364:16;:25;39381:7;;39364:25;;;;;;;;;;;:259;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39634:14;:27;39649:11;39634:27;;;;;;;;;;;;;;;39667:7;;39634:41;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;39634:41:0;;;;;;;;;;;;;;;;;;;;;;38997:686;;;;;:::o;39756:812::-;39991:56;40022:10;40034:7;;;;;;;;;;;40043:3;39998:5;39991:30;;;;:56;;;;;;:::i;:::-;40140:65;40171:10;40191:4;40198:6;40147:5;40140:30;;;;:65;;;;;;:::i;:::-;40228:14;40240:1;40228:7;;:11;;:14;;;;:::i;:::-;40218:7;:24;;;;40283:225;;;;;;;;40317:5;40283:225;;;;;;40345:6;40283:225;;;;40377:15;40283:225;;;;40416:7;40283:225;;;;40451:11;40283:225;;;;;;40485:11;40283:225;;;;;;;;;;;40255:16;:25;40272:7;;40255:25;;;;;;;;;;;:253;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40519:14;:27;40534:11;40519:27;;;;;;;;;;;;;;;40552:7;;40519:41;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;40519:41:0;;;;;;;;;;;;;;;;;;;;;;39756:812;;;;;:::o;40632:403::-;40682:25;40710:16;:20;40727:2;40710:20;;;;;;;;;;;40682:48;;40756:13;40741:5;:12;;;:28;;;;;;;;;;;;;;;;;;;;;;;;40781:12;40798:10;:15;;40820:5;:12;;;40798:39;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;40780:57:0;;;40856:7;40848:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40911:116;40948:5;:11;;;;;;;;;;;;40974:5;:15;;;41004:5;:12;;;40911:22;:116::i;:::-;40632:403;;;:::o;41102:343::-;41154:25;41182:16;:20;41199:2;41182:20;;;;;;;;;;;41154:48;;41228:13;41213:5;:12;;;:28;;;;;;;;;;;;;;;;;;;;;;;;41252:58;41285:10;41297:5;:12;;;41259:5;:11;;;;;;;;;;;;41252:32;;;;:58;;;;;:::i;:::-;41321:116;41358:5;:11;;;;;;;;;;;;41384:5;:15;;;41414:5;:12;;;41321:22;:116::i;:::-;41102:343;;:::o;6384:98::-;6429:15;6464:10;6457:17;;6384:98;:::o;8964:229::-;9058:1;9038:22;;:8;:22;;;;9030:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9148:8;9119:38;;9140:6;;;;;;;;;;;9119:38;;;;;;;;;;;;9177:8;9168:6;;:17;;;;;;;;;;;;;;;;;;8964:229;:::o;1850:192::-;1936:7;1969:1;1964;:6;;1972:12;1956:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;1956:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1996:9;2012:1;2008;:5;1996:17;;2033:1;2026:8;;;1850:192;;;;;:::o;3894:345::-;3980:7;4079:1;4075;:5;4082:12;4067:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;4067:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4106:9;4122:1;4118;:5;;;;;;4106:17;;4230:1;4223:8;;;3894:345;;;;;:::o;16078:204::-;16179:95;16198:5;16228;:18;;;:27;;;;16257:4;16263:2;16267:5;16205:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;16205:68:0;;;;;;;38:4:-1;29:7;25:18;67:10;61:17;96:58;199:8;192:4;186;182:15;179:29;167:10;160:49;0:215;;;16205:68:0;16179:18;:95::i;:::-;16078:204;;;;:::o;41673:888::-;41991:9;42003:1;41991:13;;41987:565;42010:20;:31;42031:9;42010:31;;;;;;;;;;;;;;;:38;;;;42006:1;:42;41987:565;;;42072:22;;:::i;:::-;42097:20;:31;42118:9;42097:31;;;;;;;;;;;;;;;42129:1;42097:34;;;;;;;;;;;;;;;;;;42072:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42166:8;42151:7;:12;;;:23;:57;;;;42193:15;42178:7;:12;;;:30;42151:57;42148:393;;;42229:7;;;;42148:393;42289:21;42313:54;42347:7;:19;;;42313:29;42324:7;:17;;;42313:6;:10;;:29;;;;:::i;:::-;:33;;:54;;;;:::i;:::-;42289:78;;42386:65;42425:10;42437:13;42393:7;:17;;;42386:38;;;;:65;;;;;:::i;:::-;42492:7;:17;;;42475:50;;;42511:13;42475:50;;;;;;;;;;;;;;;;;;42148:393;41987:565;42050:3;;;;;;;41987:565;;;;41673:888;;;;:::o;15894:176::-;15977:85;15996:5;16026;:14;;;:23;;;;16051:2;16055:5;16003:58;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;16003:58:0;;;;;;;38:4:-1;29:7;25:18;67:10;61:17;96:58;199:8;192:4;186;182:15;179:29;167:10;160:49;0:215;;;16003:58:0;15977:18;:85::i;:::-;15894:176;;;:::o;17933:1114::-;18537:27;18545:5;18537:25;;;:27::i;:::-;18529:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18674:12;18688:23;18723:5;18715:19;;18735:4;18715:25;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;182:3;176:10;171:3;164:23;98:2;93:3;89:12;82:19;;123:2;118:3;114:12;107:19;;148:2;143:3;139:12;132:19;;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;18715:25:0;;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;18673:67:0;;;;18759:7;18751:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18840:1;18820:10;:17;:21;18816:224;;;18962:10;18951:30;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;18951:30:0;;;;;;;;;;;;;;;;18943:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18816:224;17933:1114;;;;:::o;12724:810::-;12784:4;13237:16;13264:19;13286:66;13264:88;;;;13455:7;13443:20;13431:32;;13495:3;13483:15;;:8;:15;;:42;;;;;13514:11;13502:8;:23;;13483:42;13475:51;;;;12724:810;;;:::o;19235:23329::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o
Swarm Source
bzzr://56c27d87f1a1d97209238eecec08484027f09171176bd0661f79ca0103589462
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.