Polygon Sponsored slots available. Book your slot here!
Overview ERC-20
Price
$0.00 @ 0.000074 MATIC
Fully Diluted Market Cap
Total Supply:
593,476,991.341854 TRO
Holders:
6,684 addresses
Transfers:
-
Contract:
Decimals:
18
Official Site:
[ Download CSV Export ]
[ Download CSV Export ]
OVERVIEW
Trodl is the next generation all in one crypto application to connect the world with the future of finance.Market
Volume (24H) | : | $0.74 |
Market Capitalization | : | $0.00 |
Circulating Supply | : | 0.00 TRO |
Market Data Source: Coinmarketcap |
Update? Click here to update the token ICO / general information
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Trodl
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-07-16 */ // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v3.1.0/contracts/access/Ownable.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.0; // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v3.1.0/contracts/GSN/Context.sol /* * @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; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v3.1.0/contracts/utils/Address.sol /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v3.1.0/contracts/math/SafeMath.sol /** * @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; } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v3.1.0/contracts/token/ERC20/IERC20.sol /** * @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); } contract Trodl is Context, IERC20, Ownable { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _refOwned; mapping (address => uint256) private _tokOwned; mapping (address => mapping (address => uint256)) private _allowances; // _isExempted from transaction rewards mapping (address => bool) private _isExempted; address[] private _exempted; uint256 private constant MAX = ~uint256(0); uint256 private _tokTotalSupply = 600 * 10**6 * 10**18; uint256 private _refTotalSupply = (MAX - (MAX % _tokTotalSupply)); uint256 private _tokFeeTotal; uint256 private _tokBurned; string private _name = 'Trodl'; string private _symbol = 'TRO'; uint8 private _decimals = 18; constructor () public { _refOwned[_msgSender()] = _refTotalSupply; emit Transfer(address(0), _msgSender(), _tokTotalSupply); } function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function decimals() public view returns (uint8) { return _decimals; } function totalSupply() public view override returns (uint256) { return _tokTotalSupply; } function balanceOf(address account) public view override returns (uint256) { if (_isExempted[account]) return _tokOwned[account]; return tokenFromSplit(_refOwned[account]); } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } 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; } function isExempted(address account) public view returns (bool) { return _isExempted[account]; } function totalFees() public view returns (uint256) { return _tokFeeTotal; } function totalBurned() public view returns (uint256) { return _tokBurned; } function distribute(uint256 tokAmount, bool burn) public { address sender = _msgSender(); require(!_isExempted[sender], "Trodl: Exempted addresses not allowed"); if (!burn) { (uint256 refAmount,,,,) = _getValues(tokAmount); _refOwned[sender] = _refOwned[sender].sub(refAmount); _refTotalSupply = _refTotalSupply.sub(refAmount); _tokFeeTotal = _tokFeeTotal.add(tokAmount); } else { (uint256 refAmount,,,,) = _getValues(tokAmount); _refOwned[sender] = _refOwned[sender].sub(refAmount); uint256 tokAmountHalf = tokAmount.div(2); _refTotalSupply = _refTotalSupply.sub(refAmount); _tokFeeTotal = _tokFeeTotal.add(tokAmountHalf); _tokBurned = _tokBurned.add(tokAmountHalf); } } function burn(uint256 tokAmount) public { address sender = _msgSender(); require(!_isExempted[sender], "Trodl: Exempted addresses cannot burn"); (uint256 refAmount,,,,) = _getValues(tokAmount); _refOwned[sender] = _refOwned[sender].sub(refAmount); _refTotalSupply = _refTotalSupply.sub(refAmount); _tokBurned = _tokBurned.add(tokAmount); } function SplitFromToken(uint256 tokAmount, bool deductTransferFeeAndBurn) public view returns(uint256) { require(tokAmount <= (_tokTotalSupply + _tokFeeTotal), "Trodl: Amount must be less than supply"); if (!deductTransferFeeAndBurn) { (uint256 refAmount,,,,) = _getValues(tokAmount); return refAmount; } else { (,uint256 refTransferAmount,,,) = _getValues(tokAmount); return refTransferAmount; } } function tokenFromSplit(uint256 refAmount) public view returns(uint256) { require(refAmount <= _refTotalSupply, "Trodl: Amount must be less than total split"); if(refAmount == 0) return 0; uint256 currentRate = _getRate(); return refAmount.div(currentRate); } function exemptAccount(address account) external onlyOwner() { require(!_isExempted[account], "Trodl: Account is already exempted"); if(_refOwned[account] > 0) { _tokOwned[account] = tokenFromSplit(_refOwned[account]); } _isExempted[account] = true; _exempted.push(account); } function obligateAccount(address account) external onlyOwner() { require(_isExempted[account], "Trodl: Account is not Exempted"); for (uint256 i = 0; i < _exempted.length; i++) { if (_exempted[i] == account) { uint256 _rBalance = SplitFromToken(_tokOwned[account], false); _refTotalSupply = _refTotalSupply.sub(_refOwned[account].sub(_rBalance)); _refOwned[account] = _rBalance; _tokOwned[account] = 0; _isExempted[account] = false; _exempted[i] = _exempted[_exempted.length - 1]; _exempted.pop(); break; } } } function _approve(address owner, address spender, uint256 amount) private { 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); } function _transfer(address sender, address recipient, uint256 amount) private { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Trodl: Transfer amount must be greater than zero"); if (_isExempted[sender] && !_isExempted[recipient]) { _transferFromExempted(sender, recipient, amount); } else if (!_isExempted[sender] && _isExempted[recipient]) { _transferToExempted(sender, recipient, amount); } else if (_isExempted[sender] && _isExempted[recipient]) { _transferBothExempted(sender, recipient, amount); } else { _transferStandard(sender, recipient, amount); } } function _transferStandard(address sender, address recipient, uint256 tokAmount) private { (uint256 refAmount, uint256 refTransferAmount, uint256 refFeeHalf, uint256 tokTransferAmount, uint256 tokFeeHalf) = _getValues(tokAmount); _refOwned[sender] = _refOwned[sender].sub(refAmount); _refOwned[recipient] = _refOwned[recipient].add(refTransferAmount); _distributeFee(refFeeHalf, tokFeeHalf); emit Transfer(sender, recipient, tokTransferAmount); } function _transferToExempted(address sender, address recipient, uint256 tokAmount) private { (uint256 refAmount, uint256 refTransferAmount, uint256 refFeeHalf, uint256 tokTransferAmount, uint256 tokFeeHalf) = _getValues(tokAmount); _refOwned[sender] = _refOwned[sender].sub(refAmount); _tokOwned[recipient] = _tokOwned[recipient].add(tokTransferAmount); _refOwned[recipient] = _refOwned[recipient].add(refTransferAmount); _distributeFee(refFeeHalf, tokFeeHalf); emit Transfer(sender, recipient, tokTransferAmount); } function _transferFromExempted(address sender, address recipient, uint256 tokAmount) private { (uint256 refAmount, uint256 refTransferAmount, uint256 refFeeHalf, uint256 tokTransferAmount,uint256 tokFeeHalf) = _getValues(tokAmount); _tokOwned[sender] = _tokOwned[sender].sub(tokAmount); _refOwned[sender] = _refOwned[sender].sub(refAmount); _refOwned[recipient] = _refOwned[recipient].add(refTransferAmount); _distributeFee(refFeeHalf, tokFeeHalf); emit Transfer(sender, recipient, tokTransferAmount); } function _transferBothExempted(address sender, address recipient, uint256 tokAmount) private { (uint256 refAmount, uint256 refTransferAmount, uint256 refFeeHalf, uint256 tokTransferAmount, uint256 tokFeeHalf) = _getValues(tokAmount); _tokOwned[sender] = _tokOwned[sender].sub(tokAmount); _refOwned[sender] = _refOwned[sender].sub(refAmount); _tokOwned[recipient] = _tokOwned[recipient].add(tokTransferAmount); _refOwned[recipient] = _refOwned[recipient].add(refTransferAmount); _distributeFee(refFeeHalf, tokFeeHalf); emit Transfer(sender, recipient, tokTransferAmount); } function _distributeFee(uint256 refFeeHalf, uint256 tokFeeHalf) private { _refTotalSupply = _refTotalSupply.sub(refFeeHalf); _tokFeeTotal = _tokFeeTotal.add(tokFeeHalf); _tokBurned = _tokBurned.add(tokFeeHalf); _tokTotalSupply = _tokTotalSupply.sub(tokFeeHalf); } function _getValues(uint256 tokAmount) private view returns (uint256, uint256, uint256, uint256, uint256) { (uint256 tokTransferAmount, uint256 tFee, uint256 tokFeeHalf) = _getTValues(tokAmount); uint256 currentRate = _getRate(); (uint256 refAmount, uint256 refTransferAmount, uint256 refFeeHalf) = _getRValues(tokAmount, tFee, tokFeeHalf, currentRate); return (refAmount, refTransferAmount, refFeeHalf, tokTransferAmount, tokFeeHalf); } function _getTValues(uint256 tokAmount) private pure returns (uint256, uint256, uint256) { uint256 tokFeeHalf = tokAmount.div(200); uint256 tFee = tokFeeHalf.mul(2); uint256 tokTransferAmount = tokAmount.sub(tFee); return (tokTransferAmount, tFee, tokFeeHalf); } function _getRValues(uint256 tokAmount, uint256 tFee, uint256 tokFeeHalf, uint256 currentRate) private pure returns (uint256, uint256, uint256) { uint256 refAmount = tokAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 refFeeHalf = tokFeeHalf.mul(currentRate); uint256 refTransferAmount = refAmount.sub(rFee); return (refAmount, refTransferAmount, refFeeHalf); } function _getRate() private view returns(uint256) { (uint256 rSupply, uint256 tSupply) = _getCurrentSupply(); return rSupply.div(tSupply); } function _getCurrentSupply() private view returns(uint256, uint256) { uint256 rSupply = _refTotalSupply; uint256 tTotal = _tokTotalSupply.add( _tokFeeTotal); uint256 tSupply = tTotal; for (uint256 i = 0; i < _exempted.length; i++) { if (_refOwned[_exempted[i]] > rSupply || _tokOwned[_exempted[i]] > tSupply) return (_refTotalSupply, tTotal); rSupply = rSupply.sub(_refOwned[_exempted[i]]); tSupply = tSupply.sub(_tokOwned[_exempted[i]]); } if (rSupply < _refTotalSupply.div(tTotal)) return (_refTotalSupply, tTotal); return (rSupply, tSupply); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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":"uint256","name":"tokAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFeeAndBurn","type":"bool"}],"name":"SplitFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"uint256","name":"tokAmount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"tokAmount","type":"uint256"},{"internalType":"bool","name":"burn","type":"bool"}],"name":"distribute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"exemptAccount","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"account","type":"address"}],"name":"isExempted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"obligateAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"refAmount","type":"uint256"}],"name":"tokenFromSplit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBurned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6b01f04ef12cb04cf1580000006006556a87b0b4d075b8302fffffff1960075560c06040526005608081905264151c9bd91b60da1b60a09081526200004891600a919062000173565b506040805180820190915260038082526254524f60e81b60209092019182526200007591600b9162000173565b50600c805460ff191660121790553480156200009057600080fd5b5060006200009d6200016f565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060075460016000620000f86200016f565b6001600160a01b031681526020810191909152604001600020556200011c6200016f565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6006546040518082815260200191505060405180910390a36200020f565b3390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620001b657805160ff1916838001178555620001e6565b82800160010185558215620001e6579182015b82811115620001e6578251825591602001919060010190620001c9565b50620001f4929150620001f8565b5090565b5b80821115620001f45760008155600101620001f9565b611ceb806200021f6000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c806370a08231116100c3578063a4ef1c6c1161007c578063a4ef1c6c146103e4578063a9059cbb1461040a578063c4d2aefe14610436578063d89135cd1461045b578063dd62ed3e14610463578063f2fde38b146104915761014d565b806370a0823114610338578063715018a61461035e5780638da5cb5b1461036657806395d89b411461038a578063a1b9371c14610392578063a457c2d7146103b85761014d565b806323b872dd1161011557806323b872dd1461025757806324db14d31461028d5780632fcea6c4146102aa578063313ce567146102d157806339509351146102ef57806342966c681461031b5761014d565b806306fdde0314610152578063079eb7fb146101cf578063095ea7b31461020957806313114a9d1461023557806318160ddd1461024f575b600080fd5b61015a6104b7565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561019457818101518382015260200161017c565b50505050905090810190601f1680156101c15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101f5600480360360208110156101e557600080fd5b50356001600160a01b031661054d565b604080519115158252519081900360200190f35b6101f56004803603604081101561021f57600080fd5b506001600160a01b03813516906020013561056f565b61023d61058d565b60408051918252519081900360200190f35b61023d610593565b6101f56004803603606081101561026d57600080fd5b506001600160a01b03813581169160208101359091169060400135610599565b61023d600480360360208110156102a357600080fd5b5035610620565b6102cf600480360360408110156102c057600080fd5b5080359060200135151561068d565b005b6102d9610802565b6040805160ff9092168252519081900360200190f35b6101f56004803603604081101561030557600080fd5b506001600160a01b03813516906020013561080b565b6102cf6004803603602081101561033157600080fd5b5035610859565b61023d6004803603602081101561034e57600080fd5b50356001600160a01b0316610931565b6102cf610993565b61036e610a35565b604080516001600160a01b039092168252519081900360200190f35b61015a610a44565b6102cf600480360360208110156103a857600080fd5b50356001600160a01b0316610aa5565b6101f5600480360360408110156103ce57600080fd5b506001600160a01b038135169060200135610c15565b6102cf600480360360208110156103fa57600080fd5b50356001600160a01b0316610c7d565b6101f56004803603604081101561042057600080fd5b506001600160a01b038135169060200135610eb6565b61023d6004803603604081101561044c57600080fd5b50803590602001351515610eca565b61023d610f48565b61023d6004803603604081101561047957600080fd5b506001600160a01b0381358116916020013516610f4e565b6102cf600480360360208110156104a757600080fd5b50356001600160a01b0316610f79565b600a8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105435780601f1061051857610100808354040283529160200191610543565b820191906000526020600020905b81548152906001019060200180831161052657829003601f168201915b5050505050905090565b6001600160a01b03811660009081526004602052604090205460ff165b919050565b600061058361057c611071565b8484611075565b5060015b92915050565b60085490565b60065490565b60006105a6848484611161565b610616846105b2611071565b61061185604051806060016040528060288152602001611bb8602891396001600160a01b038a166000908152600360205260408120906105f0611071565b6001600160a01b03168152602081019190915260400160002054919061132c565b611075565b5060019392505050565b60006007548211156106635760405162461bcd60e51b815260040180806020018281038252602b815260200180611b17602b913960400191505060405180910390fd5b816106705750600061056a565b600061067a6113c3565b905061068683826113e6565b9392505050565b6000610697611071565b6001600160a01b03811660009081526004602052604090205490915060ff16156106f25760405162461bcd60e51b8152600401808060200182810382526025815260200180611aaa6025913960400191505060405180910390fd5b8161076b57600061070284611428565b505050506001600160a01b03831660009081526001602052604090205490915061072c9082611479565b6001600160a01b0383166000908152600160205260409020556007546107529082611479565b60075560085461076290856114bb565b600855506107fd565b600061077684611428565b505050506001600160a01b0383166000908152600160205260409020549091506107a09082611479565b6001600160a01b0383166000908152600160205260408120919091556107c78560026113e6565b6007549091506107d79083611479565b6007556008546107e790826114bb565b6008556009546107f790826114bb565b60095550505b505050565b600c5460ff1690565b6000610583610818611071565b846106118560036000610829611071565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906114bb565b6000610863611071565b6001600160a01b03811660009081526004602052604090205490915060ff16156108be5760405162461bcd60e51b8152600401808060200182810382526025815260200180611b426025913960400191505060405180910390fd5b60006108c983611428565b505050506001600160a01b0383166000908152600160205260409020549091506108f39082611479565b6001600160a01b0383166000908152600160205260409020556007546109199082611479565b60075560095461092990846114bb565b600955505050565b6001600160a01b03811660009081526004602052604081205460ff161561097157506001600160a01b03811660009081526002602052604090205461056a565b6001600160a01b03821660009081526001602052604090205461058790610620565b61099b611071565b6000546001600160a01b039081169116146109eb576040805162461bcd60e51b81526020600482018190526024820152600080516020611be0833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b600b8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105435780601f1061051857610100808354040283529160200191610543565b610aad611071565b6000546001600160a01b03908116911614610afd576040805162461bcd60e51b81526020600482018190526024820152600080516020611be0833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205460ff1615610b555760405162461bcd60e51b8152600401808060200182810382526022815260200180611c6f6022913960400191505060405180910390fd5b6001600160a01b03811660009081526001602052604090205415610baf576001600160a01b038116600090815260016020526040902054610b9590610620565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600460205260408120805460ff191660019081179091556005805491820181559091527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00180546001600160a01b0319169091179055565b6000610583610c22611071565b8461061185604051806060016040528060258152602001611c916025913960036000610c4c611071565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919061132c565b610c85611071565b6000546001600160a01b03908116911614610cd5576040805162461bcd60e51b81526020600482018190526024820152600080516020611be0833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205460ff16610d42576040805162461bcd60e51b815260206004820152601e60248201527f54726f646c3a204163636f756e74206973206e6f74204578656d707465640000604482015290519081900360640190fd5b60005b600554811015610eb257816001600160a01b031660058281548110610d6657fe5b6000918252602090912001546001600160a01b03161415610eaa576001600160a01b038216600090815260026020526040812054610da49082610eca565b6001600160a01b038416600090815260016020526040902054909150610dd790610dce9083611479565b60075490611479565b6007556001600160a01b03831660009081526001602090815260408083208490556002825280832083905560049091529020805460ff19169055600580546000198101908110610e2357fe5b600091825260209091200154600580546001600160a01b039092169184908110610e4957fe5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b031602179055506005805480610e8257fe5b600082815260209020810160001990810180546001600160a01b031916905501905550610eb2565b600101610d45565b5050565b6000610583610ec3611071565b8484611161565b600060085460065401831115610f115760405162461bcd60e51b8152600401808060200182810382526026815260200180611c006026913960400191505060405180910390fd5b81610f2f576000610f2184611428565b509294506105879350505050565b6000610f3a84611428565b509194506105879350505050565b60095490565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b610f81611071565b6000546001600160a01b03908116911614610fd1576040805162461bcd60e51b81526020600482018190526024820152600080516020611be0833981519152604482015290519081900360640190fd5b6001600160a01b0381166110165760405162461bcd60e51b8152600401808060200182810382526026815260200180611acf6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b0383166110ba5760405162461bcd60e51b8152600401808060200182810382526024815260200180611c4b6024913960400191505060405180910390fd5b6001600160a01b0382166110ff5760405162461bcd60e51b8152600401808060200182810382526022815260200180611af56022913960400191505060405180910390fd5b6001600160a01b03808416600081815260036020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166111a65760405162461bcd60e51b8152600401808060200182810382526025815260200180611c266025913960400191505060405180910390fd5b6001600160a01b0382166111eb5760405162461bcd60e51b8152600401808060200182810382526023815260200180611a876023913960400191505060405180910390fd5b6000811161122a5760405162461bcd60e51b8152600401808060200182810382526030815260200180611b676030913960400191505060405180910390fd5b6001600160a01b03831660009081526004602052604090205460ff16801561126b57506001600160a01b03821660009081526004602052604090205460ff16155b156112805761127b838383611515565b6107fd565b6001600160a01b03831660009081526004602052604090205460ff161580156112c157506001600160a01b03821660009081526004602052604090205460ff165b156112d15761127b83838361162c565b6001600160a01b03831660009081526004602052604090205460ff16801561131157506001600160a01b03821660009081526004602052604090205460ff165b156113215761127b8383836116d2565b6107fd838383611742565b600081848411156113bb5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611380578181015183820152602001611368565b50505050905090810190601f1680156113ad5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008060006113d0611783565b90925090506113df82826113e6565b9250505090565b600061068683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506118fe565b60008060008060008060008061143d89611963565b925092509250600061144d6113c3565b905060008060006114608d87878761199d565b919f909e50909c50969a50939850949650505050505050565b600061068683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061132c565b600082820183811015610686576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600080600080600061152686611428565b6001600160a01b038d16600090815260026020526040902054949950929750909550935091506115569087611479565b6001600160a01b0389166000908152600260209081526040808320939093556001905220546115859086611479565b6001600160a01b03808a1660009081526001602052604080822093909355908916815220546115b490856114bb565b6001600160a01b0388166000908152600160205260409020556115d783826119e9565b866001600160a01b0316886001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b600080600080600061163d86611428565b6001600160a01b038d166000908152600160205260409020549499509297509095509350915061166d9086611479565b6001600160a01b03808a16600090815260016020908152604080832094909455918a168152600290915220546116a390836114bb565b6001600160a01b0388166000908152600260209081526040808320939093556001905220546115b490856114bb565b60008060008060006116e386611428565b6001600160a01b038d16600090815260026020526040902054949950929750909550935091506117139087611479565b6001600160a01b03891660009081526002602090815260408083209390935560019052205461166d9086611479565b600080600080600061175386611428565b6001600160a01b038d16600090815260016020526040902054949950929750909550935091506115859086611479565b6000806000600754905060006117a66008546006546114bb90919063ffffffff16565b90508060005b6005548110156118ce578360016000600584815481106117c857fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061182d575081600260006005848154811061180657fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15611842575050600754935091506118fa9050565b611882600160006005848154811061185657fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548590611479565b93506118c4600260006005848154811061189857fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611479565b91506001016117ac565b506007546118dc90836113e6565b8310156118f25750600754935091506118fa9050565b919350909150505b9091565b6000818361194d5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611380578181015183820152602001611368565b50600083858161195957fe5b0495945050505050565b60008080806119738560c86113e6565b90506000611982826002611a2d565b905060006119908783611479565b9791965091945092505050565b60008080806119ac8886611a2d565b905060006119ba8887611a2d565b905060006119c88888611a2d565b905060006119d68484611479565b939b939a50909850919650505050505050565b6007546119f69083611479565b600755600854611a0690826114bb565b600855600954611a1690826114bb565b600955600654611a269082611479565b6006555050565b600082611a3c57506000610587565b82820282848281611a4957fe5b04146106865760405162461bcd60e51b8152600401808060200182810382526021815260200180611b976021913960400191505060405180910390fdfe45524332303a207472616e7366657220746f20746865207a65726f206164647265737354726f646c3a204578656d7074656420616464726573736573206e6f7420616c6c6f7765644f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737354726f646c3a20416d6f756e74206d757374206265206c657373207468616e20746f74616c2073706c697454726f646c3a204578656d70746564206164647265737365732063616e6e6f74206275726e54726f646c3a205472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657254726f646c3a20416d6f756e74206d757374206265206c657373207468616e20737570706c7945524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737354726f646c3a204163636f756e7420697320616c7265616479206578656d7074656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122039cbbe7b00f3af035adfeac7bac4de8d8f90f704fa8debf48008be64782a866164736f6c634300060c0033
Deployed ByteCode Sourcemap
17917:12239:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18877:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20789:110;;;;;;;;;;;;;;;;-1:-1:-1;20789:110:0;-1:-1:-1;;;;;20789:110:0;;:::i;:::-;;;;;;;;;;;;;;;;;;19796:161;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19796:161:0;;;;;;;;:::i;20907:89::-;;;:::i;:::-;;;;;;;;;;;;;;;;19154:103;;;:::i;19965:313::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19965:313:0;;;;;;;;;;;;;;;;;:::i;22870:301::-;;;;;;;;;;;;;;;;-1:-1:-1;22870:301:0;;:::i;21101:856::-;;;;;;;;;;;;;;;;-1:-1:-1;21101:856:0;;;;;;;;;:::i;:::-;;19063:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20286:218;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20286:218:0;;;;;;;;:::i;21965:398::-;;;;;;;;;;;;;;;;-1:-1:-1;21965:398:0;;:::i;19265:197::-;;;;;;;;;;;;;;;;-1:-1:-1;19265:197:0;-1:-1:-1;;;;;19265:197:0;;:::i;2841:148::-;;;:::i;2199:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;2199:79:0;;;;;;;;;;;;;;18968:87;;;:::i;23179:339::-;;;;;;;;;;;;;;;;-1:-1:-1;23179:339:0;-1:-1:-1;;;;;23179:339:0;;:::i;20512:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20512:269:0;;;;;;;;:::i;23530:729::-;;;;;;;;;;;;;;;;-1:-1:-1;23530:729:0;-1:-1:-1;;;;;23530:729:0;;:::i;19470:167::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19470:167:0;;;;;;;;:::i;22371:491::-;;;;;;;;;;;;;;;;-1:-1:-1;22371:491:0;;;;;;;;;:::i;21004:89::-;;;:::i;19645:143::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19645:143:0;;;;;;;;;;:::i;3144:244::-;;;;;;;;;;;;;;;;-1:-1:-1;3144:244:0;-1:-1:-1;;;;;3144:244:0;;:::i;18877:83::-;18947:5;18940:12;;;;;;;;-1:-1:-1;;18940:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18914:13;;18940:12;;18947:5;;18940:12;;18947:5;18940:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18877:83;:::o;20789:110::-;-1:-1:-1;;;;;20871:20:0;;20847:4;20871:20;;;:11;:20;;;;;;;;20789:110;;;;:::o;19796:161::-;19871:4;19888:39;19897:12;:10;:12::i;:::-;19911:7;19920:6;19888:8;:39::i;:::-;-1:-1:-1;19945:4:0;19796:161;;;;;:::o;20907:89::-;20976:12;;20907:89;:::o;19154:103::-;19234:15;;19154:103;:::o;19965:313::-;20063:4;20080:36;20090:6;20098:9;20109:6;20080:9;:36::i;:::-;20127:121;20136:6;20144:12;:10;:12::i;:::-;20158:89;20196:6;20158:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20158:19:0;;;;;;:11;:19;;;;;;20178:12;:10;:12::i;:::-;-1:-1:-1;;;;;20158:33:0;;;;;;;;;;;;-1:-1:-1;20158:33:0;;;:89;:37;:89::i;:::-;20127:8;:121::i;:::-;-1:-1:-1;20266:4:0;19965:313;;;;;:::o;22870:301::-;22933:7;22974:15;;22961:9;:28;;22953:84;;;;-1:-1:-1;;;22953:84:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23051:14;23048:27;;-1:-1:-1;23074:1:0;23067:8;;23048:27;23086:19;23109:10;:8;:10::i;:::-;23086:33;-1:-1:-1;23137:26:0;:9;23086:33;23137:13;:26::i;:::-;23130:33;22870:301;-1:-1:-1;;;22870:301:0:o;21101:856::-;21169:14;21186:12;:10;:12::i;:::-;-1:-1:-1;;;;;21218:19:0;;;;;;:11;:19;;;;;;21169:29;;-1:-1:-1;21218:19:0;;21217:20;21209:70;;;;-1:-1:-1;;;21209:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21295:4;21290:660;;21317:17;21342:21;21353:9;21342:10;:21::i;:::-;-1:-1:-1;;;;;;;;;21398:17:0;;;;;;:9;:17;;;;;;21316:47;;-1:-1:-1;21398:32:0;;21316:47;21398:21;:32::i;:::-;-1:-1:-1;;;;;21378:17:0;;;;;;:9;:17;;;;;:52;21463:15;;:30;;21483:9;21463:19;:30::i;:::-;21445:15;:48;21523:12;;:27;;21540:9;21523:16;:27::i;:::-;21508:12;:42;-1:-1:-1;21290:660:0;;;21584:17;21609:21;21620:9;21609:10;:21::i;:::-;-1:-1:-1;;;;;;;;;21665:17:0;;;;;;:9;:17;;;;;;21583:47;;-1:-1:-1;21665:32:0;;21583:47;21665:21;:32::i;:::-;-1:-1:-1;;;;;21645:17:0;;;;;;:9;:17;;;;;:52;;;;21740:16;:9;21754:1;21740:13;:16::i;:::-;21790:15;;21716:40;;-1:-1:-1;21790:30:0;;21810:9;21790:19;:30::i;:::-;21772:15;:48;21850:12;;:31;;21867:13;21850:16;:31::i;:::-;21835:12;:46;21909:10;;:29;;21924:13;21909:14;:29::i;:::-;21896:10;:42;-1:-1:-1;;21290:660:0;21101:856;;;:::o;19063:83::-;19129:9;;;;19063:83;:::o;20286:218::-;20374:4;20391:83;20400:12;:10;:12::i;:::-;20414:7;20423:50;20462:10;20423:11;:25;20435:12;:10;:12::i;:::-;-1:-1:-1;;;;;20423:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;20423:25:0;;;:34;;;;;;;;;;;:38;:50::i;21965:398::-;22016:14;22033:12;:10;:12::i;:::-;-1:-1:-1;;;;;22065:19:0;;;;;;:11;:19;;;;;;22016:29;;-1:-1:-1;22065:19:0;;22064:20;22056:70;;;;-1:-1:-1;;;22056:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22138:17;22163:21;22174:9;22163:10;:21::i;:::-;-1:-1:-1;;;;;;;;;22215:17:0;;;;;;:9;:17;;;;;;22137:47;;-1:-1:-1;22215:32:0;;22137:47;22215:21;:32::i;:::-;-1:-1:-1;;;;;22195:17:0;;;;;;:9;:17;;;;;:52;22276:15;;:30;;22296:9;22276:19;:30::i;:::-;22258:15;:48;22330:10;;:25;;22345:9;22330:14;:25::i;:::-;22317:10;:38;-1:-1:-1;;;21965:398:0:o;19265:197::-;-1:-1:-1;;;;;19355:20:0;;19331:7;19355:20;;;:11;:20;;;;;;;;19351:51;;;-1:-1:-1;;;;;;19384:18:0;;;;;;:9;:18;;;;;;19377:25;;19351:51;-1:-1:-1;;;;;19435:18:0;;;;;;:9;:18;;;;;;19420:34;;:14;:34::i;2841:148::-;2421:12;:10;:12::i;:::-;2411:6;;-1:-1:-1;;;;;2411:6:0;;;:22;;;2403:67;;;;;-1:-1:-1;;;2403:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2403:67:0;;;;;;;;;;;;;;;2948:1:::1;2932:6:::0;;2911:40:::1;::::0;-1:-1:-1;;;;;2932:6:0;;::::1;::::0;2911:40:::1;::::0;2948:1;;2911:40:::1;2979:1;2962:19:::0;;-1:-1:-1;;;;;;2962:19:0::1;::::0;;2841:148::o;2199:79::-;2237:7;2264:6;-1:-1:-1;;;;;2264:6:0;2199:79;:::o;18968:87::-;19040:7;19033:14;;;;;;;;-1:-1:-1;;19033:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19007:13;;19033:14;;19040:7;;19033:14;;19040:7;19033:14;;;;;;;;;;;;;;;;;;;;;;;;23179:339;2421:12;:10;:12::i;:::-;2411:6;;-1:-1:-1;;;;;2411:6:0;;;:22;;;2403:67;;;;;-1:-1:-1;;;2403:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2403:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;23260:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;23259:21;23251:68;;;;-1:-1:-1::0;;;23251:68:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;23333:18:0;::::1;23354:1;23333:18:::0;;;:9:::1;:18;::::0;;;;;:22;23330:109:::1;;-1:-1:-1::0;;;;;23408:18:0;::::1;;::::0;;;:9:::1;:18;::::0;;;;;23393:34:::1;::::0;:14:::1;:34::i;:::-;-1:-1:-1::0;;;;;23372:18:0;::::1;;::::0;;;:9:::1;:18;::::0;;;;:55;23330:109:::1;-1:-1:-1::0;;;;;23449:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;23449:27:0::1;23472:4;23449:27:::0;;::::1;::::0;;;23487:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;23487:23:0::1;::::0;;::::1;::::0;;23179:339::o;20512:269::-;20605:4;20622:129;20631:12;:10;:12::i;:::-;20645:7;20654:96;20693:15;20654:96;;;;;;;;;;;;;;;;;:11;:25;20666:12;:10;:12::i;:::-;-1:-1:-1;;;;;20654:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;20654:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;23530:729::-;2421:12;:10;:12::i;:::-;2411:6;;-1:-1:-1;;;;;2411:6:0;;;:22;;;2403:67;;;;;-1:-1:-1;;;2403:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2403:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;23612:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;23604:63;;;::::0;;-1:-1:-1;;;23604:63:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;23693:9;23688:564;23712:9;:16:::0;23708:20;::::1;23688:564;;;23770:7;-1:-1:-1::0;;;;;23754:23:0::1;:9;23764:1;23754:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;23754:12:0::1;:23;23750:491;;;-1:-1:-1::0;;;;;23833:18:0;::::1;23798:17;23833:18:::0;;;:9:::1;:18;::::0;;;;;23818:41:::1;::::0;23798:17;23818:14:::1;:41::i;:::-;-1:-1:-1::0;;;;;23916:18:0;::::1;;::::0;;;:9:::1;:18;::::0;;;;;23798:61;;-1:-1:-1;23896:54:0::1;::::0;23916:33:::1;::::0;23798:61;23916:22:::1;:33::i;:::-;23896:15;::::0;;:19:::1;:54::i;:::-;23878:15;:72:::0;-1:-1:-1;;;;;23969:18:0;::::1;;::::0;;;:9:::1;:18;::::0;;;;;;;:30;;;24018:9:::1;:18:::0;;;;;:22;;;24059:11:::1;:20:::0;;;;;:28;;-1:-1:-1;;24059:28:0::1;::::0;;24121:9:::1;24131:16:::0;;-1:-1:-1;;24131:20:0;;;24121:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;24106:9:::1;:12:::0;;-1:-1:-1;;;;;24121:31:0;;::::1;::::0;24116:1;;24106:12;::::1;;;;;;;;;;;;;:46;;;;;-1:-1:-1::0;;;;;24106:46:0::1;;;;;-1:-1:-1::0;;;;;24106:46:0::1;;;;;;24186:9;:15;;;;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;24186:15:0;;;;;-1:-1:-1;;;;;;24186:15:0::1;::::0;;;;;-1:-1:-1;24220:5:0::1;;23750:491;23730:3;;23688:564;;;;23530:729:::0;:::o;19470:167::-;19548:4;19565:42;19575:12;:10;:12::i;:::-;19589:9;19600:6;19565:9;:42::i;22371:491::-;22465:7;22525:12;;22507:15;;:30;22493:9;:45;;22485:96;;;;-1:-1:-1;;;22485:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22597:24;22592:263;;22639:17;22664:21;22675:9;22664:10;:21::i;:::-;-1:-1:-1;22638:47:0;;-1:-1:-1;22700:16:0;;-1:-1:-1;;;;22700:16:0;22592:263;22751:25;22783:21;22794:9;22783:10;:21::i;:::-;-1:-1:-1;22749:55:0;;-1:-1:-1;22819:24:0;;-1:-1:-1;;;;22819:24:0;21004:89;21075:10;;21004:89;:::o;19645:143::-;-1:-1:-1;;;;;19753:18:0;;;19726:7;19753:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;19645:143::o;3144:244::-;2421:12;:10;:12::i;:::-;2411:6;;-1:-1:-1;;;;;2411:6:0;;;:22;;;2403:67;;;;;-1:-1:-1;;;2403:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2403:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;3233:22:0;::::1;3225:73;;;;-1:-1:-1::0;;;3225:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3335:6;::::0;;3314:38:::1;::::0;-1:-1:-1;;;;;3314:38:0;;::::1;::::0;3335:6;::::1;::::0;3314:38:::1;::::0;::::1;3363:6;:17:::0;;-1:-1:-1;;;;;;3363:17:0::1;-1:-1:-1::0;;;;;3363:17:0;;;::::1;::::0;;;::::1;::::0;;3144:244::o;834:106::-;922:10;834:106;:::o;24267:337::-;-1:-1:-1;;;;;24360:19:0;;24352:68;;;;-1:-1:-1;;;24352:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24439:21:0;;24431:68;;;;-1:-1:-1;;;24431:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24512:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;24564:32;;;;;;;;;;;;;;;;;24267:337;;;:::o;24612:808::-;-1:-1:-1;;;;;24709:20:0;;24701:70;;;;-1:-1:-1;;;24701:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24790:23:0;;24782:71;;;;-1:-1:-1;;;24782:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24881:1;24872:6;:10;24864:71;;;;-1:-1:-1;;;24864:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24950:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;24974:22:0;;;;;;:11;:22;;;;;;;;24973:23;24950:46;24946:467;;;25013:48;25035:6;25043:9;25054:6;25013:21;:48::i;:::-;24946:467;;;-1:-1:-1;;;;;25084:19:0;;;;;;:11;:19;;;;;;;;25083:20;:46;;;;-1:-1:-1;;;;;;25107:22:0;;;;;;:11;:22;;;;;;;;25083:46;25079:334;;;25146:46;25166:6;25174:9;25185:6;25146:19;:46::i;25079:334::-;-1:-1:-1;;;;;25214:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;25237:22:0;;;;;;:11;:22;;;;;;;;25214:45;25210:203;;;25276:48;25298:6;25306:9;25317:6;25276:21;:48::i;25210:203::-;25357:44;25375:6;25383:9;25394:6;25357:17;:44::i;11527:192::-;11613:7;11649:12;11641:6;;;;11633:29;;;;-1:-1:-1;;;11633:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;11685:5:0;;;11527:192::o;29323:163::-;29364:7;29385:15;29402;29421:19;:17;:19::i;:::-;29384:56;;-1:-1:-1;29384:56:0;-1:-1:-1;29458:20:0;29384:56;;29458:11;:20::i;:::-;29451:27;;;;29323:163;:::o;12925:132::-;12983:7;13010:39;13014:1;13017;13010:39;;;;;;;;;;;;;;;;;:3;:39::i;28077:479::-;28138:7;28147;28156;28165;28174;28195:25;28222:12;28236:18;28258:22;28270:9;28258:11;:22::i;:::-;28194:86;;;;;;28291:19;28314:10;:8;:10::i;:::-;28291:33;;28336:17;28355:25;28382:18;28404:53;28416:9;28427:4;28433:10;28445:11;28404;:53::i;:::-;28335:122;;;;-1:-1:-1;28335:122:0;;-1:-1:-1;28518:17:0;;-1:-1:-1;28537:10:0;;-1:-1:-1;28077:479:0;;-1:-1:-1;;;;;;;28077:479:0:o;11088:136::-;11146:7;11173:43;11177:1;11180;11173:43;;;;;;;;;;;;;;;;;:3;:43::i;10624:181::-;10682:7;10714:5;;;10738:6;;;;10730:46;;;;;-1:-1:-1;;;10730:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;26526:565;26631:17;26650:25;26677:18;26697:25;26723:18;26745:21;26756:9;26745:10;:21::i;:::-;-1:-1:-1;;;;;26797:17:0;;;;;;:9;:17;;;;;;26630:136;;-1:-1:-1;26630:136:0;;-1:-1:-1;26630:136:0;;-1:-1:-1;26630:136:0;-1:-1:-1;26630:136:0;-1:-1:-1;26797:32:0;;26819:9;26797:21;:32::i;:::-;-1:-1:-1;;;;;26777:17:0;;;;;;:9;:17;;;;;;;;:52;;;;26860:9;:17;;;;:32;;26882:9;26860:21;:32::i;:::-;-1:-1:-1;;;;;26840:17:0;;;;;;;:9;:17;;;;;;:52;;;;26926:20;;;;;;;:43;;26951:17;26926:24;:43::i;:::-;-1:-1:-1;;;;;26903:20:0;;;;;;:9;:20;;;;;:66;26983:38;26998:10;27010;26983:14;:38::i;:::-;27054:9;-1:-1:-1;;;;;27037:46:0;27046:6;-1:-1:-1;;;;;27037:46:0;;27065:17;27037:46;;;;;;;;;;;;;;;;;;26526:565;;;;;;;;:::o;25932:586::-;26035:17;26054:25;26081:18;26101:25;26128:18;26150:21;26161:9;26150:10;:21::i;:::-;-1:-1:-1;;;;;26202:17:0;;;;;;:9;:17;;;;;;26034:137;;-1:-1:-1;26034:137:0;;-1:-1:-1;26034:137:0;;-1:-1:-1;26034:137:0;-1:-1:-1;26034:137:0;-1:-1:-1;26202:32:0;;26034:137;26202:21;:32::i;:::-;-1:-1:-1;;;;;26182:17:0;;;;;;;:9;:17;;;;;;;;:52;;;;26268:20;;;;;:9;:20;;;;;:43;;26293:17;26268:24;:43::i;:::-;-1:-1:-1;;;;;26245:20:0;;;;;;:9;:20;;;;;;;;:66;;;;26345:9;:20;;;;:43;;26370:17;26345:24;:43::i;27099:648::-;27204:17;27223:25;27250:18;27270:25;27297:18;27319:21;27330:9;27319:10;:21::i;:::-;-1:-1:-1;;;;;27371:17:0;;;;;;:9;:17;;;;;;27203:137;;-1:-1:-1;27203:137:0;;-1:-1:-1;27203:137:0;;-1:-1:-1;27203:137:0;-1:-1:-1;27203:137:0;-1:-1:-1;27371:32:0;;27393:9;27371:21;:32::i;:::-;-1:-1:-1;;;;;27351:17:0;;;;;;:9;:17;;;;;;;;:52;;;;27434:9;:17;;;;:32;;27456:9;27434:21;:32::i;25428:496::-;25529:17;25548:25;25575:18;25595:25;25622:18;25644:21;25655:9;25644:10;:21::i;:::-;-1:-1:-1;;;;;25696:17:0;;;;;;:9;:17;;;;;;25528:137;;-1:-1:-1;25528:137:0;;-1:-1:-1;25528:137:0;;-1:-1:-1;25528:137:0;-1:-1:-1;25528:137:0;-1:-1:-1;25696:32:0;;25528:137;25696:21;:32::i;29494:659::-;29544:7;29553;29573:15;29591;;29573:33;;29617:14;29634:34;29655:12;;29634:15;;:19;;:34;;;;:::i;:::-;29617:51;-1:-1:-1;29617:51:0;29683:15;29720:304;29744:9;:16;29740:20;;29720:304;;;29812:7;29786:9;:23;29796:9;29806:1;29796:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29796:12:0;29786:23;;;;;;;;;;;;;:33;;:70;;;29849:7;29823:9;:23;29833:9;29843:1;29833:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29833:12:0;29823:23;;;;;;;;;;;;;:33;29786:70;29782:108;;;-1:-1:-1;;29866:15:0;;;-1:-1:-1;29883:6:0;-1:-1:-1;29858:32:0;;-1:-1:-1;29858:32:0;29782:108;29915:36;29927:9;:23;29937:9;29947:1;29937:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29937:12:0;29927:23;;;;;;;;;;;;;29915:7;;:11;:36::i;:::-;29905:46;;29976:36;29988:9;:23;29998:9;30008:1;29998:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29998:12:0;29988:23;;;;;;;;;;;;;29976:7;;:11;:36::i;:::-;29966:46;-1:-1:-1;29762:3:0;;29720:304;;;-1:-1:-1;30048:15:0;;:27;;30068:6;30048:19;:27::i;:::-;30038:7;:37;30034:75;;;-1:-1:-1;30085:15:0;;;-1:-1:-1;30102:6:0;-1:-1:-1;30077:32:0;;-1:-1:-1;30077:32:0;30034:75;30128:7;;-1:-1:-1;30137:7:0;;-1:-1:-1;;29494:659:0;;;:::o;13553:278::-;13639:7;13674:12;13667:5;13659:28;;;;-1:-1:-1;;;13659:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13698:9;13714:1;13710;:5;;;;;;;13553:278;-1:-1:-1;;;;;13553:278:0:o;28564:310::-;28626:7;;;;28685:18;:9;28699:3;28685:13;:18::i;:::-;28664:39;-1:-1:-1;28714:12:0;28729:17;28664:39;28744:1;28729:14;:17::i;:::-;28714:32;-1:-1:-1;28757:25:0;28785:19;:9;28714:32;28785:13;:19::i;:::-;28757:47;28849:4;;-1:-1:-1;28855:10:0;;-1:-1:-1;28564:310:0;-1:-1:-1;;;28564:310:0:o;28882:433::-;28999:7;;;;29057:26;:9;29071:11;29057:13;:26::i;:::-;29037:46;-1:-1:-1;29094:12:0;29109:21;:4;29118:11;29109:8;:21::i;:::-;29094:36;-1:-1:-1;29141:18:0;29162:27;:10;29177:11;29162:14;:27::i;:::-;29141:48;-1:-1:-1;29200:25:0;29228:19;:9;29242:4;29228:13;:19::i;:::-;29266:9;;;;-1:-1:-1;29296:10:0;;-1:-1:-1;28882:433:0;;-1:-1:-1;;;;;;;28882:433:0:o;27755:314::-;27856:15;;:31;;27876:10;27856:19;:31::i;:::-;27838:15;:49;27913:12;;:28;;27930:10;27913:16;:28::i;:::-;27898:12;:43;27965:10;;:26;;27980:10;27965:14;:26::i;:::-;27952:10;:39;28020:15;;:31;;28040:10;28020:19;:31::i;:::-;28002:15;:49;-1:-1:-1;;27755:314:0:o;11978:471::-;12036:7;12281:6;12277:47;;-1:-1:-1;12311:1:0;12304:8;;12277:47;12348:5;;;12352:1;12348;:5;:1;12372:5;;;;;:10;12364:56;;;;-1:-1:-1;;;12364:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Swarm Source
ipfs://39cbbe7b00f3af035adfeac7bac4de8d8f90f704fa8debf48008be64782a8661