[ Download CSV Export ]
OVERVIEW
HERMES FINANCE is one of the first algorithmic stablecoin on Avalanche C-Chain, pegged to the price of 1 AVAX via seigniorage.
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
Hermes
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at snowtrace.io on 2021-12-28 */ // SPDX-License-Identifier: MIXED // File @openzeppelin/contracts/utils/[email protected] // License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with 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; } } // File @openzeppelin/contracts/token/ERC20/[email protected] // License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File @openzeppelin/contracts/math/[email protected] // License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b > a) return (false, 0); return (true, a - b); } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a / b); } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a % b); } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { 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) { require(b <= a, "SafeMath: subtraction overflow"); return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { 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, reverting 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) { require(b > 0, "SafeMath: division by zero"); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: modulo by zero"); return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); return a - b; } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * 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); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a % b; } } // File @openzeppelin/contracts/token/ERC20/[email protected] // License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @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 virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual 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 virtual returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual 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 virtual { _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 { } } // File @openzeppelin/contracts/token/ERC20/[email protected] // License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { using SafeMath for uint256; /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance"); _approve(account, _msgSender(), decreasedAllowance); _burn(account, amount); } } // File @openzeppelin/contracts/math/[email protected] // License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a >= b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow, so we distribute return (a / 2) + (b / 2) + ((a % 2 + b % 2) / 2); } } // File contracts/lib/SafeMath8.sol // License-Identifier: MIT pragma solidity 0.6.12; /** * @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 SafeMath8 { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint8 a, uint8 b) internal pure returns (uint8) { uint8 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(uint8 a, uint8 b) internal pure returns (uint8) { 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(uint8 a, uint8 b, string memory errorMessage) internal pure returns (uint8) { require(b <= a, errorMessage); uint8 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(uint8 a, uint8 b) internal pure returns (uint8) { // 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; } uint8 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(uint8 a, uint8 b) internal pure returns (uint8) { 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(uint8 a, uint8 b, string memory errorMessage) internal pure returns (uint8) { require(b > 0, errorMessage); uint8 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(uint8 a, uint8 b) internal pure returns (uint8) { 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(uint8 a, uint8 b, string memory errorMessage) internal pure returns (uint8) { require(b != 0, errorMessage); return a % b; } } // File @openzeppelin/contracts/GSN/[email protected] // License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; // File @openzeppelin/contracts/access/[email protected] // License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { 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 contracts/owner/Operator.sol // License-Identifier: MIT pragma solidity 0.6.12; contract Operator is Context, Ownable { address private _operator; event OperatorTransferred(address indexed previousOperator, address indexed newOperator); constructor() internal { _operator = _msgSender(); emit OperatorTransferred(address(0), _operator); } function operator() public view returns (address) { return _operator; } modifier onlyOperator() { require(_operator == msg.sender, "operator: caller is not the operator"); _; } function isOperator() public view returns (bool) { return _msgSender() == _operator; } function transferOperator(address newOperator_) public onlyOwner { _transferOperator(newOperator_); } function _transferOperator(address newOperator_) internal { require(newOperator_ != address(0), "operator: zero address given for new operator"); emit OperatorTransferred(address(0), newOperator_); _operator = newOperator_; } } // File contracts/interfaces/IOracle.sol // License-Identifier: MIT pragma solidity 0.6.12; interface IOracle { function update() external; function consult(address _token, uint256 _amountIn) external view returns (uint144 amountOut); function twap(address _token, uint256 _amountIn) external view returns (uint144 _amountOut); } // File contracts/Hermes.sol // License-Identifier: MIT pragma solidity 0.6.12; /* _ _ ______ ______ _________ ______ _______ | | | | | ___| | __ \ | | | ___| | _____| | |__| | | |__ | | | | | |\ /| | | |__ \ \__ | __ | | __| | | /_/ | | \_/ | | | __| \__ \ | | | | | |___ | | \ \ | | | | | |___ ____\ \ |_| |_| |______| |_| \_\ |_| |_| |______| |_______| */ contract Hermes is ERC20Burnable, Operator { using SafeMath8 for uint8; using SafeMath for uint256; // Supply used to launch in LP uint256 public constant INITIAL_LAUNCH_DISTRIBUTION = 100 ether; // Have the rewards been distributed to the pools bool public rewardPoolDistributed = false; /* ================= Taxation =============== */ // Address of the Oracle address public hermesOracle; // Address of the Tax Office address public taxOffice; // Current tax rate uint256 public taxRate; // Price threshold below which taxes will get burned uint256 public burnThreshold = 1.10e18; // Address of the tax collector wallet address public taxCollectorAddress; // Should the taxes be calculated using the tax tiers bool public autoCalculateTax; // Tax Tiers uint256[] public taxTiersTwaps = [0, 5e17, 6e17, 7e17, 8e17, 9e17, 9.5e17, 1e18, 1.05e18, 1.10e18, 1.20e18, 1.30e18, 1.40e18, 1.50e18]; uint256[] public taxTiersRates = [2000, 1900, 1800, 1700, 1600, 1500, 1500, 1500, 1500, 1400, 900, 400, 200, 100]; // Sender addresses excluded from Tax mapping(address => bool) public excludedAddresses; event TaxOfficeTransferred(address oldAddress, address newAddress); modifier onlyTaxOffice() { require(taxOffice == msg.sender, "Caller is not the tax office"); _; } modifier onlyOperatorOrTaxOffice() { require(isOperator() || taxOffice == msg.sender, "Caller is not the operator or the tax office"); _; } /** * @notice Constructs the HERMES ERC-20 contract. */ constructor(uint256 _taxRate, address _taxCollectorAddress) public ERC20("HERMES", "HERMES") { // Mints 1 HERMES to contract creator for initial pool setup require(_taxRate < 10000, "tax equal or bigger to 100%"); require(_taxCollectorAddress != address(0), "tax collector address must be non-zero address"); excludeAddress(address(this)); _mint(msg.sender, 1 ether); taxRate = _taxRate; taxCollectorAddress = _taxCollectorAddress; } /* ============= Taxation ============= */ function getTaxTiersTwapsCount() public view returns (uint256 count) { return taxTiersTwaps.length; } function getTaxTiersRatesCount() public view returns (uint256 count) { return taxTiersRates.length; } function isAddressExcluded(address _address) public view returns (bool) { return excludedAddresses[_address]; } function setTaxTiersTwap(uint8 _index, uint256 _value) public onlyTaxOffice returns (bool) { require(_index >= 0, "Index has to be higher than 0"); require(_index < getTaxTiersTwapsCount(), "Index has to lower than count of tax tiers"); if (_index > 0) { require(_value > taxTiersTwaps[_index - 1]); } if (_index < getTaxTiersTwapsCount().sub(1)) { require(_value < taxTiersTwaps[_index + 1]); } taxTiersTwaps[_index] = _value; return true; } function setTaxTiersRate(uint8 _index, uint256 _value) public onlyTaxOffice returns (bool) { require(_index >= 0, "Index has to be higher than 0"); require(_index < getTaxTiersRatesCount(), "Index has to lower than count of tax tiers"); taxTiersRates[_index] = _value; return true; } function setBurnThreshold(uint256 _burnThreshold) public onlyTaxOffice returns (bool) { burnThreshold = _burnThreshold; } function _getHermesPrice() internal view returns (uint256 _hermesPrice) { try IOracle(hermesOracle).consult(address(this), 1e18) returns (uint144 _price) { return uint256(_price); } catch { revert("Hermes: failed to fetch HERMES price from Oracle"); } } function _updateTaxRate(uint256 _hermesPrice) internal returns (uint256) { if (autoCalculateTax) { for (uint8 tierId = uint8(getTaxTiersTwapsCount()).sub(1); tierId >= 0; --tierId) { if (_hermesPrice >= taxTiersTwaps[tierId]) { require(taxTiersRates[tierId] < 10000, "tax equal or bigger to 100%"); taxRate = taxTiersRates[tierId]; return taxTiersRates[tierId]; } } } } function enableAutoCalculateTax() public onlyTaxOffice { autoCalculateTax = true; } function disableAutoCalculateTax() public onlyTaxOffice { autoCalculateTax = false; } function setHermesOracle(address _hermesOracle) public onlyOperatorOrTaxOffice { require(_hermesOracle != address(0), "oracle address cannot be 0 address"); hermesOracle = _hermesOracle; } function setTaxOffice(address _taxOffice) public onlyOperatorOrTaxOffice { require(_taxOffice != address(0), "tax office address cannot be 0 address"); emit TaxOfficeTransferred(taxOffice, _taxOffice); taxOffice = _taxOffice; } function setTaxCollectorAddress(address _taxCollectorAddress) public onlyTaxOffice { require(_taxCollectorAddress != address(0), "tax collector address must be non-zero address"); taxCollectorAddress = _taxCollectorAddress; } function setTaxRate(uint256 _taxRate) public onlyTaxOffice { require(!autoCalculateTax, "auto calculate tax cannot be enabled"); require(_taxRate < 10000, "tax equal or bigger to 100%"); taxRate = _taxRate; } function excludeAddress(address _address) public onlyOperatorOrTaxOffice returns (bool) { require(!excludedAddresses[_address], "address can't be excluded"); excludedAddresses[_address] = true; return true; } function includeAddress(address _address) public onlyOperatorOrTaxOffice returns (bool) { require(excludedAddresses[_address], "address can't be included"); excludedAddresses[_address] = false; return true; } /** * @notice Operator mints HERMES to a recipient * @param recipient_ The address of recipient * @param amount_ The amount of HERMES to mint to * @return whether the process has been done */ function mint(address recipient_, uint256 amount_) public onlyOperator returns (bool) { uint256 balanceBefore = balanceOf(recipient_); _mint(recipient_, amount_); uint256 balanceAfter = balanceOf(recipient_); return balanceAfter > balanceBefore; } function burn(uint256 amount) public override { super.burn(amount); } function burnFrom(address account, uint256 amount) public override onlyOperator { super.burnFrom(account, amount); } function transferFrom( address sender, address recipient, uint256 amount ) public override returns (bool) { uint256 currentTaxRate = 0; bool burnTax = false; if (autoCalculateTax) { uint256 currentHermesPrice = _getHermesPrice(); currentTaxRate = _updateTaxRate(currentHermesPrice); if (currentHermesPrice < burnThreshold) { burnTax = true; } } if (currentTaxRate == 0 || excludedAddresses[sender]) { _transfer(sender, recipient, amount); } else { _transferWithTax(sender, recipient, amount, burnTax); } _approve(sender, _msgSender(), allowance(sender, _msgSender()).sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function _transferWithTax( address sender, address recipient, uint256 amount, bool burnTax ) internal returns (bool) { uint256 taxAmount = amount.mul(taxRate).div(10000); uint256 amountAfterTax = amount.sub(taxAmount); if (burnTax) { // Burn tax super.burnFrom(sender, taxAmount); } else { // Transfer tax to tax collector _transfer(sender, taxCollectorAddress, taxAmount); } // Transfer amount after tax to recipient _transfer(sender, recipient, amountAfterTax); return true; } /** * @notice distribute to reward pool (only once) */ function distributeReward( address _launcherAddress ) external onlyOperator { require(!rewardPoolDistributed, "only can distribute once"); require(_launcherAddress != address(0), "!_launcherAddress"); rewardPoolDistributed = true; _mint(_launcherAddress, INITIAL_LAUNCH_DISTRIBUTION); } function governanceRecoverUnsupported( IERC20 _token, uint256 _amount, address _to ) external onlyOperator { _token.transfer(_to, _amount); } }
[{"inputs":[{"internalType":"uint256","name":"_taxRate","type":"uint256"},{"internalType":"address","name":"_taxCollectorAddress","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":"address","name":"previousOperator","type":"address"},{"indexed":true,"internalType":"address","name":"newOperator","type":"address"}],"name":"OperatorTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldAddress","type":"address"},{"indexed":false,"internalType":"address","name":"newAddress","type":"address"}],"name":"TaxOfficeTransferred","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":[],"name":"INITIAL_LAUNCH_DISTRIBUTION","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":[],"name":"autoCalculateTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnThreshold","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":"disableAutoCalculateTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_launcherAddress","type":"address"}],"name":"distributeReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableAutoCalculateTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"excludeAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"excludedAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTaxTiersRatesCount","outputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTaxTiersTwapsCount","outputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"governanceRecoverUnsupported","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"hermesOracle","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"includeAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"_address","type":"address"}],"name":"isAddressExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isOperator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient_","type":"address"},{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"rewardPoolDistributed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_burnThreshold","type":"uint256"}],"name":"setBurnThreshold","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_hermesOracle","type":"address"}],"name":"setHermesOracle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_taxCollectorAddress","type":"address"}],"name":"setTaxCollectorAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_taxOffice","type":"address"}],"name":"setTaxOffice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxRate","type":"uint256"}],"name":"setTaxRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_index","type":"uint8"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"setTaxTiersRate","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_index","type":"uint8"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"setTaxTiersTwap","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxCollectorAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxOffice","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"taxTiersRates","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"taxTiersTwaps","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":"newOperator_","type":"address"}],"name":"transferOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6006805460ff60a01b19169055670f43fc2c04ee0000600a819055610240604052600060809081526706f05b59d3b2000060a052670853a0d2313c000060c0526709b6e64a8ec6000060e052670b1a2bc2ec50000061010052670c7d713b49da000061012052670d2f13f7789f000061014052670de0b6b3a764000061016052670e92596fd6290000610180526101a0919091526710a741a4627800006101c05267120a871cc00200006101e05267136dcc951d8c0000610200526714d1120d7b16000061022052620000d790600c90600e62000647565b50604080516101c0810182526107d0815261076c6020820152610708918101919091526106a4606082015261064060808201526105dc60a0820181905260c0820181905260e0820181905261010082015261057861012082015261038461014082015261019061016082015260c861018082015260646101a08201526200016390600d90600e620006a2565b503480156200017157600080fd5b5060405162002f4f38038062002f4f833981810160405260408110156200019757600080fd5b5080516020918201516040805180820182526006808252654845524d455360d01b8287018181528451808601909552918452958301959095528051939492939092620001e79160039190620006e6565b508051620001fd906004906020840190620006e6565b50506005805460ff1916601217905550600062000219620003ae565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35062000279620003ae565b600680546001600160a01b0319166001600160a01b0392831617908190556040519116906000907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908290a361271082106200031c576040805162461bcd60e51b815260206004820152601b60248201527f74617820657175616c206f722062696767657220746f20313030250000000000604482015290519081900360640190fd5b6001600160a01b038116620003635760405162461bcd60e51b815260040180806020018281038252602e81526020018062002ef5602e913960400191505060405180910390fd5b6200036e30620003b2565b506200038333670de0b6b3a7640000620004a9565b600991909155600b80546001600160a01b0319166001600160a01b0390921691909117905562000770565b3390565b6000620003be620005b8565b80620003d457506008546001600160a01b031633145b620004115760405162461bcd60e51b815260040180806020018281038252602c81526020018062002f23602c913960400191505060405180910390fd5b6001600160a01b0382166000908152600e602052604090205460ff161562000480576040805162461bcd60e51b815260206004820152601960248201527f616464726573732063616e2774206265206578636c7564656400000000000000604482015290519081900360640190fd5b506001600160a01b03166000908152600e60205260409020805460ff1916600190811790915590565b6001600160a01b03821662000505576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6200051360008383620005e0565b6200052f81600254620005e560201b620019c11790919060201c565b6002556001600160a01b0382166000908152602081815260409091205462000562918390620019c1620005e5821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6006546000906001600160a01b0316620005d1620003ae565b6001600160a01b031614905090565b505050565b60008282018381101562000640576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b82805482825590600052602060002090810192821562000690579160200282015b828111156200069057825182906001600160401b031690559160200191906001019062000668565b506200069e92915062000759565b5090565b82805482825590600052602060002090810192821562000690579160200282015b8281111562000690578251829061ffff16905591602001919060010190620006c3565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200072957805160ff191683800117855562000690565b8280016001018555821562000690579182015b82811115620006905782518255916020019190600101906200073c565b5b808211156200069e57600081556001016200075a565b61277580620007806000396000f3fe608060405234801561001057600080fd5b50600436106102955760003560e01c806370a0823111610167578063a6431bba116100ce578063cf011b2611610087578063cf011b261461077a578063dd62ed3e146107a0578063ebca1bd9146107ce578063ee2a9535146107f4578063f2fde38b146107fc578063ff87fc7c1461082257610295565b8063a6431bba146106f3578063a9059cbb146106fb578063aed43a1614610727578063b87c5a4a1461072f578063c3bdf61314610755578063c6d69a301461075d57610295565b806393995d4b1161012057806393995d4b1461066c578063939ba2a41461069257806395d89b411461069a5780639662676c146106a25780639d6b5f21146106aa578063a457c2d7146106c757610295565b806370a08231146105fa578063715018a614610620578063771a3a1d1461062857806379cc6790146106305780638d3cc8181461065c5780638da5cb5b1461066457610295565b80633f07d76a1161020b57806354575af4116101c457806354575af41461054b578063570ca735146105815780635c29908d1461058957806365bbacd9146105a657806366206ce9146105ae57806369356d47146105d457610295565b80633f07d76a146104af57806340c10f19146104d557806342966c681461050157806342c6b4f11461051e5780634456eda21461053b5780634f6d38d01461054357610295565b806323b872dd1161025d57806323b872dd146103bf57806329605e77146103f5578063313ce5671461041b5780633758e6ce14610439578063395093511461045f5780633e5f13d41461048b57610295565b806306fdde031461029a578063092193ab14610317578063095ea7b31461033f578063096c15401461037f57806318160ddd146103a5575b600080fd5b6102a261082a565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102dc5781810151838201526020016102c4565b50505050905090810190601f1680156103095780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61033d6004803603602081101561032d57600080fd5b50356001600160a01b03166108c1565b005b61036b6004803603604081101561035557600080fd5b506001600160a01b0381351690602001356109e1565b604080519115158252519081900360200190f35b61033d6004803603602081101561039557600080fd5b50356001600160a01b03166109ff565b6103ad610abe565b60408051918252519081900360200190f35b61036b600480360360608110156103d557600080fd5b506001600160a01b03813581169160208101359091169060400135610ac4565b61033d6004803603602081101561040b57600080fd5b50356001600160a01b0316610b9f565b610423610c1c565b6040805160ff9092168252519081900360200190f35b61036b6004803603602081101561044f57600080fd5b50356001600160a01b0316610c25565b61036b6004803603604081101561047557600080fd5b506001600160a01b038135169060200135610d1a565b610493610d68565b604080516001600160a01b039092168252519081900360200190f35b61033d600480360360208110156104c557600080fd5b50356001600160a01b0316610d77565b61036b600480360360408110156104eb57600080fd5b506001600160a01b038135169060200135610e7e565b61033d6004803603602081101561051757600080fd5b5035610ef8565b6103ad6004803603602081101561053457600080fd5b5035610f01565b61036b610f1f565b6103ad610f45565b61033d6004803603606081101561056157600080fd5b506001600160a01b03813581169160208101359160409091013516610f4b565b61049361101c565b6103ad6004803603602081101561059f57600080fd5b503561102b565b61033d611038565b61036b600480360360408110156105c457600080fd5b5060ff8135169060200135611094565b61033d600480360360208110156105ea57600080fd5b50356001600160a01b03166111ca565b6103ad6004803603602081101561061057600080fd5b50356001600160a01b031661127e565b61033d611299565b6103ad61135d565b61033d6004803603604081101561064657600080fd5b506001600160a01b038135169060200135611363565b61036b6113ba565b6104936113ca565b61036b6004803603602081101561068257600080fd5b50356001600160a01b03166113de565b6103ad6114ca565b6102a26114d7565b61036b611538565b61036b600480360360208110156106c057600080fd5b5035611548565b61036b600480360360408110156106dd57600080fd5b506001600160a01b0381351690602001356115a1565b6103ad611609565b61036b6004803603604081101561071157600080fd5b506001600160a01b03813516906020013561160f565b610493611623565b61036b6004803603604081101561074557600080fd5b5060ff8135169060200135611632565b6104936116db565b61033d6004803603602081101561077357600080fd5b50356116ea565b61036b6004803603602081101561079057600080fd5b50356001600160a01b03166117db565b6103ad600480360360408110156107b657600080fd5b506001600160a01b03813581169160200135166117f0565b61036b600480360360208110156107e457600080fd5b50356001600160a01b031661181b565b6103ad611839565b61033d6004803603602081101561081257600080fd5b50356001600160a01b031661183f565b61033d61195f565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108b65780601f1061088b576101008083540402835291602001916108b6565b820191906000526020600020905b81548152906001019060200180831161089957829003601f168201915b505050505090505b90565b6006546001600160a01b0316331461090a5760405162461bcd60e51b81526004018080602001828103825260248152602001806125f16024913960400191505060405180910390fd5b600654600160a01b900460ff1615610969576040805162461bcd60e51b815260206004820152601860248201527f6f6e6c792063616e2064697374726962757465206f6e63650000000000000000604482015290519081900360640190fd5b6001600160a01b0381166109b8576040805162461bcd60e51b8152602060048201526011602482015270215f6c61756e636865724164647265737360781b604482015290519081900360640190fd5b6006805460ff60a01b1916600160a01b1790556109de8168056bc75e2d63100000611a22565b50565b60006109f56109ee611b12565b8484611b16565b5060015b92915050565b610a07610f1f565b80610a1c57506008546001600160a01b031633145b610a575760405162461bcd60e51b815260040180806020018281038252602c8152602001806126cb602c913960400191505060405180910390fd5b6001600160a01b038116610a9c5760405162461bcd60e51b81526004018080602001828103825260228152602001806126606022913960400191505060405180910390fd5b600780546001600160a01b0319166001600160a01b0392909216919091179055565b60025490565b600b5460009081908190600160a01b900460ff1615610b05576000610ae7611c02565b9050610af281611cd6565b9250600a54811015610b0357600191505b505b811580610b2a57506001600160a01b0386166000908152600e602052604090205460ff165b15610b3f57610b3a868686611de4565b610b4d565b610b4b86868684611f3f565b505b610b9386610b59611b12565b610b8e8760405180606001604052806028815260200161257760289139610b878c610b82611b12565b6117f0565b9190611fb8565b611b16565b50600195945050505050565b610ba7611b12565b6001600160a01b0316610bb86113ca565b6001600160a01b031614610c13576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6109de8161204f565b60055460ff1690565b6000610c2f610f1f565b80610c4457506008546001600160a01b031633145b610c7f5760405162461bcd60e51b815260040180806020018281038252602c8152602001806126cb602c913960400191505060405180910390fd5b6001600160a01b0382166000908152600e602052604090205460ff1615610ced576040805162461bcd60e51b815260206004820152601960248201527f616464726573732063616e2774206265206578636c7564656400000000000000604482015290519081900360640190fd5b506001600160a01b0381166000908152600e60205260409020805460ff191660019081179091555b919050565b60006109f5610d27611b12565b84610b8e8560016000610d38611b12565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906119c1565b6008546001600160a01b031681565b610d7f610f1f565b80610d9457506008546001600160a01b031633145b610dcf5760405162461bcd60e51b815260040180806020018281038252602c8152602001806126cb602c913960400191505060405180910390fd5b6001600160a01b038116610e145760405162461bcd60e51b81526004018080602001828103825260268152602001806124d36026913960400191505060405180910390fd5b600854604080516001600160a01b039283168152918316602083015280517f75237613d1cfb394eb7979839ecbeacaca4592ef0cf96791979625803948a6019281900390910190a1600880546001600160a01b0319166001600160a01b0392909216919091179055565b6006546000906001600160a01b03163314610eca5760405162461bcd60e51b81526004018080602001828103825260248152602001806125f16024913960400191505060405180910390fd5b6000610ed58461127e565b9050610ee18484611a22565b6000610eec8561127e565b91909111949350505050565b6109de816120ec565b600c8181548110610f0e57fe5b600091825260209091200154905081565b6006546000906001600160a01b0316610f36611b12565b6001600160a01b031614905090565b600a5481565b6006546001600160a01b03163314610f945760405162461bcd60e51b81526004018080602001828103825260248152602001806125f16024913960400191505060405180910390fd5b826001600160a01b031663a9059cbb82846040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b158015610feb57600080fd5b505af1158015610fff573d6000803e3d6000fd5b505050506040513d602081101561101557600080fd5b5050505050565b6006546001600160a01b031690565b600d8181548110610f0e57fe5b6008546001600160a01b03163314611085576040805162461bcd60e51b815260206004820152601c602482015260008051602061248d833981519152604482015290519081900360640190fd5b600b805460ff60a01b19169055565b6008546000906001600160a01b031633146110e4576040805162461bcd60e51b815260206004820152601c602482015260008051602061248d833981519152604482015290519081900360640190fd5b6110ec611609565b8360ff161061112c5760405162461bcd60e51b815260040180806020018281038252602a815260200180612615602a913960400191505060405180910390fd5b60ff83161561115e57600c6001840360ff168154811061114857fe5b9060005260206000200154821161115e57600080fd5b611171600161116b611609565b906120fd565b8360ff1610156111a457600c8360010160ff168154811061118e57fe5b906000526020600020015482106111a457600080fd5b81600c8460ff16815481106111b557fe5b60009182526020909120015550600192915050565b6008546001600160a01b03163314611217576040805162461bcd60e51b815260206004820152601c602482015260008051602061248d833981519152604482015290519081900360640190fd5b6001600160a01b03811661125c5760405162461bcd60e51b815260040180806020018281038252602e81526020018061259f602e913960400191505060405180910390fd5b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b031660009081526020819052604090205490565b6112a1611b12565b6001600160a01b03166112b26113ca565b6001600160a01b03161461130d576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b60095481565b6006546001600160a01b031633146113ac5760405162461bcd60e51b81526004018080602001828103825260248152602001806125f16024913960400191505060405180910390fd5b6113b6828261215a565b5050565b600b54600160a01b900460ff1681565b60055461010090046001600160a01b031690565b60006113e8610f1f565b806113fd57506008546001600160a01b031633145b6114385760405162461bcd60e51b815260040180806020018281038252602c8152602001806126cb602c913960400191505060405180910390fd5b6001600160a01b0382166000908152600e602052604090205460ff166114a5576040805162461bcd60e51b815260206004820152601960248201527f616464726573732063616e277420626520696e636c7564656400000000000000604482015290519081900360640190fd5b506001600160a01b03166000908152600e60205260409020805460ff19169055600190565b68056bc75e2d6310000081565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108b65780601f1061088b576101008083540402835291602001916108b6565b600654600160a01b900460ff1681565b6008546000906001600160a01b03163314611598576040805162461bcd60e51b815260206004820152601c602482015260008051602061248d833981519152604482015290519081900360640190fd5b600a9190915590565b60006109f56115ae611b12565b84610b8e8560405180606001604052806025815260200161271b60259139600160006115d8611b12565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611fb8565b600c5490565b60006109f561161c611b12565b8484611de4565b6007546001600160a01b031681565b6008546000906001600160a01b03163314611682576040805162461bcd60e51b815260206004820152601c602482015260008051602061248d833981519152604482015290519081900360640190fd5b61168a611839565b8360ff16106116ca5760405162461bcd60e51b815260040180806020018281038252602a815260200180612615602a913960400191505060405180910390fd5b81600d8460ff16815481106111b557fe5b600b546001600160a01b031681565b6008546001600160a01b03163314611737576040805162461bcd60e51b815260206004820152601c602482015260008051602061248d833981519152604482015290519081900360640190fd5b600b54600160a01b900460ff16156117805760405162461bcd60e51b81526004018080602001828103825260248152602001806126826024913960400191505060405180910390fd5b61271081106117d6576040805162461bcd60e51b815260206004820152601b60248201527f74617820657175616c206f722062696767657220746f20313030250000000000604482015290519081900360640190fd5b600955565b600e6020526000908152604090205460ff1681565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b03166000908152600e602052604090205460ff1690565b600d5490565b611847611b12565b6001600160a01b03166118586113ca565b6001600160a01b0316146118b3576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0381166118f85760405162461bcd60e51b81526004018080602001828103825260268152602001806124456026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6008546001600160a01b031633146119ac576040805162461bcd60e51b815260206004820152601c602482015260008051602061248d833981519152604482015290519081900360640190fd5b600b805460ff60a01b1916600160a01b179055565b600082820183811015611a1b576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b038216611a7d576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b611a89600083836121a3565b600254611a9690826119c1565b6002556001600160a01b038216600090815260208190526040902054611abc90826119c1565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b3390565b6001600160a01b038316611b5b5760405162461bcd60e51b81526004018080602001828103825260248152602001806126f76024913960400191505060405180910390fd5b6001600160a01b038216611ba05760405162461bcd60e51b815260040180806020018281038252602281526020018061246b6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60075460408051633ddac95360e01b8152306004820152670de0b6b3a7640000602482015290516000926001600160a01b031691633ddac953916044808301926020929190829003018186803b158015611c5b57600080fd5b505afa925050508015611c8057506040513d6020811015611c7b57600080fd5b505160015b611cbb5760405162461bcd60e51b81526004018080602001828103825260308152602001806125476030913960400191505060405180910390fd5b71ffffffffffffffffffffffffffffffffffff1690506108be565b600b54600090600160a01b900460ff1615610d15576000611d036001611cfa611609565b60ff16906121a8565b90505b600c8160ff1681548110611d1657fe5b90600052602060002001548310611ddb57612710600d8260ff1681548110611d3a57fe5b906000526020600020015410611d97576040805162461bcd60e51b815260206004820152601b60248201527f74617820657175616c206f722062696767657220746f20313030250000000000604482015290519081900360640190fd5b600d8160ff1681548110611da757fe5b9060005260206000200154600981905550600d8160ff1681548110611dc857fe5b9060005260206000200154915050610d15565b60001901611d06565b6001600160a01b038316611e295760405162461bcd60e51b81526004018080602001828103825260258152602001806126a66025913960400191505060405180910390fd5b6001600160a01b038216611e6e5760405162461bcd60e51b81526004018080602001828103825260238152602001806124006023913960400191505060405180910390fd5b611e798383836121a3565b611eb6816040518060600160405280602681526020016124ad602691396001600160a01b0386166000908152602081905260409020549190611fb8565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611ee590826119c1565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600080611f63612710611f5d600954876121ea90919063ffffffff16565b90612243565b90506000611f7185836120fd565b90508315611f8857611f83878361215a565b611fa0565b600b54611fa09088906001600160a01b031684611de4565b611fab878783611de4565b5060019695505050505050565b600081848411156120475760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561200c578181015183820152602001611ff4565b50505050905090810190601f1680156120395780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b0381166120945760405162461bcd60e51b815260040180806020018281038252602d8152602001806124f9602d913960400191505060405180910390fd5b6040516001600160a01b038216906000907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908290a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6109de6120f7611b12565b826122aa565b600082821115612154576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6000612185826040518060600160405280602481526020016125cd60249139610b8786610b82611b12565b905061219983612193611b12565b83611b16565b6121a383836122aa565b505050565b6000611a1b83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506123a6565b6000826121f9575060006109f9565b8282028284828161220657fe5b0414611a1b5760405162461bcd60e51b81526004018080602001828103825260218152602001806125266021913960400191505060405180910390fd5b6000808211612299576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b8183816122a257fe5b049392505050565b6001600160a01b0382166122ef5760405162461bcd60e51b815260040180806020018281038252602181526020018061263f6021913960400191505060405180910390fd5b6122fb826000836121a3565b61233881604051806060016040528060228152602001612423602291396001600160a01b0385166000908152602081905260409020549190611fb8565b6001600160a01b03831660009081526020819052604090205560025461235e90826120fd565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b60008360ff168360ff16111582906120475760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561200c578181015183820152602001611ff456fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737343616c6c6572206973206e6f742074686520746178206f66666963650000000045524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365746178206f666669636520616464726573732063616e6e6f74206265203020616464726573736f70657261746f723a207a65726f206164647265737320676976656e20666f72206e6577206f70657261746f72536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774865726d65733a206661696c656420746f206665746368204845524d45532070726963652066726f6d204f7261636c6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636574617820636f6c6c6563746f722061646472657373206d757374206265206e6f6e2d7a65726f206164647265737345524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e63656f70657261746f723a2063616c6c6572206973206e6f7420746865206f70657261746f72496e6465782068617320746f206c6f776572207468616e20636f756e74206f662074617820746965727345524332303a206275726e2066726f6d20746865207a65726f20616464726573736f7261636c6520616464726573732063616e6e6f74206265203020616464726573736175746f2063616c63756c617465207461782063616e6e6f7420626520656e61626c656445524332303a207472616e736665722066726f6d20746865207a65726f206164647265737343616c6c6572206973206e6f7420746865206f70657261746f72206f722074686520746178206f666669636545524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220bd0f58482dbc4c4b900914c94894256614adbc966c8079d82e37e8b8dd3bb9cd64736f6c634300060c003374617820636f6c6c6563746f722061646472657373206d757374206265206e6f6e2d7a65726f206164647265737343616c6c6572206973206e6f7420746865206f70657261746f72206f722074686520746178206f666669636500000000000000000000000000000000000000000000000000000000000000000000000000000000000000001ced274ae417857e03bf46a476b257808d2b34c1
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000001ced274ae417857e03bf46a476b257808d2b34c1
-----Decoded View---------------
Arg [0] : _taxRate (uint256): 0
Arg [1] : _taxCollectorAddress (address): 0x1ced274ae417857e03bf46a476b257808d2b34c1
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [1] : 0000000000000000000000001ced274ae417857e03bf46a476b257808d2b34c1
Deployed ByteCode Sourcemap
34394:9086:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13588:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42941:341;;;;;;;;;;;;;;;;-1:-1:-1;42941:341:0;-1:-1:-1;;;;;42941:341:0;;:::i;:::-;;15734:169;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;15734:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;39101:211;;;;;;;;;;;;;;;;-1:-1:-1;39101:211:0;-1:-1:-1;;;;;39101:211:0;;:::i;14687:108::-;;;:::i;:::-;;;;;;;;;;;;;;;;41341:858;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;41341:858:0;;;;;;;;;;;;;;;;;:::i;33162:115::-;;;;;;;;;;;;;;;;-1:-1:-1;33162:115:0;-1:-1:-1;;;;;33162:115:0;;:::i;14531:91::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;40091:240;;;;;;;;;;;;;;;;-1:-1:-1;40091:240:0;-1:-1:-1;;;;;40091:240:0;;:::i;17115:218::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17115:218:0;;;;;;;;:::i;34876:24::-;;;:::i;:::-;;;;-1:-1:-1;;;;;34876:24:0;;;;;;;;;;;;;;39320:259;;;;;;;;;;;;;;;;-1:-1:-1;39320:259:0;-1:-1:-1;;;;;39320:259:0;;:::i;40814:290::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;40814:290:0;;;;;;;;:::i;41112:83::-;;;;;;;;;;;;;;;;-1:-1:-1;41112:83:0;;:::i;35267:134::-;;;;;;;;;;;;;;;;-1:-1:-1;35267:134:0;;:::i;33054:100::-;;;:::i;35021:38::-;;;:::i;43290:187::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;43290:187:0;;;;;;;;;;;;;;;;;:::i;32826:85::-;;;:::i;35408:113::-;;;;;;;;;;;;;;;;-1:-1:-1;35408:113:0;;:::i;38994:99::-;;;:::i;37019:545::-;;;;;;;;;;;;;;;;-1:-1:-1;37019:545:0;;;;;;;;;:::i;39587:248::-;;;;;;;;;;;;;;;;-1:-1:-1;39587:248:0;-1:-1:-1;;;;;39587:248:0;;:::i;14858:127::-;;;;;;;;;;;;;;;;-1:-1:-1;14858:127:0;-1:-1:-1;;;;;14858:127:0;;:::i;31867:148::-;;;:::i;34934:22::-;;;:::i;41203:130::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;41203:130:0;;;;;;;;:::i;35212:28::-;;;:::i;31216:87::-;;;:::i;40339:240::-;;;;;;;;;;;;;;;;-1:-1:-1;40339:240:0;-1:-1:-1;;;;;40339:240:0;;:::i;34547:63::-;;;:::i;13798:95::-;;;:::i;34674:41::-;;;:::i;37904:135::-;;;;;;;;;;;;;;;;-1:-1:-1;37904:135:0;;:::i;17836:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17836:269:0;;;;;;;;:::i;36640:115::-;;;:::i;15198:175::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;15198:175:0;;;;;;;;:::i;34808:27::-;;;:::i;37572:324::-;;;;;;;;;;;;;;;;-1:-1:-1;37572:324:0;;;;;;;;;:::i;35110:34::-;;;:::i;39843:240::-;;;;;;;;;;;;;;;;-1:-1:-1;39843:240:0;;:::i;35573:49::-;;;;;;;;;;;;;;;;-1:-1:-1;35573:49:0;-1:-1:-1;;;;;35573:49:0;;:::i;15436:151::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;15436:151:0;;;;;;;;;;:::i;36886:125::-;;;;;;;;;;;;;;;;-1:-1:-1;36886:125:0;-1:-1:-1;;;;;36886:125:0;;:::i;36763:115::-;;;:::i;32170:244::-;;;;;;;;;;;;;;;;-1:-1:-1;32170:244:0;-1:-1:-1;;;;;32170:244:0;;:::i;38889:97::-;;;:::i;13588:91::-;13666:5;13659:12;;;;;;;;-1:-1:-1;;13659:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13633:13;;13659:12;;13666:5;;13659:12;;13666:5;13659:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13588:91;;:::o;42941:341::-;32962:9;;-1:-1:-1;;;;;32962:9:0;32975:10;32962:23;32954:72;;;;-1:-1:-1;;;32954:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43051:21:::1;::::0;-1:-1:-1;;;43051:21:0;::::1;;;43050:22;43042:59;;;::::0;;-1:-1:-1;;;43042:59:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;43120:30:0;::::1;43112:60;;;::::0;;-1:-1:-1;;;43112:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;43112:60:0;;;;;;;;;;;;;::::1;;43183:21;:28:::0;;-1:-1:-1;;;;43183:28:0::1;-1:-1:-1::0;;;43183:28:0::1;::::0;;43222:52:::1;43228:16:::0;34601:9:::1;43222:5;:52::i;:::-;42941:341:::0;:::o;15734:169::-;15817:4;15834:39;15843:12;:10;:12::i;:::-;15857:7;15866:6;15834:8;:39::i;:::-;-1:-1:-1;15891:4:0;15734:169;;;;;:::o;39101:211::-;35888:12;:10;:12::i;:::-;:39;;;-1:-1:-1;35904:9:0;;-1:-1:-1;;;;;35904:9:0;35917:10;35904:23;35888:39;35880:96;;;;-1:-1:-1;;;35880:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39199:27:0;::::1;39191:74;;;;-1:-1:-1::0;;;39191:74:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39276:12;:28:::0;;-1:-1:-1;;;;;;39276:28:0::1;-1:-1:-1::0;;;;;39276:28:0;;;::::1;::::0;;;::::1;::::0;;39101:211::o;14687:108::-;14775:12;;14687:108;:::o;41341:858::-;41564:16;;41473:4;;;;;;-1:-1:-1;;;41564:16:0;;;;41560:264;;;41597:26;41626:17;:15;:17::i;:::-;41597:46;;41675:34;41690:18;41675:14;:34::i;:::-;41658:51;;41749:13;;41728:18;:34;41724:89;;;41793:4;41783:14;;41724:89;41560:264;;41840:19;;;:48;;-1:-1:-1;;;;;;41863:25:0;;;;;;:17;:25;;;;;;;;41840:48;41836:202;;;41905:36;41915:6;41923:9;41934:6;41905:9;:36::i;:::-;41836:202;;;41974:52;41991:6;41999:9;42010:6;42018:7;41974:16;:52::i;:::-;;41836:202;42050:119;42059:6;42067:12;:10;:12::i;:::-;42081:87;42117:6;42081:87;;;;;;;;;;;;;;;;;:31;42091:6;42099:12;:10;:12::i;:::-;42081:9;:31::i;:::-;:35;:87;:35;:87::i;:::-;42050:8;:119::i;:::-;-1:-1:-1;42187:4:0;;41341:858;-1:-1:-1;;;;;41341:858:0:o;33162:115::-;31447:12;:10;:12::i;:::-;-1:-1:-1;;;;;31436:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;31436:23:0;;31428:68;;;;;-1:-1:-1;;;31428:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33238:31:::1;33256:12;33238:17;:31::i;14531:91::-:0;14605:9;;;;14531:91;:::o;40091:240::-;40173:4;35888:12;:10;:12::i;:::-;:39;;;-1:-1:-1;35904:9:0;;-1:-1:-1;;;;;35904:9:0;35917:10;35904:23;35888:39;35880:96;;;;-1:-1:-1;;;35880:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;40199:27:0;::::1;;::::0;;;:17:::1;:27;::::0;;;;;::::1;;40198:28;40190:66;;;::::0;;-1:-1:-1;;;40190:66:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;;40267:27:0;::::1;;::::0;;;:17:::1;:27;::::0;;;;:34;;-1:-1:-1;;40267:34:0::1;40297:4;40267:34:::0;;::::1;::::0;;;35987:1:::1;40091:240:::0;;;:::o;17115:218::-;17203:4;17220:83;17229:12;:10;:12::i;:::-;17243:7;17252:50;17291:10;17252:11;:25;17264:12;:10;:12::i;:::-;-1:-1:-1;;;;;17252:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;17252:25:0;;;:34;;;;;;;;;;;:38;:50::i;34876:24::-;;;-1:-1:-1;;;;;34876:24:0;;:::o;39320:259::-;35888:12;:10;:12::i;:::-;:39;;;-1:-1:-1;35904:9:0;;-1:-1:-1;;;;;35904:9:0;35917:10;35904:23;35888:39;35880:96;;;;-1:-1:-1;;;35880:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39412:24:0;::::1;39404:75;;;;-1:-1:-1::0;;;39404:75:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39516:9;::::0;39495:43:::1;::::0;;-1:-1:-1;;;;;39516:9:0;;::::1;39495:43:::0;;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;;;;;;::::1;39549:9;:22:::0;;-1:-1:-1;;;;;;39549:22:0::1;-1:-1:-1::0;;;;;39549:22:0;;;::::1;::::0;;;::::1;::::0;;39320:259::o;40814:290::-;32962:9;;40894:4;;-1:-1:-1;;;;;32962:9:0;32975:10;32962:23;32954:72;;;;-1:-1:-1;;;32954:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40911:21:::1;40935;40945:10;40935:9;:21::i;:::-;40911:45;;40967:26;40973:10;40985:7;40967:5;:26::i;:::-;41004:20;41027:21;41037:10;41027:9;:21::i;:::-;41068:28:::0;;;::::1;::::0;40814:290;-1:-1:-1;;;;40814:290:0:o;41112:83::-;41169:18;41180:6;41169:10;:18::i;35267:134::-;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35267:134:0;:::o;33054:100::-;33137:9;;33097:4;;-1:-1:-1;;;;;33137:9:0;33121:12;:10;:12::i;:::-;-1:-1:-1;;;;;33121:25:0;;33114:32;;33054:100;:::o;35021:38::-;;;;:::o;43290:187::-;32962:9;;-1:-1:-1;;;;;32962:9:0;32975:10;32962:23;32954:72;;;;-1:-1:-1;;;32954:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43440:6:::1;-1:-1:-1::0;;;;;43440:15:0::1;;43456:3;43461:7;43440:29;;;;;;;;;;;;;-1:-1:-1::0;;;;;43440:29:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;;;;;43290:187:0:o;32826:85::-;32894:9;;-1:-1:-1;;;;;32894:9:0;32826:85;:::o;35408:113::-;;;;;;;;;;38994:99;35750:9;;-1:-1:-1;;;;;35750:9:0;35763:10;35750:23;35742:64;;;;;-1:-1:-1;;;35742:64:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;35742:64:0;;;;;;;;;;;;;;;39061:16:::1;:24:::0;;-1:-1:-1;;;;39061:24:0::1;::::0;;38994:99::o;37019:545::-;35750:9;;37104:4;;-1:-1:-1;;;;;35750:9:0;35763:10;35750:23;35742:64;;;;;-1:-1:-1;;;35742:64:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;35742:64:0;;;;;;;;;;;;;;;37202:23:::1;:21;:23::i;:::-;37193:6;:32;;;37185:87;;;;-1:-1:-1::0;;;37185:87:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37287:10;::::0;::::1;::::0;37283:86:::1;;37331:13;37354:1;37345:6;:10;37331:25;;;;;;;;;;;;;;;;;;37322:6;:34;37314:43;;;::::0;::::1;;37392:30;37420:1;37392:23;:21;:23::i;:::-;:27:::0;::::1;:30::i;:::-;37383:6;:39;;;37379:115;;;37456:13;37470:6;37479:1;37470:10;37456:25;;;;;;;;;;;;;;;;;;37447:6;:34;37439:43;;;::::0;::::1;;37528:6;37504:13;37518:6;37504:21;;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;:30:::0;-1:-1:-1;37552:4:0::1;37019:545:::0;;;;:::o;39587:248::-;35750:9;;-1:-1:-1;;;;;35750:9:0;35763:10;35750:23;35742:64;;;;;-1:-1:-1;;;35742:64:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;35742:64:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;39689:34:0;::::1;39681:93;;;;-1:-1:-1::0;;;39681:93:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39785:19;:42:::0;;-1:-1:-1;;;;;;39785:42:0::1;-1:-1:-1::0;;;;;39785:42:0;;;::::1;::::0;;;::::1;::::0;;39587:248::o;14858:127::-;-1:-1:-1;;;;;14959:18:0;14932:7;14959:18;;;;;;;;;;;;14858:127::o;31867:148::-;31447:12;:10;:12::i;:::-;-1:-1:-1;;;;;31436:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;31436:23:0;;31428:68;;;;;-1:-1:-1;;;31428:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31958:6:::1;::::0;31937:40:::1;::::0;31974:1:::1;::::0;31958:6:::1;::::0;::::1;-1:-1:-1::0;;;;;31958:6:0::1;::::0;31937:40:::1;::::0;31974:1;;31937:40:::1;31988:6;:19:::0;;-1:-1:-1;;;;;;31988:19:0::1;::::0;;31867:148::o;34934:22::-;;;;:::o;41203:130::-;32962:9;;-1:-1:-1;;;;;32962:9:0;32975:10;32962:23;32954:72;;;;-1:-1:-1;;;32954:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41294:31:::1;41309:7;41318:6;41294:14;:31::i;:::-;41203:130:::0;;:::o;35212:28::-;;;-1:-1:-1;;;35212:28:0;;;;;:::o;31216:87::-;31289:6;;;;;-1:-1:-1;;;;;31289:6:0;;31216:87::o;40339:240::-;40421:4;35888:12;:10;:12::i;:::-;:39;;;-1:-1:-1;35904:9:0;;-1:-1:-1;;;;;35904:9:0;35917:10;35904:23;35888:39;35880:96;;;;-1:-1:-1;;;35880:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;40446:27:0;::::1;;::::0;;;:17:::1;:27;::::0;;;;;::::1;;40438:65;;;::::0;;-1:-1:-1;;;40438:65:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;;40514:27:0::1;40544:5;40514:27:::0;;;:17:::1;:27;::::0;;;;:35;;-1:-1:-1;;40514:35:0::1;::::0;;-1:-1:-1;;40339:240:0:o;34547:63::-;34601:9;34547:63;:::o;13798:95::-;13878:7;13871:14;;;;;;;;-1:-1:-1;;13871:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13845:13;;13871:14;;13878:7;;13871:14;;13878:7;13871:14;;;;;;;;;;;;;;;;;;;;;;;;34674:41;;;-1:-1:-1;;;34674:41:0;;;;;:::o;37904:135::-;35750:9;;37984:4;;-1:-1:-1;;;;;35750:9:0;35763:10;35750:23;35742:64;;;;;-1:-1:-1;;;35742:64:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;35742:64:0;;;;;;;;;;;;;;;38001:13:::1;:30:::0;;;;37904:135;:::o;17836:269::-;17929:4;17946:129;17955:12;:10;:12::i;:::-;17969:7;17978:96;18017:15;17978:96;;;;;;;;;;;;;;;;;:11;:25;17990:12;:10;:12::i;:::-;-1:-1:-1;;;;;17978:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;17978:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;36640:115::-;36727:13;:20;36640:115;:::o;15198:175::-;15284:4;15301:42;15311:12;:10;:12::i;:::-;15325:9;15336:6;15301:9;:42::i;34808:27::-;;;-1:-1:-1;;;;;34808:27:0;;:::o;37572:324::-;35750:9;;37657:4;;-1:-1:-1;;;;;35750:9:0;35763:10;35750:23;35742:64;;;;;-1:-1:-1;;;35742:64:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;35742:64:0;;;;;;;;;;;;;;;37755:23:::1;:21;:23::i;:::-;37746:6;:32;;;37738:87;;;;-1:-1:-1::0;;;37738:87:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37860:6;37836:13;37850:6;37836:21;;;;;;;;;35110:34:::0;;;-1:-1:-1;;;;;35110:34:0;;:::o;39843:240::-;35750:9;;-1:-1:-1;;;;;35750:9:0;35763:10;35750:23;35742:64;;;;;-1:-1:-1;;;35742:64:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;35742:64:0;;;;;;;;;;;;;;;39922:16:::1;::::0;-1:-1:-1;;;39922:16:0;::::1;;;39921:17;39913:66;;;;-1:-1:-1::0;;;39913:66:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40009:5;39998:8;:16;39990:56;;;::::0;;-1:-1:-1;;;39990:56:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;40057:7;:18:::0;39843:240::o;35573:49::-;;;;;;;;;;;;;;;:::o;15436:151::-;-1:-1:-1;;;;;15552:18:0;;;15525:7;15552:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15436:151::o;36886:125::-;-1:-1:-1;;;;;36976:27:0;36952:4;36976:27;;;:17;:27;;;;;;;;;36886:125::o;36763:115::-;36850:13;:20;36763:115;:::o;32170:244::-;31447:12;:10;:12::i;:::-;-1:-1:-1;;;;;31436:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;31436:23:0;;31428:68;;;;;-1:-1:-1;;;31428:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32259:22:0;::::1;32251:73;;;;-1:-1:-1::0;;;32251:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32361:6;::::0;32340:38:::1;::::0;-1:-1:-1;;;;;32340:38:0;;::::1;::::0;32361:6:::1;::::0;::::1;;::::0;32340:38:::1;::::0;;;::::1;32389:6;:17:::0;;-1:-1:-1;;;;;32389:17:0;;::::1;;;-1:-1:-1::0;;;;;;32389:17:0;;::::1;::::0;;;::::1;::::0;;32170:244::o;38889:97::-;35750:9;;-1:-1:-1;;;;;35750:9:0;35763:10;35750:23;35742:64;;;;;-1:-1:-1;;;35742:64:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;35742:64:0;;;;;;;;;;;;;;;38955:16:::1;:23:::0;;-1:-1:-1;;;;38955:23:0::1;-1:-1:-1::0;;;38955:23:0::1;::::0;;38889:97::o;6725:179::-;6783:7;6815:5;;;6839:6;;;;6831:46;;;;;-1:-1:-1;;;6831:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;6895:1;6725:179;-1:-1:-1;;;6725:179:0:o;19416:378::-;-1:-1:-1;;;;;19500:21:0;;19492:65;;;;;-1:-1:-1;;;19492:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;19570:49;19599:1;19603:7;19612:6;19570:20;:49::i;:::-;19647:12;;:24;;19664:6;19647:16;:24::i;:::-;19632:12;:39;-1:-1:-1;;;;;19703:18:0;;:9;:18;;;;;;;;;;;:30;;19726:6;19703:22;:30::i;:::-;-1:-1:-1;;;;;19682:18:0;;:9;:18;;;;;;;;;;;:51;;;;19749:37;;;;;;;19682:18;;:9;;19749:37;;;;;;;;;;19416:378;;:::o;703:106::-;791:10;703:106;:::o;20983:346::-;-1:-1:-1;;;;;21085:19:0;;21077:68;;;;-1:-1:-1;;;21077:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21164:21:0;;21156:68;;;;-1:-1:-1;;;21156:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21237:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;21289:32;;;;;;;;;;;;;;;;;20983:346;;;:::o;38047:311::-;38142:12;;38134:50;;;-1:-1:-1;;;38134:50:0;;38172:4;38134:50;;;;38179:4;38134:50;;;;;;38097:20;;-1:-1:-1;;;;;38142:12:0;;38134:29;;:50;;;;;;;;;;;;;;38142:12;38134:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38134:50:0;;;38130:221;;38281:58;;-1:-1:-1;;;38281:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38130:221;38232:15;;;-1:-1:-1;38225:22:0;;38366:515;38454:16;;38430:7;;-1:-1:-1;;;38454:16:0;;;;38450:424;;;38492:12;38507:37;38542:1;38513:23;:21;:23::i;:::-;38507:34;;;;:37::i;:::-;38492:52;;38487:376;38608:13;38622:6;38608:21;;;;;;;;;;;;;;;;;;38592:12;:37;38588:260;;38686:5;38662:13;38676:6;38662:21;;;;;;;;;;;;;;;;;;:29;38654:69;;;;;-1:-1:-1;;;38654:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;38756:13;38770:6;38756:21;;;;;;;;;;;;;;;;;;38746:7;:31;;;;38807:13;38821:6;38807:21;;;;;;;;;;;;;;;;;;38800:28;;;;;38588:260;-1:-1:-1;;38559:8:0;38487:376;;18595:539;-1:-1:-1;;;;;18701:20:0;;18693:70;;;;-1:-1:-1;;;18693:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18782:23:0;;18774:71;;;;-1:-1:-1;;;18774:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18858:47;18879:6;18887:9;18898:6;18858:20;:47::i;:::-;18938:71;18960:6;18938:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18938:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;18918:17:0;;;:9;:17;;;;;;;;;;;:91;;;;19043:20;;;;;;;:32;;19068:6;19043:24;:32::i;:::-;-1:-1:-1;;;;;19020:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;19091:35;;;;;;;19020:20;;19091:35;;;;;;;;;;;;;18595:539;;;:::o;42207:654::-;42359:4;42376:17;42396:30;42420:5;42396:19;42407:7;;42396:6;:10;;:19;;;;:::i;:::-;:23;;:30::i;:::-;42376:50;-1:-1:-1;42437:22:0;42462:21;:6;42376:50;42462:10;:21::i;:::-;42437:46;;42500:7;42496:226;;;42549:33;42564:6;42572:9;42549:14;:33::i;:::-;42496:226;;;42679:19;;42661:49;;42671:6;;-1:-1:-1;;;;;42679:19:0;42700:9;42661;:49::i;:::-;42785:44;42795:6;42803:9;42814:14;42785:9;:44::i;:::-;-1:-1:-1;42849:4:0;;42207:654;-1:-1:-1;;;;;;42207:654:0:o;9552:166::-;9638:7;9674:12;9666:6;;;;9658:29;;;;-1:-1:-1;;;9658:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;9705:5:0;;;9552:166::o;33285:257::-;-1:-1:-1;;;;;33362:26:0;;33354:84;;;;-1:-1:-1;;;33354:84:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33454:45;;-1:-1:-1;;;;;33454:45:0;;;33482:1;;33454:45;;33482:1;;33454:45;33510:9;:24;;-1:-1:-1;;;;;;33510:24:0;-1:-1:-1;;;;;33510:24:0;;;;;;;;;;33285:257::o;23012:91::-;23068:27;23074:12;:10;:12::i;:::-;23088:6;23068:5;:27::i;7187:158::-;7245:7;7278:1;7273;:6;;7265:49;;;;;-1:-1:-1;;;7265:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7332:5:0;;;7187:158::o;23422:295::-;23499:26;23528:84;23565:6;23528:84;;;;;;;;;;;;;;;;;:32;23538:7;23547:12;:10;:12::i;23528:84::-;23499:113;;23625:51;23634:7;23643:12;:10;:12::i;:::-;23657:18;23625:8;:51::i;:::-;23687:22;23693:7;23702:6;23687:5;:22::i;:::-;23422:295;;;:::o;26006:130::-;26060:5;26085:43;26089:1;26092;26085:43;;;;;;;;;;;;;;;;;:3;:43::i;7604:220::-;7662:7;7686:6;7682:20;;-1:-1:-1;7701:1:0;7694:8;;7682:20;7725:5;;;7729:1;7725;:5;:1;7749:5;;;;;:10;7741:56;;;;-1:-1:-1;;;7741:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8302:153;8360:7;8392:1;8388;:5;8380:44;;;;;-1:-1:-1;;;8380:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;8446:1;8442;:5;;;;;;;8302:153;-1:-1:-1;;;8302:153:0:o;20127:418::-;-1:-1:-1;;;;;20211:21:0;;20203:67;;;;-1:-1:-1;;;20203:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20283:49;20304:7;20321:1;20325:6;20283:20;:49::i;:::-;20366:68;20389:6;20366:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20366:18:0;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;20345:18:0;;:9;:18;;;;;;;;;;:89;20460:12;;:24;;20477:6;20460:16;:24::i;:::-;20445:12;:39;20500:37;;;;;;;;20526:1;;-1:-1:-1;;;;;20500:37:0;;;;;;;;;;;;20127:418;;:::o;26439:184::-;26521:5;26552:1;26547:6;;:1;:6;;;;26555:12;26539:29;;;;;-1:-1:-1;;;26539:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Swarm Source
ipfs://bd0f58482dbc4c4b900914c94894256614adbc966c8079d82e37e8b8dd3bb9cd
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.