ERC-20
Overview
Max Total Supply
3.02642673 pETH
Holders
39
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
BinaryOptions
Compiler Version
v0.6.6+commit.6c089d02
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-01-16 */ pragma solidity ^0.6.6; /* * @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. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // SPDX-License-Identifier: MIT /** * @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. */ 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. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @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. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `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); } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_) public { _name = name_; _symbol = symbol_; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } } contract BIOPToken is ERC20 { using SafeMath for uint256; address public binaryOptions = 0x0000000000000000000000000000000000000000; address public gov; address public owner; uint256 public earlyClaimsAvailable = 450000000000000000000000000000; uint256 public totalClaimsAvailable = 300000000000000000000000000000; bool public earlyClaims = true; bool public binaryOptionsSet = false; constructor(string memory name_, string memory symbol_) public ERC20(name_, symbol_) { owner = msg.sender; } modifier onlyBinaryOptions() { require(binaryOptions == msg.sender, "Ownable: caller is not the Binary Options Contract"); _; } modifier onlyOwner() { require(binaryOptions == msg.sender, "Ownable: caller is not the owner"); _; } function updateEarlyClaim(uint256 amount) external onlyBinaryOptions { require(totalClaimsAvailable.sub(amount) >= 0, "insufficent claims available"); require (earlyClaims, "Launch has closed"); earlyClaimsAvailable = earlyClaimsAvailable.sub(amount); _mint(tx.origin, amount); if (earlyClaimsAvailable <= 0) { earlyClaims = false; } } function updateClaim( uint256 amount) external onlyBinaryOptions { require(totalClaimsAvailable.sub(amount) >= 0, "insufficent claims available"); totalClaimsAvailable.sub(amount); _mint(tx.origin, amount); } function setupBinaryOptions(address payable options_) external { require(binaryOptionsSet != true, "binary options is already set"); binaryOptions = options_; } function setupGovernance(address payable gov_) external onlyOwner { _mint(owner, 100000000000000000000000000000); _mint(gov_, 450000000000000000000000000000); owner = 0x0000000000000000000000000000000000000000; } } interface AggregatorV3Interface { function decimals() external view returns (uint8); function description() external view returns (string memory); function version() external view returns (uint256); // getRoundData and latestRoundData should both raise "No data present" // if they do not have data to report, instead of returning unset values // which could be misinterpreted as actual reported values. function getRoundData(uint80 _roundId) external view returns ( uint80 roundId, int256 answer, uint256 startedAt, uint256 updatedAt, uint80 answeredInRound ); function latestRoundData() external view returns ( uint80 roundId, int256 answer, uint256 startedAt, uint256 updatedAt, uint80 answeredInRound ); } interface IRC { /** * @notice Returns the rate to pay out for a given amount * @param amount the bet amount to calc a payout for * @param maxAvailable the total pooled ETH unlocked and available to bet * @return profit total possible profit amount */ function rate(uint256 amount, uint256 maxAvailable) external view returns (uint256); } contract RateCalc is IRC { using SafeMath for uint256; /** * @notice Calculates maximum option buyer profit * @param amount Option amount * @return profit total possible profit amount */ function rate(uint256 amount, uint256 maxAvailable) external view override returns (uint256) { require(amount <= maxAvailable, "greater then pool funds available"); uint256 oneTenth = amount.div(10); uint256 halfMax = maxAvailable.div(2); if (amount > halfMax) { return amount.mul(2).add(oneTenth).add(oneTenth); } else { if(oneTenth > 0) { return amount.mul(2).sub(oneTenth); } else { uint256 oneThird = amount.div(4); require(oneThird > 0, "invalid bet amount"); return amount.mul(2).sub(oneThird); } } } } /** * @title Binary Options Eth Pool * @author github.com/Shalquiana * @dev Pool ETH Tokens and use it for optionss * Biop */ contract BinaryOptions is ERC20 { using SafeMath for uint256; address payable devFund; address payable owner; address public biop; address public rcAddress;//address of current rate calculators mapping(address=>uint256) public nextWithdraw; mapping(address=>bool) public enabledPairs; uint256 public minTime; uint256 public maxTime; address public defaultPair; uint256 public lockedAmount; uint256 public exerciserFee = 50;//in tenth percent uint256 public expirerFee = 50;//in tenth percent uint256 public devFundBetFee = 2;//tenth of percent uint256 public poolLockSeconds = 2 days; uint256 public contractCreated; uint256 public launchEnd; bool public open = true; Option[] public options; //reward amounts uint256 aStakeReward = 120000000000000000000; uint256 bStakeReward = 60000000000000000000; uint256 betReward = 40000000000000000000; uint256 exerciseReward = 2000000000000000000; modifier onlyOwner() { require(owner == msg.sender, "Ownable: caller is not the owner"); _; } /* Types */ enum OptionType {Put, Call} enum State {Active, Exercised, Expired} struct Option { State state; address payable holder; uint256 strikePrice; uint256 purchaseValue; uint256 lockedValue;//purchaseAmount+possible reward for correct bet uint256 expiration; OptionType optionType; address priceProvider; } /* Events */ event Create( uint256 indexed id, address payable account, uint256 strikePrice, uint256 lockedValue, OptionType direction ); event Payout(uint256 poolLost, address winner); event Exercise(uint256 indexed id); event Expire(uint256 indexed id); function getMaxAvailable() public view returns(uint256) { uint256 balance = address(this).balance; if (balance > lockedAmount) { return balance.sub(lockedAmount); } else { return 0; } } constructor(string memory name_, string memory symbol_, address pp_, address biop_, address rateCalc_) public ERC20(name_, symbol_){ devFund = msg.sender; owner = msg.sender; biop = biop_; rcAddress = rateCalc_; lockedAmount = 0; contractCreated = block.timestamp; launchEnd = block.timestamp+28 days; enabledPairs[pp_] = true; //default pair ETH/USD defaultPair = pp_; minTime = 900;//15 minutes maxTime = 60 minutes; } /** * @dev the default price provider. This is a convenience method */ function defaultPriceProvider() public view returns (address) { return defaultPair; } /** * @dev add a price provider to the enabledPairs list * @param newRC_ the address of the AggregatorV3Interface price provider contract address to add. */ function setRateCalcAddress(address newRC_) external onlyOwner { rcAddress = newRC_; } /** * @dev add a price provider to the enabledPairs list * @param newPP_ the address of the AggregatorV3Interface price provider contract address to add. */ function addPP(address newPP_) external onlyOwner { enabledPairs[newPP_] = true; } /** * @dev remove a price provider from the enabledPairs list * @param oldPP_ the address of the AggregatorV3Interface price provider contract address to remove. */ function removePP(address oldPP_) external onlyOwner { enabledPairs[oldPP_] = false; } /** * @dev update the max time for option bets * @param newMax_ the new maximum time (in seconds) an option may be created for (inclusive). */ function setMaxTime(uint256 newMax_) external onlyOwner { maxTime = newMax_; } /** * @dev update the max time for option bets * @param newMin_ the new minimum time (in seconds) an option may be created for (inclusive). */ function setMinTime(uint256 newMin_) external onlyOwner { minTime = newMin_; } /** * @dev address of this contract, convenience method */ function thisAddress() public view returns (address){ return address(this); } /** * @dev set the fee users can recieve for exercising other users options * @param exerciserFee_ the new fee (in tenth percent) for exercising a options itm */ function updateExerciserFee(uint256 exerciserFee_) external onlyOwner { require(exerciserFee_ > 1 && exerciserFee_ < 500, "invalid fee"); exerciserFee = exerciserFee_; } /** * @dev set the fee users can recieve for expiring other users options * @param expirerFee_ the new fee (in tenth percent) for expiring a options */ function updateExpirerFee(uint256 expirerFee_) external onlyOwner { require(expirerFee_ > 1 && expirerFee_ < 50, "invalid fee"); expirerFee = expirerFee_; } /** * @dev set the fee users pay to buy an option * @param devFundBetFee_ the new fee (in tenth percent) to buy an option */ function updateDevFundBetFee(uint256 devFundBetFee_) external onlyOwner { require(devFundBetFee_ >= 0 && devFundBetFee_ < 50, "invalid fee"); devFundBetFee = devFundBetFee_; } /** * @dev update the pool stake lock up time. * @param newLockSeconds_ the new lock time, in seconds */ function updatePoolLockSeconds(uint256 newLockSeconds_) external onlyOwner { require(newLockSeconds_ >= 0 && newLockSeconds_ < 14 days, "invalid fee"); poolLockSeconds = newLockSeconds_; } /** * @dev used to transfer ownership * @param newOwner_ the address of governance contract which takes over control */ function transferOwner(address payable newOwner_) external onlyOwner { owner = newOwner_; } /** * @dev used to transfer devfund * @param newDevFund the address of governance contract which takes over control */ function transferDevFund(address payable newDevFund) external onlyOwner { devFund = newDevFund; } /** * @dev used to send this pool into EOL mode when a newer one is open */ function closeStaking() external onlyOwner { open = false; } /** * @dev update the amount of early user governance tokens that have been assigned * @param amount the amount assigned */ function updateRewards(uint256 amount) internal { BIOPToken b = BIOPToken(biop); if (b.earlyClaims()) { b.updateEarlyClaim(amount.mul(4)); } else if (b.totalClaimsAvailable() > 0){ b.updateClaim(amount); } } /** * @dev send ETH to the pool. Recieve pETH token representing your claim. * If rewards are available recieve BIOP governance tokens as well. */ function stake() external payable { require(open == true, "pool deposits has closed"); require(msg.value >= 100, "stake to small"); if (block.timestamp < launchEnd) { nextWithdraw[msg.sender] = block.timestamp + 14 days; _mint(msg.sender, msg.value); } else { nextWithdraw[msg.sender] = block.timestamp + poolLockSeconds; _mint(msg.sender, msg.value); } if (msg.value >= 2000000000000000000) { updateRewards(aStakeReward); } else { updateRewards(bStakeReward); } } /** * @dev recieve ETH from the pool. * If the current time is before your next available withdraw a 1% fee will be applied. * @param amount The amount of pETH to send the pool. */ function withdraw(uint256 amount) public { require (balanceOf(msg.sender) >= amount, "Insufficent Share Balance"); uint256 valueToRecieve = amount.mul(address(this).balance).div(totalSupply()); _burn(msg.sender, amount); if (block.timestamp <= nextWithdraw[msg.sender]) { //early withdraw fee uint256 penalty = valueToRecieve.div(100); require(devFund.send(penalty), "transfer failed"); require(msg.sender.send(valueToRecieve.sub(penalty)), "transfer failed"); } else { require(msg.sender.send(valueToRecieve), "transfer failed"); } } /** @dev Open a new call or put options. @param type_ type of option to buy @param pp_ the address of the price provider to use (must be in the list of enabledPairs) @param time_ the time until your options expiration (must be minTime < time_ > maxTime) */ function bet(OptionType type_, address pp_, uint256 time_) external payable { require( type_ == OptionType.Call || type_ == OptionType.Put, "Wrong option type" ); require( time_ >= minTime && time_ <= maxTime, "Invalid time" ); require(msg.value >= 100, "bet to small"); require(enabledPairs[pp_], "Invalid price provider"); uint depositValue; if (devFundBetFee > 0) { uint256 fee = msg.value.div(devFundBetFee).div(100); require(devFund.send(fee), "devFund fee transfer failed"); depositValue = msg.value.sub(fee); } else { depositValue = msg.value; } RateCalc rc = RateCalc(rcAddress); uint256 lockValue = getMaxAvailable(); lockValue = rc.rate(depositValue, lockValue.sub(depositValue)); AggregatorV3Interface priceProvider = AggregatorV3Interface(pp_); (, int256 latestPrice, , , ) = priceProvider.latestRoundData(); uint256 optionID = options.length; uint256 totalLock = lockValue.add(depositValue); Option memory op = Option( State.Active, msg.sender, uint256(latestPrice), depositValue, totalLock,//purchaseAmount+possible reward for correct bet block.timestamp + time_,//all options 1hr to start type_, pp_ ); lock(totalLock); options.push(op); emit Create(optionID, msg.sender, uint256(latestPrice), totalLock, type_); updateRewards(betReward); } /** * @notice exercises a option * @param optionID id of the option to exercise */ function exercise(uint256 optionID) external { Option memory option = options[optionID]; require(block.timestamp <= option.expiration, "expiration date margin has passed"); AggregatorV3Interface priceProvider = AggregatorV3Interface(option.priceProvider); (, int256 latestPrice, , , ) = priceProvider.latestRoundData(); uint256 uLatestPrice = uint256(latestPrice); if (option.optionType == OptionType.Call) { require(uLatestPrice > option.strikePrice, "price is to low"); } else { require(uLatestPrice < option.strikePrice, "price is to high"); } //option expires ITM, we pay out payout(option.lockedValue.sub(option.purchaseValue), msg.sender, option.holder); lockedAmount = lockedAmount.sub(option.lockedValue); emit Exercise(optionID); updateRewards(exerciseReward); } /** * @notice expires a option * @param optionID id of the option to expire */ function expire(uint256 optionID) external { Option memory option = options[optionID]; require(block.timestamp > option.expiration, "expiration date has not passed"); unlock(option.lockedValue.sub(option.purchaseValue), msg.sender, expirerFee); emit Expire(optionID); lockedAmount = lockedAmount.sub(option.lockedValue); updateRewards(exerciseReward); } /** @dev called by BinaryOptions contract to lock pool value coresponding to new binary options bought. @param amount amount in ETH to lock from the pool total. */ function lock(uint256 amount) internal { lockedAmount = lockedAmount.add(amount); } /** @dev called by BinaryOptions contract to unlock pool value coresponding to an option expiring otm. @param amount amount in ETH to unlock @param goodSamaritan the user paying to unlock these funds, they recieve a fee */ function unlock(uint256 amount, address payable goodSamaritan, uint256 eFee) internal { require(amount <= lockedAmount, "insufficent locked pool balance to unlock"); uint256 fee = amount.div(eFee).div(100); if (fee > 0) { require(goodSamaritan.send(fee), "good samaritan transfer failed"); } } /** @dev called by BinaryOptions contract to payout pool value coresponding to binary options expiring itm. @param amount amount in BIOP to unlock @param exerciser address calling the exercise/expire function, this may the winner or another user who then earns a fee. @param winner address of the winner. @notice exerciser fees are subject to change see updateFeePercent above. */ function payout(uint256 amount, address payable exerciser, address payable winner) internal { require(amount <= lockedAmount, "insufficent pool balance available to payout"); require(amount <= address(this).balance, "insufficent balance in pool"); if (exerciser != winner) { //good samaratin fee uint256 fee = amount.div(exerciserFee).div(100); if (fee > 0) { require(exerciser.send(fee), "exerciser transfer failed"); require(winner.send(amount.sub(fee)), "winner transfer failed"); } } else { require(winner.send(amount), "winner transfer failed"); } emit Payout(amount, winner); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"address","name":"pp_","type":"address"},{"internalType":"address","name":"biop_","type":"address"},{"internalType":"address","name":"rateCalc_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"address payable","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"strikePrice","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"lockedValue","type":"uint256"},{"indexed":false,"internalType":"enum BinaryOptions.OptionType","name":"direction","type":"uint8"}],"name":"Create","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"Exercise","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"Expire","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"poolLost","type":"uint256"},{"indexed":false,"internalType":"address","name":"winner","type":"address"}],"name":"Payout","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"newPP_","type":"address"}],"name":"addPP","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum BinaryOptions.OptionType","name":"type_","type":"uint8"},{"internalType":"address","name":"pp_","type":"address"},{"internalType":"uint256","name":"time_","type":"uint256"}],"name":"bet","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"biop","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"closeStaking","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractCreated","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"defaultPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"defaultPriceProvider","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devFundBetFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"enabledPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"optionID","type":"uint256"}],"name":"exercise","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"exerciserFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"optionID","type":"uint256"}],"name":"expire","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"expirerFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxAvailable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"launchEnd","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nextWithdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"open","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"options","outputs":[{"internalType":"enum BinaryOptions.State","name":"state","type":"uint8"},{"internalType":"address payable","name":"holder","type":"address"},{"internalType":"uint256","name":"strikePrice","type":"uint256"},{"internalType":"uint256","name":"purchaseValue","type":"uint256"},{"internalType":"uint256","name":"lockedValue","type":"uint256"},{"internalType":"uint256","name":"expiration","type":"uint256"},{"internalType":"enum BinaryOptions.OptionType","name":"optionType","type":"uint8"},{"internalType":"address","name":"priceProvider","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"poolLockSeconds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rcAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"oldPP_","type":"address"}],"name":"removePP","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax_","type":"uint256"}],"name":"setMaxTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMin_","type":"uint256"}],"name":"setMinTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRC_","type":"address"}],"name":"setRateCalcAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stake","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"thisAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newDevFund","type":"address"}],"name":"transferDevFund","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newOwner_","type":"address"}],"name":"transferOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"devFundBetFee_","type":"uint256"}],"name":"updateDevFundBetFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"exerciserFee_","type":"uint256"}],"name":"updateExerciserFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"expirerFee_","type":"uint256"}],"name":"updateExpirerFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLockSeconds_","type":"uint256"}],"name":"updatePoolLockSeconds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526032600f81905560105560026011556202a3006012556015805460ff1916600117905568068155a43676e00000601755680340aad21b3b70000060185568022b1c8c1227a00000601955671bc16d674ec80000601a553480156200006757600080fd5b50604051620032e7380380620032e7833981810160405260a08110156200008d57600080fd5b8101908080516040519392919084640100000000821115620000ae57600080fd5b908301906020820185811115620000c457600080fd5b8251640100000000811182820188101715620000df57600080fd5b82525081516020918201929091019080838360005b838110156200010e578181015183820152602001620000f4565b50505050905090810190601f1680156200013c5780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200016057600080fd5b9083019060208201858111156200017657600080fd5b82516401000000008111828201881017156200019157600080fd5b82525081516020918201929091019080838360005b83811015620001c0578181015183820152602001620001a6565b50505050905090810190601f168015620001ee5780820380516001836020036101000a031916815260200191505b506040908152602082810151918301516060909301518751929550929350869186916200022191600391850190620002e8565b50805162000237906004906020840190620002e8565b505060058054336101008102610100600160a81b031960ff199384166012171617909255600680546001600160a01b03199081169093179055600780546001600160a01b0396871690841617905560088054948616948316949094179093556000600e8190554260138190556224ea000160145594909316808552600a6020526040909420805490921660011790915550600d805490911690911790555050610384600b55610e10600c556200038d565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200032b57805160ff19168380011785556200035b565b828001600101855582156200035b579182015b828111156200035b5782518255916020019190600101906200033e565b50620003699291506200036d565b5090565b6200038a91905b8082111562000369576000815560010162000374565b90565b612f4a806200039d6000396000f3fe6080604052600436106102885760003560e01c806392cea8591161015a578063baaee553116100c1578063dd62ed3e1161007a578063dd62ed3e14610979578063e4523ef9146109b4578063f200fb20146109c9578063f4a6e1e2146109fc578063fcfff16f14610a2f578063fd4cbc0514610a4457610288565b8063baaee553146108c8578063bac2e6db146108fb578063bf81bf4314610910578063d25b00d01461093a578063d32a8f671461094f578063d4dca69b1461096457610288565b80639aae9708116101135780639aae9708146107d8578063a457c2d7146107ed578063a9059cbb14610826578063a9493ced1461085f578063ad33648a14610874578063b07f0a411461089e57610288565b806392cea859146106f257806393f89a801461072557806395827c611461074f57806395d89b411461078457806398b777e71461079957806398cfe587146107c357610288565b80633a4b66f1116101fe57806360baaaae116101b757806360baaaae146106075780636121c2071461061c5780636ab28bc81461064d57806370a08231146106625780637fd5f452146106955780638a0c6d26146106c857610288565b80633a4b66f1146104d0578063409e2205146104d85780634fb2e45d146105805780634fce9c84146105b35780635009a613146105c8578063602d8608146105f257610288565b806322e67e711161025057806322e67e71146103b557806323b872dd146103ca578063255053e71461040d5780632e1a7d4d14610440578063313ce5671461046c578063395093511461049757610288565b806306fdde031461028d578063095ea7b3146103175780631534c58b1461036457806318160ddd1461038b5780631aa43078146103a0575b600080fd5b34801561029957600080fd5b506102a2610a6e565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102dc5781810151838201526020016102c4565b50505050905090810190601f1680156103095780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561032357600080fd5b506103506004803603604081101561033a57600080fd5b506001600160a01b038135169060200135610b05565b604080519115158252519081900360200190f35b34801561037057600080fd5b50610379610b23565b60408051918252519081900360200190f35b34801561039757600080fd5b50610379610b29565b3480156103ac57600080fd5b50610379610b2f565b3480156103c157600080fd5b50610379610b35565b3480156103d657600080fd5b50610350600480360360608110156103ed57600080fd5b506001600160a01b03813581169160208101359091169060400135610b3b565b34801561041957600080fd5b506103506004803603602081101561043057600080fd5b50356001600160a01b0316610bc8565b34801561044c57600080fd5b5061046a6004803603602081101561046357600080fd5b5035610bdd565b005b34801561047857600080fd5b50610481610de1565b6040805160ff9092168252519081900360200190f35b3480156104a357600080fd5b50610350600480360360408110156104ba57600080fd5b506001600160a01b038135169060200135610dea565b61046a610e3e565b3480156104e457600080fd5b50610502600480360360208110156104fb57600080fd5b5035610f60565b6040518089600281111561051257fe5b60ff168152602001886001600160a01b03166001600160a01b0316815260200187815260200186815260200185815260200184815260200183600181111561055657fe5b60ff1681526001600160a01b03909216602083015250604080519182900301975095505050505050f35b34801561058c57600080fd5b5061046a600480360360208110156105a357600080fd5b50356001600160a01b0316610fc4565b3480156105bf57600080fd5b50610379611033565b3480156105d457600080fd5b5061046a600480360360208110156105eb57600080fd5b5035611039565b3480156105fe57600080fd5b506103796110d0565b34801561061357600080fd5b506103796110d6565b34801561062857600080fd5b506106316110dc565b604080516001600160a01b039092168252519081900360200190f35b34801561065957600080fd5b506103796110eb565b34801561066e57600080fd5b506103796004803603602081101561068557600080fd5b50356001600160a01b03166110f1565b3480156106a157600080fd5b5061046a600480360360208110156106b857600080fd5b50356001600160a01b031661110c565b3480156106d457600080fd5b5061046a600480360360208110156106eb57600080fd5b503561117b565b3480156106fe57600080fd5b506103796004803603602081101561071557600080fd5b50356001600160a01b031661121d565b34801561073157600080fd5b5061046a6004803603602081101561074857600080fd5b503561122f565b61046a6004803603606081101561076557600080fd5b5060ff813516906001600160a01b036020820135169060400135611281565b34801561079057600080fd5b506102a26117d8565b3480156107a557600080fd5b5061046a600480360360208110156107bc57600080fd5b5035611839565b3480156107cf57600080fd5b5061046a61188b565b3480156107e457600080fd5b506106316118e4565b3480156107f957600080fd5b506103506004803603604081101561081057600080fd5b506001600160a01b0381351690602001356118f3565b34801561083257600080fd5b506103506004803603604081101561084957600080fd5b506001600160a01b038135169060200135611961565b34801561086b57600080fd5b50610379611975565b34801561088057600080fd5b5061046a6004803603602081101561089757600080fd5b503561197b565b3480156108aa57600080fd5b5061046a600480360360208110156108c157600080fd5b5035611a10565b3480156108d457600080fd5b5061046a600480360360208110156108eb57600080fd5b50356001600160a01b0316611ccc565b34801561090757600080fd5b50610379611d3d565b34801561091c57600080fd5b5061046a6004803603602081101561093357600080fd5b5035611d72565b34801561094657600080fd5b50610379611f13565b34801561095b57600080fd5b50610631611f19565b34801561097057600080fd5b50610631611f28565b34801561098557600080fd5b506103796004803603604081101561099c57600080fd5b506001600160a01b0381358116916020013516611f2c565b3480156109c057600080fd5b50610631611f57565b3480156109d557600080fd5b5061046a600480360360208110156109ec57600080fd5b50356001600160a01b0316611f66565b348015610a0857600080fd5b5061046a60048036036020811015610a1f57600080fd5b50356001600160a01b0316611fdb565b348015610a3b57600080fd5b50610350612049565b348015610a5057600080fd5b5061046a60048036036020811015610a6757600080fd5b5035612052565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610afa5780601f10610acf57610100808354040283529160200191610afa565b820191906000526020600020905b815481529060010190602001808311610add57829003601f168201915b505050505090505b90565b6000610b19610b126120f3565b84846120f7565b5060015b92915050565b60145481565b60025490565b600b5481565b600c5481565b6000610b488484846121e3565b610bbe84610b546120f3565b610bb985604051806060016040528060288152602001612e3e602891396001600160a01b038a16600090815260016020526040812090610b926120f3565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61234a16565b6120f7565b5060019392505050565b600a6020526000908152604090205460ff1681565b80610be7336110f1565b1015610c3a576040805162461bcd60e51b815260206004820152601960248201527f496e737566666963656e742053686172652042616c616e636500000000000000604482015290519081900360640190fd5b6000610c63610c47610b29565b610c57844763ffffffff6123e116565b9063ffffffff61244116565b9050610c6f3383612483565b336000908152600960205260409020544211610d7e576000610c9882606463ffffffff61244116565b60055460405191925061010090046001600160a01b0316906108fc8315029083906000818181858888f19350505050610d0a576040805162461bcd60e51b815260206004820152600f60248201526e1d1c985b9cd9995c8819985a5b1959608a1b604482015290519081900360640190fd5b336108fc610d1e848463ffffffff61258b16565b6040518115909202916000818181858888f19350505050610d78576040805162461bcd60e51b815260206004820152600f60248201526e1d1c985b9cd9995c8819985a5b1959608a1b604482015290519081900360640190fd5b50610ddd565b604051339082156108fc029083906000818181858888f19350505050610ddd576040805162461bcd60e51b815260206004820152600f60248201526e1d1c985b9cd9995c8819985a5b1959608a1b604482015290519081900360640190fd5b5050565b60055460ff1690565b6000610b19610df76120f3565b84610bb98560016000610e086120f3565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff6125cd16565b60155460ff161515600114610e9a576040805162461bcd60e51b815260206004820152601860248201527f706f6f6c206465706f736974732068617320636c6f7365640000000000000000604482015290519081900360640190fd5b6064341015610ee1576040805162461bcd60e51b815260206004820152600e60248201526d1cdd185ad9481d1bc81cdb585b1b60921b604482015290519081900360640190fd5b601454421015610f11573360008181526009602052604090206212750042019055610f0c9034612627565b610f34565b60125433600081815260096020526040902042909201909155610f349034612627565b671bc16d674ec800003410610f5357610f4e601754612723565b610f5e565b610f5e601854612723565b565b60168181548110610f6d57fe5b600091825260209091206006909102018054600182015460028301546003840154600485015460059095015460ff80861697506001600160a01b036101009687900481169795969495939491831692919091041688565b6006546001600160a01b03163314611011576040805162461bcd60e51b81526020600482018190526024820152600080516020612e66833981519152604482015290519081900360640190fd5b600680546001600160a01b0319166001600160a01b0392909216919091179055565b60135481565b6006546001600160a01b03163314611086576040805162461bcd60e51b81526020600482018190526024820152600080516020612e66833981519152604482015290519081900360640190fd5b6212750081106110cb576040805162461bcd60e51b815260206004820152600b60248201526a696e76616c69642066656560a81b604482015290519081900360640190fd5b601255565b60125481565b60105481565b6008546001600160a01b031681565b600e5481565b6001600160a01b031660009081526020819052604090205490565b6006546001600160a01b03163314611159576040805162461bcd60e51b81526020600482018190526024820152600080516020612e66833981519152604482015290519081900360640190fd5b600880546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b031633146111c8576040805162461bcd60e51b81526020600482018190526024820152600080516020612e66833981519152604482015290519081900360640190fd5b6001811180156111d957506101f481105b611218576040805162461bcd60e51b815260206004820152600b60248201526a696e76616c69642066656560a81b604482015290519081900360640190fd5b600f55565b60096020526000908152604090205481565b6006546001600160a01b0316331461127c576040805162461bcd60e51b81526020600482018190526024820152600080516020612e66833981519152604482015290519081900360640190fd5b600b55565b600183600181111561128f57fe5b14806112a6575060008360018111156112a457fe5b145b6112eb576040805162461bcd60e51b815260206004820152601160248201527057726f6e67206f7074696f6e207479706560781b604482015290519081900360640190fd5b600b5481101580156112ff5750600c548111155b61133f576040805162461bcd60e51b815260206004820152600c60248201526b496e76616c69642074696d6560a01b604482015290519081900360640190fd5b6064341015611384576040805162461bcd60e51b815260206004820152600c60248201526b18995d081d1bc81cdb585b1b60a21b604482015290519081900360640190fd5b6001600160a01b0382166000908152600a602052604090205460ff166113f1576040805162461bcd60e51b815260206004820152601760248201527f496e76616c6964202070726963652070726f7669646572000000000000000000604482015290519081900360640190fd5b601154600090156114b05760006114186064610c576011543461244190919063ffffffff16565b60055460405191925061010090046001600160a01b0316906108fc8315029083906000818181858888f19350505050611498576040805162461bcd60e51b815260206004820152601b60248201527f64657646756e6420666565207472616e73666572206661696c65640000000000604482015290519081900360640190fd5b6114a8348263ffffffff61258b16565b9150506114b3565b50345b6008546001600160a01b031660006114c9611d3d565b90506001600160a01b0382166343bebfbf846114eb848263ffffffff61258b16565b6040518363ffffffff1660e01b8152600401808381526020018281526020019250505060206040518083038186803b15801561152657600080fd5b505afa15801561153a573d6000803e3d6000fd5b505050506040513d602081101561155057600080fd5b505160408051633fabe5a360e21b8152905191925086916000916001600160a01b0384169163feaf968c9160048082019260a092909190829003018186803b15801561159b57600080fd5b505afa1580156115af573d6000803e3d6000fd5b505050506040513d60a08110156115c557600080fd5b506020015160165490915060006115e2858863ffffffff6125cd16565b90506115ec612cbf565b6040805161010081019091528060008152602001336001600160a01b031681526020018581526020018981526020018381526020018a420181526020018c600181111561163557fe5b81526020018b6001600160a01b03168152509050611652826128dc565b6016805460018181018355600092909252825160069091027fd833147d7dc355ba459fc788f669e58cfaf9dc25ddcd0702e87d69c7b51242890180548493919291839160ff1916908360028111156116a657fe5b0217905550602082015181546001600160a01b0390911661010002610100600160a81b03199091161781556040820151600180830191909155606083015160028301556080830151600383015560a0830151600483015560c08301516005830180549192909160ff191690838181111561171c57fe5b021790555060e08201518160050160016101000a8154816001600160a01b0302191690836001600160a01b031602179055505050827f5004e09dd63509bbf306b6879e966ab72429fc41d21095e36ab1ec61ab1b40f13386858f60405180856001600160a01b03166001600160a01b031681526020018481526020018381526020018260018111156117aa57fe5b60ff16815260200194505050505060405180910390a26117cb601954612723565b5050505050505050505050565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610afa5780601f10610acf57610100808354040283529160200191610afa565b6006546001600160a01b03163314611886576040805162461bcd60e51b81526020600482018190526024820152600080516020612e66833981519152604482015290519081900360640190fd5b600c55565b6006546001600160a01b031633146118d8576040805162461bcd60e51b81526020600482018190526024820152600080516020612e66833981519152604482015290519081900360640190fd5b6015805460ff19169055565b600d546001600160a01b031690565b6000610b196119006120f3565b84610bb985604051806060016040528060258152602001612ef0602591396001600061192a6120f3565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61234a16565b6000610b1961196e6120f3565b84846121e3565b60115481565b6006546001600160a01b031633146119c8576040805162461bcd60e51b81526020600482018190526024820152600080516020612e66833981519152604482015290519081900360640190fd5b60328110611a0b576040805162461bcd60e51b815260206004820152600b60248201526a696e76616c69642066656560a81b604482015290519081900360640190fd5b601155565b611a18612cbf565b60168281548110611a2557fe5b600091825260209091206040805161010081019091526006909202018054829060ff166002811115611a5357fe5b6002811115611a5e57fe5b8152815461010090046001600160a01b0316602082015260018083015460408301526002830154606083015260038301546080830152600483015460a0830152600583015460c09092019160ff1690811115611ab657fe5b6001811115611ac157fe5b81526005919091015461010090046001600160a01b031660209091015260a0810151909150421115611b245760405162461bcd60e51b8152600401808060200182810382526021815260200180612dfc6021913960400191505060405180910390fd5b60008160e0015190506000816001600160a01b031663feaf968c6040518163ffffffff1660e01b815260040160a06040518083038186803b158015611b6857600080fd5b505afa158015611b7c573d6000803e3d6000fd5b505050506040513d60a0811015611b9257600080fd5b506020015190508060018460c001516001811115611bac57fe5b1415611c015783604001518111611bfc576040805162461bcd60e51b815260206004820152600f60248201526e707269636520697320746f206c6f7760881b604482015290519081900360640190fd5b611c4c565b83604001518110611c4c576040805162461bcd60e51b815260206004820152601060248201526f0e0e4d2c6ca40d2e640e8de40d0d2ced60831b604482015290519081900360640190fd5b611c75611c6a8560600151866080015161258b90919063ffffffff16565b3386602001516128f5565b6080840151600e54611c8c9163ffffffff61258b16565b600e5560405185907fa2a53c7cb82eeb7994ccbbab71bea210cd63cfeb7823972fb5b6a49c3b0e1d4c90600090a2611cc5601a54612723565b5050505050565b6006546001600160a01b03163314611d19576040805162461bcd60e51b81526020600482018190526024820152600080516020612e66833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600a60205260409020805460ff19166001179055565b600e546000904790811115611d6857600e54611d6090829063ffffffff61258b16565b915050610b02565b6000915050610b02565b611d7a612cbf565b60168281548110611d8757fe5b600091825260209091206040805161010081019091526006909202018054829060ff166002811115611db557fe5b6002811115611dc057fe5b8152815461010090046001600160a01b0316602082015260018083015460408301526002830154606083015260038301546080830152600483015460a0830152600583015460c09092019160ff1690811115611e1857fe5b6001811115611e2357fe5b81526005919091015461010090046001600160a01b031660209091015260a08101519091504211611e9b576040805162461bcd60e51b815260206004820152601e60248201527f65787069726174696f6e206461746520686173206e6f74207061737365640000604482015290519081900360640190fd5b611ec2611eb98260600151836080015161258b90919063ffffffff16565b33601054612b79565b60405182907fa33fd53ba34795ffefaea3759c71f87d38b89ae12e40bc434c826fae0ca5358390600090a26080810151600e54611f049163ffffffff61258b16565b600e55601a54610ddd90612723565b600f5481565b600d546001600160a01b031681565b3090565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6007546001600160a01b031681565b6006546001600160a01b03163314611fb3576040805162461bcd60e51b81526020600482018190526024820152600080516020612e66833981519152604482015290519081900360640190fd5b600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6006546001600160a01b03163314612028576040805162461bcd60e51b81526020600482018190526024820152600080516020612e66833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600a60205260409020805460ff19169055565b60155460ff1681565b6006546001600160a01b0316331461209f576040805162461bcd60e51b81526020600482018190526024820152600080516020612e66833981519152604482015290519081900360640190fd5b6001811180156120af5750603281105b6120ee576040805162461bcd60e51b815260206004820152600b60248201526a696e76616c69642066656560a81b604482015290519081900360640190fd5b601055565b3390565b6001600160a01b03831661213c5760405162461bcd60e51b8152600401808060200182810382526024815260200180612ecc6024913960400191505060405180910390fd5b6001600160a01b0382166121815760405162461bcd60e51b8152600401808060200182810382526022815260200180612d5f6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166122285760405162461bcd60e51b8152600401808060200182810382526025815260200180612ea76025913960400191505060405180910390fd5b6001600160a01b03821661226d5760405162461bcd60e51b8152600401808060200182810382526023815260200180612d1a6023913960400191505060405180910390fd5b612278838383612c55565b6122bb81604051806060016040528060268152602001612d81602691396001600160a01b038616600090815260208190526040902054919063ffffffff61234a16565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546122f0908263ffffffff6125cd16565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156123d95760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561239e578181015183820152602001612386565b50505050905090810190601f1680156123cb5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000826123f057506000610b1d565b828202828482816123fd57fe5b041461243a5760405162461bcd60e51b8152600401808060200182810382526021815260200180612e1d6021913960400191505060405180910390fd5b9392505050565b600061243a83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612c5a565b6001600160a01b0382166124c85760405162461bcd60e51b8152600401808060200182810382526021815260200180612e866021913960400191505060405180910390fd5b6124d482600083612c55565b61251781604051806060016040528060228152602001612d3d602291396001600160a01b038516600090815260208190526040902054919063ffffffff61234a16565b6001600160a01b038316600090815260208190526040902055600254612543908263ffffffff61258b16565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b600061243a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061234a565b60008282018381101561243a576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b038216612682576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b61268e60008383612c55565b6002546126a1908263ffffffff6125cd16565b6002556001600160a01b0382166000908152602081905260409020546126cd908263ffffffff6125cd16565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b60075460408051639901f16560e01b815290516001600160a01b03909216918291639901f165916004808301926020929190829003018186803b15801561276957600080fd5b505afa15801561277d573d6000803e3d6000fd5b505050506040513d602081101561279357600080fd5b50511561280d576001600160a01b03811663750a7ea36127ba84600463ffffffff6123e116565b6040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b1580156127f057600080fd5b505af1158015612804573d6000803e3d6000fd5b50505050610ddd565b6000816001600160a01b031663f331bff26040518163ffffffff1660e01b815260040160206040518083038186803b15801561284857600080fd5b505afa15801561285c573d6000803e3d6000fd5b505050506040513d602081101561287257600080fd5b50511115610ddd57806001600160a01b03166312b3368d836040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b1580156128c057600080fd5b505af11580156128d4573d6000803e3d6000fd5b505050505050565b600e546128ef908263ffffffff6125cd16565b600e5550565b600e548311156129365760405162461bcd60e51b815260040180806020018281038252602c815260200180612da7602c913960400191505060405180910390fd5b4783111561298b576040805162461bcd60e51b815260206004820152601b60248201527f696e737566666963656e742062616c616e636520696e20706f6f6c0000000000604482015290519081900360640190fd5b806001600160a01b0316826001600160a01b031614612ac25760006129c06064610c57600f548761244190919063ffffffff16565b90508015612abc576040516001600160a01b0384169082156108fc029083906000818181858888f19350505050612a3e576040805162461bcd60e51b815260206004820152601960248201527f657865726369736572207472616e73666572206661696c656400000000000000604482015290519081900360640190fd5b6001600160a01b0382166108fc612a5b868463ffffffff61258b16565b6040518115909202916000818181858888f19350505050612abc576040805162461bcd60e51b81526020600482015260166024820152751dda5b9b995c881d1c985b9cd9995c8819985a5b195960521b604482015290519081900360640190fd5b50612b31565b6040516001600160a01b0382169084156108fc029085906000818181858888f19350505050612b31576040805162461bcd60e51b81526020600482015260166024820152751dda5b9b995c881d1c985b9cd9995c8819985a5b195960521b604482015290519081900360640190fd5b604080518481526001600160a01b038316602082015281517f9b5d1a613fa5f0790b36b13103706e31fca06b229d87e9915b29fc20c1d76490929181900390910190a1505050565b600e54831115612bba5760405162461bcd60e51b8152600401808060200182810382526029815260200180612dd36029913960400191505060405180910390fd5b6000612bd16064610c57868563ffffffff61244116565b90508015612c4f576040516001600160a01b0384169082156108fc029083906000818181858888f19350505050612c4f576040805162461bcd60e51b815260206004820152601e60248201527f676f6f642073616d61726974616e207472616e73666572206661696c65640000604482015290519081900360640190fd5b50505050565b505050565b60008183612ca95760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561239e578181015183820152602001612386565b506000838581612cb557fe5b0495945050505050565b604080516101008101909152806000815260200160006001600160a01b031681526020016000815260200160008152602001600081526020016000815260200160006001811115612d0c57fe5b815260006020909101529056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365696e737566666963656e7420706f6f6c2062616c616e636520617661696c61626c6520746f207061796f7574696e737566666963656e74206c6f636b656420706f6f6c2062616c616e636520746f20756e6c6f636b65787069726174696f6e2064617465206d617267696e2068617320706173736564536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212208598787fda06f075e740a5c453762141f6f8ac6e5ad928a8bac428d92d7b427f64736f6c6343000606003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000005f4ec3df9cbd43714fe2740f5e3616155c5b8419000000000000000000000000c3771668ac4d9c727f54dbde11ed94acadd5ff8600000000000000000000000079bc59b174d4579cf16734864522a58bd92eb504000000000000000000000000000000000000000000000000000000000000000b506f6f6c2053686172657300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000047045544800000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102885760003560e01c806392cea8591161015a578063baaee553116100c1578063dd62ed3e1161007a578063dd62ed3e14610979578063e4523ef9146109b4578063f200fb20146109c9578063f4a6e1e2146109fc578063fcfff16f14610a2f578063fd4cbc0514610a4457610288565b8063baaee553146108c8578063bac2e6db146108fb578063bf81bf4314610910578063d25b00d01461093a578063d32a8f671461094f578063d4dca69b1461096457610288565b80639aae9708116101135780639aae9708146107d8578063a457c2d7146107ed578063a9059cbb14610826578063a9493ced1461085f578063ad33648a14610874578063b07f0a411461089e57610288565b806392cea859146106f257806393f89a801461072557806395827c611461074f57806395d89b411461078457806398b777e71461079957806398cfe587146107c357610288565b80633a4b66f1116101fe57806360baaaae116101b757806360baaaae146106075780636121c2071461061c5780636ab28bc81461064d57806370a08231146106625780637fd5f452146106955780638a0c6d26146106c857610288565b80633a4b66f1146104d0578063409e2205146104d85780634fb2e45d146105805780634fce9c84146105b35780635009a613146105c8578063602d8608146105f257610288565b806322e67e711161025057806322e67e71146103b557806323b872dd146103ca578063255053e71461040d5780632e1a7d4d14610440578063313ce5671461046c578063395093511461049757610288565b806306fdde031461028d578063095ea7b3146103175780631534c58b1461036457806318160ddd1461038b5780631aa43078146103a0575b600080fd5b34801561029957600080fd5b506102a2610a6e565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102dc5781810151838201526020016102c4565b50505050905090810190601f1680156103095780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561032357600080fd5b506103506004803603604081101561033a57600080fd5b506001600160a01b038135169060200135610b05565b604080519115158252519081900360200190f35b34801561037057600080fd5b50610379610b23565b60408051918252519081900360200190f35b34801561039757600080fd5b50610379610b29565b3480156103ac57600080fd5b50610379610b2f565b3480156103c157600080fd5b50610379610b35565b3480156103d657600080fd5b50610350600480360360608110156103ed57600080fd5b506001600160a01b03813581169160208101359091169060400135610b3b565b34801561041957600080fd5b506103506004803603602081101561043057600080fd5b50356001600160a01b0316610bc8565b34801561044c57600080fd5b5061046a6004803603602081101561046357600080fd5b5035610bdd565b005b34801561047857600080fd5b50610481610de1565b6040805160ff9092168252519081900360200190f35b3480156104a357600080fd5b50610350600480360360408110156104ba57600080fd5b506001600160a01b038135169060200135610dea565b61046a610e3e565b3480156104e457600080fd5b50610502600480360360208110156104fb57600080fd5b5035610f60565b6040518089600281111561051257fe5b60ff168152602001886001600160a01b03166001600160a01b0316815260200187815260200186815260200185815260200184815260200183600181111561055657fe5b60ff1681526001600160a01b03909216602083015250604080519182900301975095505050505050f35b34801561058c57600080fd5b5061046a600480360360208110156105a357600080fd5b50356001600160a01b0316610fc4565b3480156105bf57600080fd5b50610379611033565b3480156105d457600080fd5b5061046a600480360360208110156105eb57600080fd5b5035611039565b3480156105fe57600080fd5b506103796110d0565b34801561061357600080fd5b506103796110d6565b34801561062857600080fd5b506106316110dc565b604080516001600160a01b039092168252519081900360200190f35b34801561065957600080fd5b506103796110eb565b34801561066e57600080fd5b506103796004803603602081101561068557600080fd5b50356001600160a01b03166110f1565b3480156106a157600080fd5b5061046a600480360360208110156106b857600080fd5b50356001600160a01b031661110c565b3480156106d457600080fd5b5061046a600480360360208110156106eb57600080fd5b503561117b565b3480156106fe57600080fd5b506103796004803603602081101561071557600080fd5b50356001600160a01b031661121d565b34801561073157600080fd5b5061046a6004803603602081101561074857600080fd5b503561122f565b61046a6004803603606081101561076557600080fd5b5060ff813516906001600160a01b036020820135169060400135611281565b34801561079057600080fd5b506102a26117d8565b3480156107a557600080fd5b5061046a600480360360208110156107bc57600080fd5b5035611839565b3480156107cf57600080fd5b5061046a61188b565b3480156107e457600080fd5b506106316118e4565b3480156107f957600080fd5b506103506004803603604081101561081057600080fd5b506001600160a01b0381351690602001356118f3565b34801561083257600080fd5b506103506004803603604081101561084957600080fd5b506001600160a01b038135169060200135611961565b34801561086b57600080fd5b50610379611975565b34801561088057600080fd5b5061046a6004803603602081101561089757600080fd5b503561197b565b3480156108aa57600080fd5b5061046a600480360360208110156108c157600080fd5b5035611a10565b3480156108d457600080fd5b5061046a600480360360208110156108eb57600080fd5b50356001600160a01b0316611ccc565b34801561090757600080fd5b50610379611d3d565b34801561091c57600080fd5b5061046a6004803603602081101561093357600080fd5b5035611d72565b34801561094657600080fd5b50610379611f13565b34801561095b57600080fd5b50610631611f19565b34801561097057600080fd5b50610631611f28565b34801561098557600080fd5b506103796004803603604081101561099c57600080fd5b506001600160a01b0381358116916020013516611f2c565b3480156109c057600080fd5b50610631611f57565b3480156109d557600080fd5b5061046a600480360360208110156109ec57600080fd5b50356001600160a01b0316611f66565b348015610a0857600080fd5b5061046a60048036036020811015610a1f57600080fd5b50356001600160a01b0316611fdb565b348015610a3b57600080fd5b50610350612049565b348015610a5057600080fd5b5061046a60048036036020811015610a6757600080fd5b5035612052565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610afa5780601f10610acf57610100808354040283529160200191610afa565b820191906000526020600020905b815481529060010190602001808311610add57829003601f168201915b505050505090505b90565b6000610b19610b126120f3565b84846120f7565b5060015b92915050565b60145481565b60025490565b600b5481565b600c5481565b6000610b488484846121e3565b610bbe84610b546120f3565b610bb985604051806060016040528060288152602001612e3e602891396001600160a01b038a16600090815260016020526040812090610b926120f3565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61234a16565b6120f7565b5060019392505050565b600a6020526000908152604090205460ff1681565b80610be7336110f1565b1015610c3a576040805162461bcd60e51b815260206004820152601960248201527f496e737566666963656e742053686172652042616c616e636500000000000000604482015290519081900360640190fd5b6000610c63610c47610b29565b610c57844763ffffffff6123e116565b9063ffffffff61244116565b9050610c6f3383612483565b336000908152600960205260409020544211610d7e576000610c9882606463ffffffff61244116565b60055460405191925061010090046001600160a01b0316906108fc8315029083906000818181858888f19350505050610d0a576040805162461bcd60e51b815260206004820152600f60248201526e1d1c985b9cd9995c8819985a5b1959608a1b604482015290519081900360640190fd5b336108fc610d1e848463ffffffff61258b16565b6040518115909202916000818181858888f19350505050610d78576040805162461bcd60e51b815260206004820152600f60248201526e1d1c985b9cd9995c8819985a5b1959608a1b604482015290519081900360640190fd5b50610ddd565b604051339082156108fc029083906000818181858888f19350505050610ddd576040805162461bcd60e51b815260206004820152600f60248201526e1d1c985b9cd9995c8819985a5b1959608a1b604482015290519081900360640190fd5b5050565b60055460ff1690565b6000610b19610df76120f3565b84610bb98560016000610e086120f3565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff6125cd16565b60155460ff161515600114610e9a576040805162461bcd60e51b815260206004820152601860248201527f706f6f6c206465706f736974732068617320636c6f7365640000000000000000604482015290519081900360640190fd5b6064341015610ee1576040805162461bcd60e51b815260206004820152600e60248201526d1cdd185ad9481d1bc81cdb585b1b60921b604482015290519081900360640190fd5b601454421015610f11573360008181526009602052604090206212750042019055610f0c9034612627565b610f34565b60125433600081815260096020526040902042909201909155610f349034612627565b671bc16d674ec800003410610f5357610f4e601754612723565b610f5e565b610f5e601854612723565b565b60168181548110610f6d57fe5b600091825260209091206006909102018054600182015460028301546003840154600485015460059095015460ff80861697506001600160a01b036101009687900481169795969495939491831692919091041688565b6006546001600160a01b03163314611011576040805162461bcd60e51b81526020600482018190526024820152600080516020612e66833981519152604482015290519081900360640190fd5b600680546001600160a01b0319166001600160a01b0392909216919091179055565b60135481565b6006546001600160a01b03163314611086576040805162461bcd60e51b81526020600482018190526024820152600080516020612e66833981519152604482015290519081900360640190fd5b6212750081106110cb576040805162461bcd60e51b815260206004820152600b60248201526a696e76616c69642066656560a81b604482015290519081900360640190fd5b601255565b60125481565b60105481565b6008546001600160a01b031681565b600e5481565b6001600160a01b031660009081526020819052604090205490565b6006546001600160a01b03163314611159576040805162461bcd60e51b81526020600482018190526024820152600080516020612e66833981519152604482015290519081900360640190fd5b600880546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b031633146111c8576040805162461bcd60e51b81526020600482018190526024820152600080516020612e66833981519152604482015290519081900360640190fd5b6001811180156111d957506101f481105b611218576040805162461bcd60e51b815260206004820152600b60248201526a696e76616c69642066656560a81b604482015290519081900360640190fd5b600f55565b60096020526000908152604090205481565b6006546001600160a01b0316331461127c576040805162461bcd60e51b81526020600482018190526024820152600080516020612e66833981519152604482015290519081900360640190fd5b600b55565b600183600181111561128f57fe5b14806112a6575060008360018111156112a457fe5b145b6112eb576040805162461bcd60e51b815260206004820152601160248201527057726f6e67206f7074696f6e207479706560781b604482015290519081900360640190fd5b600b5481101580156112ff5750600c548111155b61133f576040805162461bcd60e51b815260206004820152600c60248201526b496e76616c69642074696d6560a01b604482015290519081900360640190fd5b6064341015611384576040805162461bcd60e51b815260206004820152600c60248201526b18995d081d1bc81cdb585b1b60a21b604482015290519081900360640190fd5b6001600160a01b0382166000908152600a602052604090205460ff166113f1576040805162461bcd60e51b815260206004820152601760248201527f496e76616c6964202070726963652070726f7669646572000000000000000000604482015290519081900360640190fd5b601154600090156114b05760006114186064610c576011543461244190919063ffffffff16565b60055460405191925061010090046001600160a01b0316906108fc8315029083906000818181858888f19350505050611498576040805162461bcd60e51b815260206004820152601b60248201527f64657646756e6420666565207472616e73666572206661696c65640000000000604482015290519081900360640190fd5b6114a8348263ffffffff61258b16565b9150506114b3565b50345b6008546001600160a01b031660006114c9611d3d565b90506001600160a01b0382166343bebfbf846114eb848263ffffffff61258b16565b6040518363ffffffff1660e01b8152600401808381526020018281526020019250505060206040518083038186803b15801561152657600080fd5b505afa15801561153a573d6000803e3d6000fd5b505050506040513d602081101561155057600080fd5b505160408051633fabe5a360e21b8152905191925086916000916001600160a01b0384169163feaf968c9160048082019260a092909190829003018186803b15801561159b57600080fd5b505afa1580156115af573d6000803e3d6000fd5b505050506040513d60a08110156115c557600080fd5b506020015160165490915060006115e2858863ffffffff6125cd16565b90506115ec612cbf565b6040805161010081019091528060008152602001336001600160a01b031681526020018581526020018981526020018381526020018a420181526020018c600181111561163557fe5b81526020018b6001600160a01b03168152509050611652826128dc565b6016805460018181018355600092909252825160069091027fd833147d7dc355ba459fc788f669e58cfaf9dc25ddcd0702e87d69c7b51242890180548493919291839160ff1916908360028111156116a657fe5b0217905550602082015181546001600160a01b0390911661010002610100600160a81b03199091161781556040820151600180830191909155606083015160028301556080830151600383015560a0830151600483015560c08301516005830180549192909160ff191690838181111561171c57fe5b021790555060e08201518160050160016101000a8154816001600160a01b0302191690836001600160a01b031602179055505050827f5004e09dd63509bbf306b6879e966ab72429fc41d21095e36ab1ec61ab1b40f13386858f60405180856001600160a01b03166001600160a01b031681526020018481526020018381526020018260018111156117aa57fe5b60ff16815260200194505050505060405180910390a26117cb601954612723565b5050505050505050505050565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610afa5780601f10610acf57610100808354040283529160200191610afa565b6006546001600160a01b03163314611886576040805162461bcd60e51b81526020600482018190526024820152600080516020612e66833981519152604482015290519081900360640190fd5b600c55565b6006546001600160a01b031633146118d8576040805162461bcd60e51b81526020600482018190526024820152600080516020612e66833981519152604482015290519081900360640190fd5b6015805460ff19169055565b600d546001600160a01b031690565b6000610b196119006120f3565b84610bb985604051806060016040528060258152602001612ef0602591396001600061192a6120f3565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61234a16565b6000610b1961196e6120f3565b84846121e3565b60115481565b6006546001600160a01b031633146119c8576040805162461bcd60e51b81526020600482018190526024820152600080516020612e66833981519152604482015290519081900360640190fd5b60328110611a0b576040805162461bcd60e51b815260206004820152600b60248201526a696e76616c69642066656560a81b604482015290519081900360640190fd5b601155565b611a18612cbf565b60168281548110611a2557fe5b600091825260209091206040805161010081019091526006909202018054829060ff166002811115611a5357fe5b6002811115611a5e57fe5b8152815461010090046001600160a01b0316602082015260018083015460408301526002830154606083015260038301546080830152600483015460a0830152600583015460c09092019160ff1690811115611ab657fe5b6001811115611ac157fe5b81526005919091015461010090046001600160a01b031660209091015260a0810151909150421115611b245760405162461bcd60e51b8152600401808060200182810382526021815260200180612dfc6021913960400191505060405180910390fd5b60008160e0015190506000816001600160a01b031663feaf968c6040518163ffffffff1660e01b815260040160a06040518083038186803b158015611b6857600080fd5b505afa158015611b7c573d6000803e3d6000fd5b505050506040513d60a0811015611b9257600080fd5b506020015190508060018460c001516001811115611bac57fe5b1415611c015783604001518111611bfc576040805162461bcd60e51b815260206004820152600f60248201526e707269636520697320746f206c6f7760881b604482015290519081900360640190fd5b611c4c565b83604001518110611c4c576040805162461bcd60e51b815260206004820152601060248201526f0e0e4d2c6ca40d2e640e8de40d0d2ced60831b604482015290519081900360640190fd5b611c75611c6a8560600151866080015161258b90919063ffffffff16565b3386602001516128f5565b6080840151600e54611c8c9163ffffffff61258b16565b600e5560405185907fa2a53c7cb82eeb7994ccbbab71bea210cd63cfeb7823972fb5b6a49c3b0e1d4c90600090a2611cc5601a54612723565b5050505050565b6006546001600160a01b03163314611d19576040805162461bcd60e51b81526020600482018190526024820152600080516020612e66833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600a60205260409020805460ff19166001179055565b600e546000904790811115611d6857600e54611d6090829063ffffffff61258b16565b915050610b02565b6000915050610b02565b611d7a612cbf565b60168281548110611d8757fe5b600091825260209091206040805161010081019091526006909202018054829060ff166002811115611db557fe5b6002811115611dc057fe5b8152815461010090046001600160a01b0316602082015260018083015460408301526002830154606083015260038301546080830152600483015460a0830152600583015460c09092019160ff1690811115611e1857fe5b6001811115611e2357fe5b81526005919091015461010090046001600160a01b031660209091015260a08101519091504211611e9b576040805162461bcd60e51b815260206004820152601e60248201527f65787069726174696f6e206461746520686173206e6f74207061737365640000604482015290519081900360640190fd5b611ec2611eb98260600151836080015161258b90919063ffffffff16565b33601054612b79565b60405182907fa33fd53ba34795ffefaea3759c71f87d38b89ae12e40bc434c826fae0ca5358390600090a26080810151600e54611f049163ffffffff61258b16565b600e55601a54610ddd90612723565b600f5481565b600d546001600160a01b031681565b3090565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6007546001600160a01b031681565b6006546001600160a01b03163314611fb3576040805162461bcd60e51b81526020600482018190526024820152600080516020612e66833981519152604482015290519081900360640190fd5b600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6006546001600160a01b03163314612028576040805162461bcd60e51b81526020600482018190526024820152600080516020612e66833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600a60205260409020805460ff19169055565b60155460ff1681565b6006546001600160a01b0316331461209f576040805162461bcd60e51b81526020600482018190526024820152600080516020612e66833981519152604482015290519081900360640190fd5b6001811180156120af5750603281105b6120ee576040805162461bcd60e51b815260206004820152600b60248201526a696e76616c69642066656560a81b604482015290519081900360640190fd5b601055565b3390565b6001600160a01b03831661213c5760405162461bcd60e51b8152600401808060200182810382526024815260200180612ecc6024913960400191505060405180910390fd5b6001600160a01b0382166121815760405162461bcd60e51b8152600401808060200182810382526022815260200180612d5f6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166122285760405162461bcd60e51b8152600401808060200182810382526025815260200180612ea76025913960400191505060405180910390fd5b6001600160a01b03821661226d5760405162461bcd60e51b8152600401808060200182810382526023815260200180612d1a6023913960400191505060405180910390fd5b612278838383612c55565b6122bb81604051806060016040528060268152602001612d81602691396001600160a01b038616600090815260208190526040902054919063ffffffff61234a16565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546122f0908263ffffffff6125cd16565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156123d95760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561239e578181015183820152602001612386565b50505050905090810190601f1680156123cb5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000826123f057506000610b1d565b828202828482816123fd57fe5b041461243a5760405162461bcd60e51b8152600401808060200182810382526021815260200180612e1d6021913960400191505060405180910390fd5b9392505050565b600061243a83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612c5a565b6001600160a01b0382166124c85760405162461bcd60e51b8152600401808060200182810382526021815260200180612e866021913960400191505060405180910390fd5b6124d482600083612c55565b61251781604051806060016040528060228152602001612d3d602291396001600160a01b038516600090815260208190526040902054919063ffffffff61234a16565b6001600160a01b038316600090815260208190526040902055600254612543908263ffffffff61258b16565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b600061243a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061234a565b60008282018381101561243a576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b038216612682576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b61268e60008383612c55565b6002546126a1908263ffffffff6125cd16565b6002556001600160a01b0382166000908152602081905260409020546126cd908263ffffffff6125cd16565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b60075460408051639901f16560e01b815290516001600160a01b03909216918291639901f165916004808301926020929190829003018186803b15801561276957600080fd5b505afa15801561277d573d6000803e3d6000fd5b505050506040513d602081101561279357600080fd5b50511561280d576001600160a01b03811663750a7ea36127ba84600463ffffffff6123e116565b6040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b1580156127f057600080fd5b505af1158015612804573d6000803e3d6000fd5b50505050610ddd565b6000816001600160a01b031663f331bff26040518163ffffffff1660e01b815260040160206040518083038186803b15801561284857600080fd5b505afa15801561285c573d6000803e3d6000fd5b505050506040513d602081101561287257600080fd5b50511115610ddd57806001600160a01b03166312b3368d836040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b1580156128c057600080fd5b505af11580156128d4573d6000803e3d6000fd5b505050505050565b600e546128ef908263ffffffff6125cd16565b600e5550565b600e548311156129365760405162461bcd60e51b815260040180806020018281038252602c815260200180612da7602c913960400191505060405180910390fd5b4783111561298b576040805162461bcd60e51b815260206004820152601b60248201527f696e737566666963656e742062616c616e636520696e20706f6f6c0000000000604482015290519081900360640190fd5b806001600160a01b0316826001600160a01b031614612ac25760006129c06064610c57600f548761244190919063ffffffff16565b90508015612abc576040516001600160a01b0384169082156108fc029083906000818181858888f19350505050612a3e576040805162461bcd60e51b815260206004820152601960248201527f657865726369736572207472616e73666572206661696c656400000000000000604482015290519081900360640190fd5b6001600160a01b0382166108fc612a5b868463ffffffff61258b16565b6040518115909202916000818181858888f19350505050612abc576040805162461bcd60e51b81526020600482015260166024820152751dda5b9b995c881d1c985b9cd9995c8819985a5b195960521b604482015290519081900360640190fd5b50612b31565b6040516001600160a01b0382169084156108fc029085906000818181858888f19350505050612b31576040805162461bcd60e51b81526020600482015260166024820152751dda5b9b995c881d1c985b9cd9995c8819985a5b195960521b604482015290519081900360640190fd5b604080518481526001600160a01b038316602082015281517f9b5d1a613fa5f0790b36b13103706e31fca06b229d87e9915b29fc20c1d76490929181900390910190a1505050565b600e54831115612bba5760405162461bcd60e51b8152600401808060200182810382526029815260200180612dd36029913960400191505060405180910390fd5b6000612bd16064610c57868563ffffffff61244116565b90508015612c4f576040516001600160a01b0384169082156108fc029083906000818181858888f19350505050612c4f576040805162461bcd60e51b815260206004820152601e60248201527f676f6f642073616d61726974616e207472616e73666572206661696c65640000604482015290519081900360640190fd5b50505050565b505050565b60008183612ca95760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561239e578181015183820152602001612386565b506000838581612cb557fe5b0495945050505050565b604080516101008101909152806000815260200160006001600160a01b031681526020016000815260200160008152602001600081526020016000815260200160006001811115612d0c57fe5b815260006020909101529056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365696e737566666963656e7420706f6f6c2062616c616e636520617661696c61626c6520746f207061796f7574696e737566666963656e74206c6f636b656420706f6f6c2062616c616e636520746f20756e6c6f636b65787069726174696f6e2064617465206d617267696e2068617320706173736564536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212208598787fda06f075e740a5c453762141f6f8ac6e5ad928a8bac428d92d7b427f64736f6c63430006060033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000005f4ec3df9cbd43714fe2740f5e3616155c5b8419000000000000000000000000c3771668ac4d9c727f54dbde11ed94acadd5ff8600000000000000000000000079bc59b174d4579cf16734864522a58bd92eb504000000000000000000000000000000000000000000000000000000000000000b506f6f6c2053686172657300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000047045544800000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): Pool Shares
Arg [1] : symbol_ (string): pETH
Arg [2] : pp_ (address): 0x5f4eC3Df9cbd43714FE2740f5E3616155c5b8419
Arg [3] : biop_ (address): 0xC3771668ac4d9C727f54dBDe11ed94acAdD5fF86
Arg [4] : rateCalc_ (address): 0x79bc59B174D4579CF16734864522A58Bd92eb504
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000005f4ec3df9cbd43714fe2740f5e3616155c5b8419
Arg [3] : 000000000000000000000000c3771668ac4d9c727f54dbde11ed94acadd5ff86
Arg [4] : 00000000000000000000000079bc59b174d4579cf16734864522a58bd92eb504
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [6] : 506f6f6c20536861726573000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [8] : 7045544800000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
24147:14400:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;11043:83:0;;5:9:-1;2:2;;;27:1;24;17:12;2:2;11043:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;11043:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13149:169;;5:9:-1;2:2;;;27:1;24;17:12;2:2;13149:169:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;13149:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;24849:24;;5:9:-1;2:2;;;27:1;24;17:12;2:2;24849:24:0;;;:::i;:::-;;;;;;;;;;;;;;;;12118:100;;5:9:-1;2:2;;;27:1;24;17:12;2:2;12118:100:0;;;:::i;24472:22::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;24472:22:0;;;:::i;24501:::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;24501:22:0;;;:::i;13800:321::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;13800:321:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;13800:321:0;;;;;;;;;;;;;;;;;:::i;24423:42::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;24423:42:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;24423:42:0;-1:-1:-1;;;;;24423:42:0;;:::i;32209:659::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;32209:659:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;32209:659:0;;:::i;:::-;;11970:83;;5:9:-1;2:2;;;27:1;24;17:12;2:2;11970:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;14530:218;;5:9:-1;2:2;;;27:1;24;17:12;2:2;14530:218:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;14530:218:0;;;;;;;;:::i;31370:621::-;;;:::i;24910:23::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;24910:23:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;24910:23:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24910:23:0;-1:-1:-1;;;;;24910:23:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24910:23:0;;;;;;;-1:-1:-1;24910:23:0;;;;;;;;;-1:-1:-1;24910:23:0;-1:-1:-1;;;;;;24910:23:0;30213:105;;5:9:-1;2:2;;;27:1;24;17:12;2:2;30213:105:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;30213:105:0;-1:-1:-1;;;;;30213:105:0;;:::i;24812:30::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;24812:30:0;;;:::i;29851:211::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;29851:211:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;29851:211:0;;:::i;24766:39::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;24766:39:0;;;:::i;24654:30::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;24654:30:0;;;:::i;24303:24::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;24303:24:0;;;:::i;:::-;;;;-1:-1:-1;;;;;24303:24:0;;;;;;;;;;;;;;24563:27;;5:9:-1;2:2;;;27:1;24;17:12;2:2;24563:27:0;;;:::i;12281:119::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;12281:119:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;12281:119:0;-1:-1:-1;;;;;12281:119:0;;:::i;27216:101::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;27216:101:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;27216:101:0;-1:-1:-1;;;;;27216:101:0;;:::i;28805:192::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;28805:192:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;28805:192:0;;:::i;24371:45::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;24371:45:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;24371:45:0;-1:-1:-1;;;;;24371:45:0;;:::i;28345:92::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;28345:92:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;28345:92:0;;:::i;33164:1717::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;33164:1717:0;;;;;-1:-1:-1;;;;;33164:1717:0;;;;;;;;;;:::i;11245:87::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;11245:87:0;;;:::i;28079:92::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;28079:92:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;28079:92:0;;:::i;30688:74::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;30688:74:0;;;:::i;26926:99::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;26926:99:0;;;:::i;15251:269::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;15251:269:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;15251:269:0;;;;;;;;:::i;12613:175::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;12613:175:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;12613:175:0;;;;;;;;:::i;24709:32::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;24709:32:0;;;:::i;29516:198::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;29516:198:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;29516:198:0;;:::i;34996:945::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;34996:945:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;34996:945:0;;:::i;27505:97::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;27505:97:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;27505:97:0;-1:-1:-1;;;;;27505:97:0;;:::i;26046:252::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;26046:252:0;;;:::i;36052:428::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;36052:428:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;36052:428:0;;:::i;24597:32::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;24597:32:0;;;:::i;24530:26::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;24530:26:0;;;:::i;28521:91::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;28521:91:0;;;:::i;12851:151::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;12851:151:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;12851:151:0;;;;;;;;;;:::i;24277:19::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;24277:19:0;;;:::i;30473:111::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;30473:111:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;30473:111:0;-1:-1:-1;;;;;30473:111:0;;:::i;27805:100::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;27805:100:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;27805:100:0;-1:-1:-1;;;;;27805:100:0;;:::i;24880:23::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;24880:23:0;;;:::i;29181:179::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;29181:179:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;29181:179:0;;:::i;11043:83::-;11113:5;11106:12;;;;;;;;-1:-1:-1;;11106:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11080:13;;11106:12;;11113:5;;11106:12;;11113:5;11106:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11043:83;;:::o;13149:169::-;13232:4;13249:39;13258:12;:10;:12::i;:::-;13272:7;13281:6;13249:8;:39::i;:::-;-1:-1:-1;13306:4:0;13149:169;;;;;:::o;24849:24::-;;;;:::o;12118:100::-;12198:12;;12118:100;:::o;24472:22::-;;;;:::o;24501:::-;;;;:::o;13800:321::-;13906:4;13923:36;13933:6;13941:9;13952:6;13923:9;:36::i;:::-;13970:121;13979:6;13987:12;:10;:12::i;:::-;14001:89;14039:6;14001:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14001:19:0;;;;;;:11;:19;;;;;;14021:12;:10;:12::i;:::-;-1:-1:-1;;;;;14001:33:0;;;;;;;;;;;;-1:-1:-1;14001:33:0;;;:89;;:37;:89;:::i;:::-;13970:8;:121::i;:::-;-1:-1:-1;14109:4:0;13800:321;;;;;:::o;24423:42::-;;;;;;;;;;;;;;;:::o;32209:659::-;32294:6;32269:21;32279:10;32269:9;:21::i;:::-;:31;;32260:70;;;;;-1:-1:-1;;;32260:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;32343:22;32368:52;32406:13;:11;:13::i;:::-;32368:33;:6;32379:21;32368:33;:10;:33;:::i;:::-;:37;:52;:37;:52;:::i;:::-;32343:77;;32431:25;32437:10;32449:6;32431:5;:25::i;:::-;32503:10;32490:24;;;;:12;:24;;;;;;32471:15;:43;32467:394;;32565:15;32583:23;:14;32602:3;32583:23;:18;:23;:::i;:::-;32629:7;;:21;;32565:41;;-1:-1:-1;32629:7:0;;;-1:-1:-1;;;;;32629:7:0;;:21;;;;;32565:41;;32629:21;;;;32565:41;32629:7;:21;;;;;;;32621:49;;;;;-1:-1:-1;;;32621:49:0;;;;;;;;;;;;-1:-1:-1;;;32621:49:0;;;;;;;;;;;;;;;32693:10;:44;32709:27;:14;32728:7;32709:27;:18;:27;:::i;:::-;32693:44;;;;;;;;;;;;;;;;;;;;;32685:72;;;;;-1:-1:-1;;;32685:72:0;;;;;;;;;;;;-1:-1:-1;;;32685:72:0;;;;;;;;;;;;;;;32467:394;;;;32798:31;;:10;;:31;;;;;32814:14;;32798:31;;;;32814:14;32798:10;:31;;;;;;;32790:59;;;;;-1:-1:-1;;;32790:59:0;;;;;;;;;;;;-1:-1:-1;;;32790:59:0;;;;;;;;;;;;;;;32209:659;;:::o;11970:83::-;12036:9;;;;11970:83;:::o;14530:218::-;14618:4;14635:83;14644:12;:10;:12::i;:::-;14658:7;14667:50;14706:10;14667:11;:25;14679:12;:10;:12::i;:::-;-1:-1:-1;;;;;14667:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;14667:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;31370:621::-;31423:4;;;;:12;;:4;:12;31415:49;;;;;-1:-1:-1;;;31415:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;31496:3;31483:9;:16;;31475:43;;;;;-1:-1:-1;;;31475:43:0;;;;;;;;;;;;-1:-1:-1;;;31475:43:0;;;;;;;;;;;;;;;31551:9;;31533:15;:27;31529:291;;;31590:10;31577:24;;;;:12;:24;;;;;31622:7;31604:15;:25;31577:52;;31644:28;;31662:9;31644:5;:28::i;:::-;31529:291;;;31750:15;;31718:10;31705:24;;;;:12;:24;;;;;31732:15;:33;;;31705:60;;;31780:28;;31798:9;31780:5;:28::i;:::-;31849:19;31836:9;:32;31832:152;;31885:27;31899:12;;31885:13;:27::i;:::-;31832:152;;;31945:27;31959:12;;31945:13;:27::i;:::-;31370:621::o;24910:23::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24910:23:0;;;;;;;;;;;;;;;;;;;;;;;;:::o;30213:105::-;25211:5;;-1:-1:-1;;;;;25211:5:0;25220:10;25211:19;25203:64;;;;;-1:-1:-1;;;25203:64:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25203:64:0;;;;;;;;;;;;;;;30293:5:::1;:17:::0;;-1:-1:-1;;;;;;30293:17:0::1;-1:-1:-1::0;;;;;30293:17:0;;;::::1;::::0;;;::::1;::::0;;30213:105::o;24812:30::-;;;;:::o;29851:211::-;25211:5;;-1:-1:-1;;;;;25211:5:0;25220:10;25211:19;25203:64;;;;;-1:-1:-1;;;25203:64:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25203:64:0;;;;;;;;;;;;;;;29987:7:::1;29969:15;:25;29937:73;;;::::0;;-1:-1:-1;;;29937:73:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;29937:73:0;;;;;;;;;;;;;::::1;;30021:15;:33:::0;29851:211::o;24766:39::-;;;;:::o;24654:30::-;;;;:::o;24303:24::-;;;-1:-1:-1;;;;;24303:24:0;;:::o;24563:27::-;;;;:::o;12281:119::-;-1:-1:-1;;;;;12374:18:0;12347:7;12374:18;;;;;;;;;;;;12281:119::o;27216:101::-;25211:5;;-1:-1:-1;;;;;25211:5:0;25220:10;25211:19;25203:64;;;;;-1:-1:-1;;;25203:64:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25203:64:0;;;;;;;;;;;;;;;27290:9:::1;:18:::0;;-1:-1:-1;;;;;;27290:18:0::1;-1:-1:-1::0;;;;;27290:18:0;;;::::1;::::0;;;::::1;::::0;;27216:101::o;28805:192::-;25211:5;;-1:-1:-1;;;;;25211:5:0;25220:10;25211:19;25203:64;;;;;-1:-1:-1;;;25203:64:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25203:64:0;;;;;;;;;;;;;;;28910:1:::1;28894:13;:17;:40;;;;;28931:3;28915:13;:19;28894:40;28886:64;;;::::0;;-1:-1:-1;;;28886:64:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;28886:64:0;;;;;;;;;;;;;::::1;;28961:12;:28:::0;28805:192::o;24371:45::-;;;;;;;;;;;;;:::o;28345:92::-;25211:5;;-1:-1:-1;;;;;25211:5:0;25220:10;25211:19;25203:64;;;;;-1:-1:-1;;;25203:64:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25203:64:0;;;;;;;;;;;;;;;28412:7:::1;:17:::0;28345:92::o;33164:1717::-;33282:15;33273:5;:24;;;;;;;;;:51;;;-1:-1:-1;33310:14:0;33301:5;:23;;;;;;;;;33273:51;33251:118;;;;;-1:-1:-1;;;33251:118:0;;;;;;;;;;;;-1:-1:-1;;;33251:118:0;;;;;;;;;;;;;;;33411:7;;33402:5;:16;;:36;;;;;33431:7;;33422:5;:16;;33402:36;33380:98;;;;;-1:-1:-1;;;33380:98:0;;;;;;;;;;;;-1:-1:-1;;;33380:98:0;;;;;;;;;;;;;;;33510:3;33497:9;:16;;33489:41;;;;;-1:-1:-1;;;33489:41:0;;;;;;;;;;;;-1:-1:-1;;;33489:41:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;33549:17:0;;;;;;:12;:17;;;;;;;;33541:53;;;;;-1:-1:-1;;;33541:53:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;33637:13;;33605:17;;33637;33633:292;;33671:11;33685:37;33718:3;33685:28;33699:13;;33685:9;:13;;:28;;;;:::i;:37::-;33745:7;;:17;;33671:51;;-1:-1:-1;33745:7:0;;;-1:-1:-1;;;;;33745:7:0;;:17;;;;;33671:51;;33745:17;;;;33671:51;33745:7;:17;;;;;;;33737:57;;;;;-1:-1:-1;;;33737:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;33824:18;:9;33838:3;33824:18;:13;:18;:::i;:::-;33809:33;;33633:292;;;;-1:-1:-1;33904:9:0;33633:292;33960:9;;-1:-1:-1;;;;;33960:9:0;33937:11;34001:17;:15;:17::i;:::-;33981:37;-1:-1:-1;;;;;;34041:7:0;;;34049:12;34063:27;33981:37;34049:12;34063:27;:13;:27;:::i;:::-;34041:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;34041:50:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;34041:50:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;34041:50:0;34233:31;;;-1:-1:-1;;;34233:31:0;;;;34041:50;;-1:-1:-1;34187:3:0;;34127:35;;-1:-1:-1;;;;;34233:29:0;;;;;:31;;;;;;;;;;;;;;;:29;:31;;;2:2:-1;;;;27:1;24;17:12;2:2;34233:31:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;34233:31:0;;;;;;;15:3:-1;10;7:12;4:2;;;32:1;29;22:12;4:2;-1:-1;34233:31:0;;;34294:7;:14;34233:31;;-1:-1:-1;34275:16:0;34339:27;:9;34353:12;34339:27;:13;:27;:::i;:::-;34319:47;;34377:16;;:::i;:::-;34396:305;;;;;;;;;;-1:-1:-1;34396:305:0;;;;34444:10;-1:-1:-1;;;;;34396:305:0;;;;;34477:11;34396:305;;;;34504:12;34396:305;;;;34531:9;34396:305;;;;34621:5;34603:15;:23;34396:305;;;;34667:5;34396:305;;;;;;;;;;;;34687:3;-1:-1:-1;;;;;34396:305:0;;;;34377:324;;34712:15;34717:9;34712:4;:15::i;:::-;34738:7;27:10:-1;;39:1;23:18;;;45:23;;-1:-1;34738:16:0;;;;;;;;;;;;;;34751:2;;34738:16;;;;;-1:-1:-1;;34738:16:0;;;;;;;;;;;;;;;-1:-1:-1;34738:16:0;;;;;;-1:-1:-1;;;;;34738:16:0;;;;;-1:-1:-1;;;;;;34738:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;34738:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34738:16:0;;;;;-1:-1:-1;;;;;34738:16:0;;;;;;;;34777:8;34770:68;34787:10;34807:11;34821:9;34832:5;34770:68;;;;-1:-1:-1;;;;;34770:68:0;-1:-1:-1;;;;;34770:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34849:24;34863:9;;34849:13;:24::i;:::-;33164:1717;;;;;;;;;;;:::o;11245:87::-;11317:7;11310:14;;;;;;;;-1:-1:-1;;11310:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11284:13;;11310:14;;11317:7;;11310:14;;11317:7;11310:14;;;;;;;;;;;;;;;;;;;;;;;;28079:92;25211:5;;-1:-1:-1;;;;;25211:5:0;25220:10;25211:19;25203:64;;;;;-1:-1:-1;;;25203:64:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25203:64:0;;;;;;;;;;;;;;;28146:7:::1;:17:::0;28079:92::o;30688:74::-;25211:5;;-1:-1:-1;;;;;25211:5:0;25220:10;25211:19;25203:64;;;;;-1:-1:-1;;;25203:64:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25203:64:0;;;;;;;;;;;;;;;30742:4:::1;:12:::0;;-1:-1:-1;;30742:12:0::1;::::0;;30688:74::o;26926:99::-;27006:11;;-1:-1:-1;;;;;27006:11:0;26926:99;:::o;15251:269::-;15344:4;15361:129;15370:12;:10;:12::i;:::-;15384:7;15393:96;15432:15;15393:96;;;;;;;;;;;;;;;;;:11;:25;15405:12;:10;:12::i;:::-;-1:-1:-1;;;;;15393:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;15393:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;12613:175::-;12699:4;12716:42;12726:12;:10;:12::i;:::-;12740:9;12751:6;12716:9;:42::i;24709:32::-;;;;:::o;29516:198::-;25211:5;;-1:-1:-1;;;;;25211:5:0;25220:10;25211:19;25203:64;;;;;-1:-1:-1;;;25203:64:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25203:64:0;;;;;;;;;;;;;;;29647:2:::1;29630:14;:19;29599:66;;;::::0;;-1:-1:-1;;;29599:66:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;29599:66:0;;;;;;;;;;;;;::::1;;29676:13;:30:::0;29516:198::o;34996:945::-;35066:20;;:::i;:::-;35089:7;35097:8;35089:17;;;;;;;;;;;;;;;;35066:40;;;;;;;;;35089:17;;;;;35066:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35066:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35066:40:0;;;;;;35144:17;;;;;;-1:-1:-1;35125:15:0;:36;;35117:82;;;;-1:-1:-1;;;35117:82:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35210:35;35270:6;:20;;;35210:81;;35305:18;35333:13;-1:-1:-1;;;;;35333:29:0;;:31;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;35333:31:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;35333:31:0;;;;;;;15:3:-1;10;7:12;4:2;;;32:1;29;22:12;4:2;-1:-1;35333:31:0;;;;-1:-1:-1;35333:31:0;35454:15;35433:6;:17;;;:36;;;;;;;;;35429:225;;;35509:6;:18;;;35494:12;:33;35486:61;;;;;-1:-1:-1;;;35486:61:0;;;;;;;;;;;;-1:-1:-1;;;35486:61:0;;;;;;;;;;;;;;;35429:225;;;35603:6;:18;;;35588:12;:33;35580:62;;;;;-1:-1:-1;;;35580:62:0;;;;;;;;;;;;-1:-1:-1;;;35580:62:0;;;;;;;;;;;;;;;35708:79;35715:44;35738:6;:20;;;35715:6;:18;;;:22;;:44;;;;:::i;:::-;35761:10;35773:6;:13;;;35708:6;:79::i;:::-;35840:18;;;;35823:12;;:36;;;:16;:36;:::i;:::-;35808:12;:51;35875:18;;35884:8;;35875:18;;;;;35904:29;35918:14;;35904:13;:29::i;:::-;34996:945;;;;;:::o;27505:97::-;25211:5;;-1:-1:-1;;;;;25211:5:0;25220:10;25211:19;25203:64;;;;;-1:-1:-1;;;25203:64:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25203:64:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;27566:20:0::1;;::::0;;;:12:::1;:20;::::0;;;;:27;;-1:-1:-1;;27566:27:0::1;27589:4;27566:27;::::0;;27505:97::o;26046:252::-;26177:12;;26093:7;;26131:21;;26167:22;;26163:128;;;26225:12;;26213:25;;:7;;:25;:11;:25;:::i;:::-;26206:32;;;;;26163:128;26278:1;26271:8;;;;;36052:428;36120:20;;:::i;:::-;36143:7;36151:8;36143:17;;;;;;;;;;;;;;;;36120:40;;;;;;;;;36143:17;;;;;36120:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36120:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36120:40:0;;;;;;36197:17;;;;;;-1:-1:-1;36179:15:0;:35;36171:78;;;;;-1:-1:-1;;;36171:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;36260:76;36267:44;36290:6;:20;;;36267:6;:18;;;:22;;:44;;;;:::i;:::-;36313:10;36325;;36260:6;:76::i;:::-;36352:16;;36359:8;;36352:16;;;;;36411:18;;;;36394:12;;:36;;;:16;:36;:::i;:::-;36379:12;:51;36457:14;;36443:29;;:13;:29::i;24597:32::-;;;;:::o;24530:26::-;;;-1:-1:-1;;;;;24530:26:0;;:::o;28521:91::-;28599:4;28521:91;:::o;12851:151::-;-1:-1:-1;;;;;12967:18:0;;;12940:7;12967:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12851:151::o;24277:19::-;;;-1:-1:-1;;;;;24277:19:0;;:::o;30473:111::-;25211:5;;-1:-1:-1;;;;;25211:5:0;25220:10;25211:19;25203:64;;;;;-1:-1:-1;;;25203:64:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25203:64:0;;;;;;;;;;;;;;;30556:7:::1;:20:::0;;-1:-1:-1;;;;;30556:20:0;;::::1;;;-1:-1:-1::0;;;;;;30556:20:0;;::::1;::::0;;;::::1;::::0;;30473:111::o;27805:100::-;25211:5;;-1:-1:-1;;;;;25211:5:0;25220:10;25211:19;25203:64;;;;;-1:-1:-1;;;25203:64:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25203:64:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;27869:20:0::1;27892:5;27869:20:::0;;;:12:::1;:20;::::0;;;;:28;;-1:-1:-1;;27869:28:0::1;::::0;;27805:100::o;24880:23::-;;;;;;:::o;29181:179::-;25211:5;;-1:-1:-1;;;;;25211:5:0;25220:10;25211:19;25203:64;;;;;-1:-1:-1;;;25203:64:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25203:64:0;;;;;;;;;;;;;;;29280:1:::1;29266:11;:15;:35;;;;;29299:2;29285:11;:16;29266:35;29258:59;;;::::0;;-1:-1:-1;;;29258:59:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;29258:59:0;;;;;;;;;;;;;::::1;;29328:10;:24:::0;29181:179::o;574:106::-;662:10;574:106;:::o;18398:346::-;-1:-1:-1;;;;;18500:19:0;;18492:68;;;;-1:-1:-1;;;18492:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18579:21:0;;18571:68;;;;-1:-1:-1;;;18571:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18652:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18704:32;;;;;;;;;;;;;;;;;18398:346;;;:::o;16010:539::-;-1:-1:-1;;;;;16116:20:0;;16108:70;;;;-1:-1:-1;;;16108:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16197:23:0;;16189:71;;;;-1:-1:-1;;;16189:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16273:47;16294:6;16302:9;16313:6;16273:20;:47::i;:::-;16353:71;16375:6;16353:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16353:17:0;;:9;:17;;;;;;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;16333:17:0;;;:9;:17;;;;;;;;;;;:91;;;;16458:20;;;;;;;:32;;16483:6;16458:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;16435:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;16506:35;;;;;;;16435:20;;16506:35;;;;;;;;;;;;;16010:539;;;:::o;2706:192::-;2792:7;2828:12;2820:6;;;;2812:29;;;;-1:-1:-1;;;2812:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;2812:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;2864:5:0;;;2706:192::o;3157:471::-;3215:7;3460:6;3456:47;;-1:-1:-1;3490:1:0;3483:8;;3456:47;3527:5;;;3531:1;3527;:5;:1;3551:5;;;;;:10;3543:56;;;;-1:-1:-1;;;3543:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3619:1;3157:471;-1:-1:-1;;;3157:471:0:o;4104:132::-;4162:7;4189:39;4193:1;4196;4189:39;;;;;;;;;;;;;;;;;:3;:39::i;17542:418::-;-1:-1:-1;;;;;17626:21:0;;17618:67;;;;-1:-1:-1;;;17618:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17698:49;17719:7;17736:1;17740:6;17698:20;:49::i;:::-;17781:68;17804:6;17781:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17781:18:0;;:9;:18;;;;;;;;;;;;:68;;:22;:68;:::i;:::-;-1:-1:-1;;;;;17760:18:0;;:9;:18;;;;;;;;;;:89;17875:12;;:24;;17892:6;17875:24;:16;:24;:::i;:::-;17860:12;:39;17915:37;;;;;;;;17941:1;;-1:-1:-1;;;;;17915:37:0;;;;;;;;;;;;17542:418;;:::o;2267:136::-;2325:7;2352:43;2356:1;2359;2352:43;;;;;;;;;;;;;;;;;:3;:43::i;1803:181::-;1861:7;1893:5;;;1917:6;;;;1909:46;;;;;-1:-1:-1;;;1909:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;16831:378;-1:-1:-1;;;;;16915:21:0;;16907:65;;;;;-1:-1:-1;;;16907:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;16985:49;17014:1;17018:7;17027:6;16985:20;:49::i;:::-;17062:12;;:24;;17079:6;17062:24;:16;:24;:::i;:::-;17047:12;:39;-1:-1:-1;;;;;17118:18:0;;:9;:18;;;;;;;;;;;:30;;17141:6;17118:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;17097:18:0;;:9;:18;;;;;;;;;;;:51;;;;17164:37;;;;;;;17097:18;;:9;;17164:37;;;;;;;;;;16831:378;;:::o;30917:274::-;31000:4;;31020:15;;;-1:-1:-1;;;31020:15:0;;;;-1:-1:-1;;;;;31000:4:0;;;;;;31020:13;;:15;;;;;;;;;;;;;;31000:4;31020:15;;;2:2:-1;;;;27:1;24;17:12;2:2;31020:15:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;31020:15:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;31020:15:0;31016:168;;;-1:-1:-1;;;;;31052:18:0;;;31071:13;:6;31082:1;31071:13;:10;:13;:::i;:::-;31052:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;31052:33:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;31052:33:0;;;;31016:168;;;31134:1;31107;-1:-1:-1;;;;;31107:22:0;;:24;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;31107:24:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;31107:24:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;31107:24:0;:28;31103:81;;;31151:1;-1:-1:-1;;;;;31151:13:0;;31165:6;31151:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;31151:21:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;31151:21:0;;;;30917:274;;:::o;36673:97::-;36738:12;;:24;;36755:6;36738:24;:16;:24;:::i;:::-;36723:12;:39;-1:-1:-1;36673:97:0:o;37799:743::-;37920:12;;37910:6;:22;;37902:79;;;;-1:-1:-1;;;37902:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38010:21;38000:6;:31;;37992:71;;;;;-1:-1:-1;;;37992:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;38091:6;-1:-1:-1;;;;;38078:19:0;:9;-1:-1:-1;;;;;38078:19:0;;38074:423;;38148:11;38162:33;38191:3;38162:24;38173:12;;38162:6;:10;;:24;;;;:::i;:33::-;38148:47;-1:-1:-1;38214:7:0;;38210:187;;38250:19;;-1:-1:-1;;;;;38250:14:0;;;:19;;;;;38265:3;;38250:19;;;;38265:3;38250:14;:19;;;;;;;38242:57;;;;;-1:-1:-1;;;38242:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38326:11:0;;:28;38338:15;:6;38349:3;38338:15;:10;:15;:::i;:::-;38326:28;;;;;;;;;;;;;;;;;;;;;38318:63;;;;;-1:-1:-1;;;38318:63:0;;;;;;;;;;;;-1:-1:-1;;;38318:63:0;;;;;;;;;;;;;;;38074:423;;;;38439:19;;-1:-1:-1;;;;;38439:11:0;;;:19;;;;;38451:6;;38439:19;;;;38451:6;38439:11;:19;;;;;;;38431:54;;;;;-1:-1:-1;;;38431:54:0;;;;;;;;;;;;-1:-1:-1;;;38431:54:0;;;;;;;;;;;;;;;38512:22;;;;;;-1:-1:-1;;;;;38512:22:0;;;;;;;;;;;;;;;;;;;37799:743;;;:::o;37027:347::-;37142:12;;37132:6;:22;;37124:76;;;;-1:-1:-1;;;37124:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37211:11;37225:25;37246:3;37225:16;:6;37236:4;37225:16;:10;:16;:::i;:25::-;37211:39;-1:-1:-1;37265:7:0;;37261:106;;37297:23;;-1:-1:-1;;;;;37297:18:0;;;:23;;;;;37316:3;;37297:23;;;;37316:3;37297:18;:23;;;;;;;37289:66;;;;;-1:-1:-1;;;37289:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;37027:347;;;;:::o;19769:92::-;;;;:::o;4732:278::-;4818:7;4853:12;4846:5;4838:28;;;;-1:-1:-1;;;4838:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;4838:28:0;;4877:9;4893:1;4889;:5;;;;;;;4732:278;-1:-1:-1;;;;;4732:278:0:o;24147:14400::-;;;;;;;;;;;-1:-1:-1;24147:14400:0;;;;;-1:-1:-1;;;;;24147:14400:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o
Swarm Source
ipfs://8598787fda06f075e740a5c453762141f6f8ac6e5ad928a8bac428d92d7b427f
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.