Polygon Sponsored slots available. Book your slot here!
Overview
POL Balance
0 POL
POL Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Sponsored
Loading...
Loading
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:
PDDollar
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2022-03-23 */ // SPDX-License-Identifier: MIT // File @openzeppelin/contracts/utils/[email protected] 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] 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] 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] 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 pddollarn 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] 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] 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 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] pragma solidity >=0.6.0 <0.8.0; // File @openzeppelin/contracts/access/[email protected] 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 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 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/PDDollar.sol pragma solidity 0.6.12; contract PDDollar is ERC20Burnable, Operator { using SafeMath8 for uint8; using SafeMath for uint256; // Initial distribution for the first 48h genesis pools uint256 public constant INITIAL_GENESIS_POOL_DISTRIBUTION = 40000 ether; // Distribution for airdrops wallet uint256 public constant INITIAL_AIRDROP_WALLET_DISTRIBUTION = 40000 ether; // Have the rewards pddollarn distributed to the pools bool public rewardPoolDistributed = false; /* ================= Taxation =============== */ // Address of the Oracle address public pddollarOracle; // 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 PDDOLLAR ERC-20 contract. */ constructor(uint256 _taxRate, address _taxCollectorAddress) public ERC20("pddollar", "PDDOLLAR") { // Mints 1 PDDOLLAR 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 _getPDDollarPrice() internal view returns (uint256 _pddollarPrice) { try IOracle(pddollarOracle).consult(address(this), 1e18) returns (uint144 _price) { return uint256(_price); } catch { revert("PDDollar: failed to fetch PDDOLLAR price from Oracle"); } } function _updateTaxRate(uint256 _pddollarPrice) internal returns (uint256) { if (autoCalculateTax) { for (uint8 tierId = uint8(getTaxTiersTwapsCount()).sub(1); tierId >= 0; --tierId) { if (_pddollarPrice >= 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 setPDDollarOracle(address _pddollarOracle) public onlyOperatorOrTaxOffice { require(_pddollarOracle != address(0), "oracle address cannot be 0 address"); pddollarOracle = _pddollarOracle; } 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 PDDOLLAR to a recipient * @param recipient_ The address of recipient * @param amount_ The amount of PDDOLLAR to mint to * @return whether the process has pddollarn 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 currentPDDollarPrice = _getPDDollarPrice(); currentTaxRate = _updateTaxRate(currentPDDollarPrice); if (currentPDDollarPrice < 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 _genesisPool, address _airdropWallet ) external onlyOperator { require(!rewardPoolDistributed, "only can distribute once"); require(_genesisPool != address(0), "!_genesisPool"); require(_airdropWallet != address(0), "!_airdropWallet"); rewardPoolDistributed = true; _mint(_genesisPool, INITIAL_GENESIS_POOL_DISTRIBUTION); _mint(_airdropWallet, INITIAL_AIRDROP_WALLET_DISTRIBUTION); } function governanceRecoverUnsupported( IERC20 _token, uint256 _amount, address _to ) external onlyOperator { _token.transfer(_to, _amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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_AIRDROP_WALLET_DISTRIBUTION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"INITIAL_GENESIS_POOL_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":"_genesisPool","type":"address"},{"internalType":"address","name":"_airdropWallet","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":[{"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":"pddollarOracle","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":"_pddollarOracle","type":"address"}],"name":"setPDDollarOracle","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
60806040526000600660146101000a81548160ff021916908315150217905550670f43fc2c04ee0000600a55604051806101c00160405280600067ffffffffffffffff1681526020016706f05b59d3b2000067ffffffffffffffff168152602001670853a0d2313c000067ffffffffffffffff1681526020016709b6e64a8ec6000067ffffffffffffffff168152602001670b1a2bc2ec50000067ffffffffffffffff168152602001670c7d713b49da000067ffffffffffffffff168152602001670d2f13f7789f000067ffffffffffffffff168152602001670de0b6b3a764000067ffffffffffffffff168152602001670e92596fd629000067ffffffffffffffff168152602001670f43fc2c04ee000067ffffffffffffffff1681526020016710a741a46278000067ffffffffffffffff16815260200167120a871cc002000067ffffffffffffffff16815260200167136dcc951d8c000067ffffffffffffffff1681526020016714d1120d7b16000067ffffffffffffffff16815250600c90600e6200019092919062000b17565b50604051806101c001604052806107d061ffff16815260200161076c61ffff16815260200161070861ffff1681526020016106a461ffff16815260200161064061ffff1681526020016105dc61ffff1681526020016105dc61ffff1681526020016105dc61ffff1681526020016105dc61ffff16815260200161057861ffff16815260200161038461ffff16815260200161019061ffff16815260200160c861ffff168152602001606461ffff16815250600d90600e6200025392919062000b75565b503480156200026157600080fd5b506040516200527238038062005272833981810160405260408110156200028757600080fd5b8101908080519060200190929190805190602001909291905050506040518060400160405280600881526020017f7064646f6c6c61720000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f5044444f4c4c415200000000000000000000000000000000000000000000000081525081600390805190602001906200032692919062000bcd565b5080600490805190602001906200033f92919062000bcd565b506012600560006101000a81548160ff021916908360ff16021790555050506000620003706200065860201b60201c565b905080600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506200041f6200065860201b60201c565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed60405160405180910390a3612710821062000554576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f74617820657175616c206f722062696767657220746f2031303025000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415620005dc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e81526020018062005218602e913960400191505060405180910390fd5b620005ed306200066060201b60201c565b506200060833670de0b6b3a76400006200084460201b60201c565b8160098190555080600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505062000c73565b600033905090565b60006200067262000a2260201b60201c565b80620006cb57503373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b62000722576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c81526020018062005246602c913960400191505060405180910390fd5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615620007e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f616464726573732063616e2774206265206578636c756465640000000000000081525060200191505060405180910390fd5b6001600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060019050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620008e8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b620008fc6000838362000a8960201b60201c565b620009188160025462000a8e60201b6200313d1790919060201c565b60028190555062000976816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000a8e60201b6200313d1790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1662000a6d6200065860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b505050565b60008082840190508381101562000b0d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b82805482825590600052602060002090810192821562000b62579160200282015b8281111562000b61578251829067ffffffffffffffff1690559160200191906001019062000b38565b5b50905062000b71919062000c54565b5090565b82805482825590600052602060002090810192821562000bba579160200282015b8281111562000bb9578251829061ffff1690559160200191906001019062000b96565b5b50905062000bc9919062000c54565b5090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1062000c1057805160ff191683800117855562000c41565b8280016001018555821562000c41579182015b8281111562000c4057825182559160200191906001019062000c23565b5b50905062000c50919062000c54565b5090565b5b8082111562000c6f57600081600090555060010162000c55565b5090565b6145958062000c836000396000f3fe608060405234801561001057600080fd5b50600436106102a05760003560e01c8063715018a611610167578063a9059cbb116100ce578063ebca1bd911610087578063ebca1bd914610dc2578063ee2a953514610e1c578063f2fde38b14610e3a578063f4fd47cf14610e7e578063ff87fc7c14610ee2578063ffa8226e14610eec576102a0565b8063a9059cbb14610bd9578063b87c5a4a14610c3d578063c3bdf61314610c8e578063c6d69a3014610cc2578063cf011b2614610cf0578063dd62ed3e14610d4a576102a0565b806393995d4b1161012057806393995d4b14610a1657806395d89b4114610a705780639662676c14610af35780639d6b5f2114610b13578063a457c2d714610b57578063a6431bba14610bbb576102a0565b8063715018a614610918578063771a3a1d1461092257806379cc6790146109405780638b0e63d71461098e5780638d3cc818146109c25780638da5cb5b146109e2576102a0565b806342966c681161020b578063570ca735116101c4578063570ca735146107ab5780635c29908d146107df57806365bbacd91461082157806366206ce91461082b57806369356d471461087c57806370a08231146108c0576102a0565b806342966c681461067157806342c6b4f11461069f5780634456eda2146106e15780634e20a02c146107015780634f6d38d01461071f57806354575af41461073d576102a0565b8063313ce5671161025d578063313ce567146104b65780633758e6ce146104d757806339509351146105315780633e5f13d4146105955780633f07d76a146105c957806340c10f191461060d576102a0565b806306fdde03146102a5578063095ea7b31461032857806318160ddd1461038c5780631fbc5fb4146103aa57806323b872dd146103ee57806329605e7714610472575b600080fd5b6102ad610f0a565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102ed5780820151818401526020810190506102d2565b50505050905090810190601f16801561031a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103746004803603604081101561033e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fac565b60405180821515815260200191505060405180910390f35b610394610fca565b6040518082815260200191505060405180910390f35b6103ec600480360360208110156103c057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610fd4565b005b61045a6004803603606081101561040457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611153565b60405180821515815260200191505060405180910390f35b6104b46004803603602081101561048857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061126f565b005b6104be61132a565b604051808260ff16815260200191505060405180910390f35b610519600480360360208110156104ed57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611341565b60405180821515815260200191505060405180910390f35b61057d6004803603604081101561054757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611519565b60405180821515815260200191505060405180910390f35b61059d6115cc565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61060b600480360360208110156105df57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506115f2565b005b6106596004803603604081101561062357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506117fe565b60405180821515815260200191505060405180910390f35b61069d6004803603602081101561068757600080fd5b81019080803590602001909291905050506118d7565b005b6106cb600480360360208110156106b557600080fd5b81019080803590602001909291905050506118e3565b6040518082815260200191505060405180910390f35b6106e9611904565b60405180821515815260200191505060405180910390f35b610709611963565b6040518082815260200191505060405180910390f35b610727611971565b6040518082815260200191505060405180910390f35b6107a96004803603606081101561075357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611977565b005b6107b3611acf565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61080b600480360360208110156107f557600080fd5b8101908080359060200190929190505050611af9565b6040518082815260200191505060405180910390f35b610829611b1a565b005b6108646004803603604081101561084157600080fd5b81019080803560ff16906020019092919080359060200190929190505050611bfa565b60405180821515815260200191505060405180910390f35b6108be6004803603602081101561089257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611e49565b005b610902600480360360208110156108d657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611fd6565b6040518082815260200191505060405180910390f35b61092061201e565b005b61092a61218e565b6040518082815260200191505060405180910390f35b61098c6004803603604081101561095657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612194565b005b610996612248565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6109ca61226e565b60405180821515815260200191505060405180910390f35b6109ea612281565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610a5860048036036020811015610a2c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506122ab565b60405180821515815260200191505060405180910390f35b610a78612482565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610ab8578082015181840152602081019050610a9d565b50505050905090810190601f168015610ae55780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610afb612524565b60405180821515815260200191505060405180910390f35b610b3f60048036036020811015610b2957600080fd5b8101908080359060200190929190505050612537565b60405180821515815260200191505060405180910390f35b610ba360048036036040811015610b6d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612608565b60405180821515815260200191505060405180910390f35b610bc36126d5565b6040518082815260200191505060405180910390f35b610c2560048036036040811015610bef57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506126e2565b60405180821515815260200191505060405180910390f35b610c7660048036036040811015610c5357600080fd5b81019080803560ff16906020019092919080359060200190929190505050612700565b60405180821515815260200191505060405180910390f35b610c966128ca565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610cee60048036036020811015610cd857600080fd5b81019080803590602001909291905050506128f0565b005b610d3260048036036020811015610d0657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612a9a565b60405180821515815260200191505060405180910390f35b610dac60048036036040811015610d6057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612aba565b6040518082815260200191505060405180910390f35b610e0460048036036020811015610dd857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612b41565b60405180821515815260200191505060405180910390f35b610e24612b97565b6040518082815260200191505060405180910390f35b610e7c60048036036020811015610e5057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612ba4565b005b610ee060048036036040811015610e9457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612d99565b005b610eea61304f565b005b610ef461312f565b6040518082815260200191505060405180910390f35b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610fa25780601f10610f7757610100808354040283529160200191610fa2565b820191906000526020600020905b815481529060010190602001808311610f8557829003601f168201915b5050505050905090565b6000610fc0610fb96131c5565b84846131cd565b6001905092915050565b6000600254905090565b610fdc611904565b8061103457503373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611089576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806144b7602c913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561110f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061444c6022913960400191505060405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080600090506000600b60149054906101000a900460ff161561119957600061117b6133c4565b905061118681613503565b9250600a5481101561119757600191505b505b60008214806111f15750600e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561120657611201868686613652565b611214565b61121286868684613913565b505b611262866112206131c5565b61125d876040518060600160405280602881526020016143636028913961124e8c6112496131c5565b612aba565b6139b49092919063ffffffff16565b6131cd565b6001925050509392505050565b6112776131c5565b73ffffffffffffffffffffffffffffffffffffffff16611295612281565b73ffffffffffffffffffffffffffffffffffffffff161461131e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61132781613a6e565b50565b6000600560009054906101000a900460ff16905090565b600061134b611904565b806113a357503373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6113f8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806144b7602c913960400191505060405180910390fd5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156114b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f616464726573732063616e2774206265206578636c756465640000000000000081525060200191505060405180910390fd5b6001600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060019050919050565b60006115c26115266131c5565b846115bd85600160006115376131c5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461313d90919063ffffffff16565b6131cd565b6001905092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6115fa611904565b8061165257503373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6116a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806144b7602c913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561172d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806142ef6026913960400191505060405180910390fd5b7f75237613d1cfb394eb7979839ecbeacaca4592ef0cf96791979625803948a601600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1681526020019250505060405180910390a180600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60003373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146118a6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806143dd6024913960400191505060405180910390fd5b60006118b184611fd6565b90506118bd8484613b93565b60006118c885611fd6565b90508181119250505092915050565b6118e081613d5a565b50565b600c81815481106118f057fe5b906000526020600020016000915090505481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166119476131c5565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b690878678326eac900000081565b600a5481565b3373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a1d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806143dd6024913960400191505060405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb82846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015611a8e57600080fd5b505af1158015611aa2573d6000803e3d6000fd5b505050506040513d6020811015611ab857600080fd5b810190808051906020019092919050505050505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d8181548110611b0657fe5b906000526020600020016000915090505481565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611bdd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f43616c6c6572206973206e6f742074686520746178206f66666963650000000081525060200191505060405180910390fd5b6000600b60146101000a81548160ff021916908315150217905550565b60003373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611cbf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f43616c6c6572206973206e6f742074686520746178206f66666963650000000081525060200191505060405180910390fd5b60008360ff161015611d39576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f496e6465782068617320746f20626520686967686572207468616e203000000081525060200191505060405180910390fd5b611d416126d5565b8360ff1610611d9b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614401602a913960400191505060405180910390fd5b60008360ff161115611dd157600c6001840360ff1681548110611dba57fe5b90600052602060002001548211611dd057600080fd5b5b611dec6001611dde6126d5565b613d6e90919063ffffffff16565b8360ff161015611e2057600c6001840160ff1681548110611e0957fe5b90600052602060002001548210611e1f57600080fd5b5b81600c8460ff1681548110611e3157fe5b90600052602060002001819055506001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f0c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f43616c6c6572206973206e6f742074686520746178206f66666963650000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f92576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e81526020018061438b602e913960400191505060405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6120266131c5565b73ffffffffffffffffffffffffffffffffffffffff16612044612281565b73ffffffffffffffffffffffffffffffffffffffff16146120cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60095481565b3373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461223a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806143dd6024913960400191505060405180910390fd5b6122448282613df1565b5050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b60149054906101000a900460ff1681565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006122b5611904565b8061230d57503373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b612362576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806144b7602c913960400191505060405180910390fd5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612421576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f616464726573732063616e277420626520696e636c756465640000000000000081525060200191505060405180910390fd5b6000600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060019050919050565b606060048054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561251a5780601f106124ef5761010080835404028352916020019161251a565b820191906000526020600020905b8154815290600101906020018083116124fd57829003601f168201915b5050505050905090565b600660149054906101000a900460ff1681565b60003373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146125fc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f43616c6c6572206973206e6f742074686520746178206f66666963650000000081525060200191505060405180910390fd5b81600a81905550919050565b60006126cb6126156131c5565b846126c68560405180606001604052806025815260200161453b602591396001600061263f6131c5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546139b49092919063ffffffff16565b6131cd565b6001905092915050565b6000600c80549050905090565b60006126f66126ef6131c5565b8484613652565b6001905092915050565b60003373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146127c5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f43616c6c6572206973206e6f742074686520746178206f66666963650000000081525060200191505060405180910390fd5b60008360ff16101561283f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f496e6465782068617320746f20626520686967686572207468616e203000000081525060200191505060405180910390fd5b612847612b97565b8360ff16106128a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614401602a913960400191505060405180910390fd5b81600d8460ff16815481106128b257fe5b90600052602060002001819055506001905092915050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146129b3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f43616c6c6572206973206e6f742074686520746178206f66666963650000000081525060200191505060405180910390fd5b600b60149054906101000a900460ff1615612a19576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061446e6024913960400191505060405180910390fd5b6127108110612a90576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f74617820657175616c206f722062696767657220746f2031303025000000000081525060200191505060405180910390fd5b8060098190555050565b600e6020528060005260406000206000915054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600d80549050905090565b612bac6131c5565b73ffffffffffffffffffffffffffffffffffffffff16612bca612281565b73ffffffffffffffffffffffffffffffffffffffff1614612c53576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612cd9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806142816026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b3373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612e3f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806143dd6024913960400191505060405180910390fd5b600660149054906101000a900460ff1615612ec2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f6f6e6c792063616e2064697374726962757465206f6e6365000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f65576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f215f67656e65736973506f6f6c0000000000000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613008576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f215f61697264726f7057616c6c6574000000000000000000000000000000000081525060200191505060405180910390fd5b6001600660146101000a81548160ff02191690831515021790555061303782690878678326eac9000000613b93565b61304b81690878678326eac9000000613b93565b5050565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613112576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f43616c6c6572206973206e6f742074686520746178206f66666963650000000081525060200191505060405180910390fd5b6001600b60146101000a81548160ff021916908315150217905550565b690878678326eac900000081565b6000808284019050838110156131bb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613253576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806144e36024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806142a76022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16633ddac95330670de0b6b3a76400006040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060206040518083038186803b15801561345f57600080fd5b505afa92505050801561349357506040513d602081101561347f57600080fd5b810190808051906020019092919050505060015b6134e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260348152602001806145076034913960400191505060405180910390fd5b8071ffffffffffffffffffffffffffffffffffff1691505090565b6000600b60149054906101000a900460ff161561364c57600061353a60016135296126d5565b60ff16613e5390919063ffffffff16565b90505b60008160ff161061364a57600c8160ff168154811061355857fe5b9060005260206000200154831061363e57612710600d8260ff168154811061357c57fe5b9060005260206000200154106135fa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f74617820657175616c206f722062696767657220746f2031303025000000000081525060200191505060405180910390fd5b600d8160ff168154811061360a57fe5b9060005260206000200154600981905550600d8160ff168154811061362b57fe5b906000526020600020015491505061364d565b8060019003905061353d565b505b5b919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156136d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806144926025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561375e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061423c6023913960400191505060405180910390fd5b613769838383613e9d565b6137d4816040518060600160405280602681526020016142c9602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546139b49092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613867816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461313d90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b60008061393f61271061393160095487613ea290919063ffffffff16565b613f2890919063ffffffff16565b905060006139568286613d6e90919063ffffffff16565b9050831561396d576139688783613df1565b61399b565b61399a87600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684613652565b5b6139a6878783613652565b600192505050949350505050565b6000838311158290613a61576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613a26578082015181840152602081019050613a0b565b50505050905090810190601f168015613a535780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5082840390509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613af4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d815260200180614315602d913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed60405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613c36576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b613c4260008383613e9d565b613c578160025461313d90919063ffffffff16565b600281905550613cae816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461313d90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b613d6b613d656131c5565b82613fb1565b50565b600082821115613de6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b818303905092915050565b6000613e30826040518060600160405280602481526020016143b960249139613e2186613e1c6131c5565b612aba565b6139b49092919063ffffffff16565b9050613e4483613e3e6131c5565b836131cd565b613e4e8383613fb1565b505050565b6000613e9583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250614175565b905092915050565b505050565b600080831415613eb55760009050613f22565b6000828402905082848281613ec657fe5b0414613f1d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806143426021913960400191505060405180910390fd5b809150505b92915050565b6000808211613f9f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060200191505060405180910390fd5b818381613fa857fe5b04905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415614037576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061442b6021913960400191505060405180910390fd5b61404382600083613e9d565b6140ae8160405180606001604052806022815260200161425f602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546139b49092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061410581600254613d6e90919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b60008360ff168360ff1611158290614228576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156141ed5780820151818401526020810190506141d2565b50505050905090810190601f16801561421a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838503905080915050939250505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365746178206f666669636520616464726573732063616e6e6f74206265203020616464726573736f70657261746f723a207a65726f206164647265737320676976656e20666f72206e6577206f70657261746f72536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636574617820636f6c6c6563746f722061646472657373206d757374206265206e6f6e2d7a65726f206164647265737345524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e63656f70657261746f723a2063616c6c6572206973206e6f7420746865206f70657261746f72496e6465782068617320746f206c6f776572207468616e20636f756e74206f662074617820746965727345524332303a206275726e2066726f6d20746865207a65726f20616464726573736f7261636c6520616464726573732063616e6e6f74206265203020616464726573736175746f2063616c63756c617465207461782063616e6e6f7420626520656e61626c656445524332303a207472616e736665722066726f6d20746865207a65726f206164647265737343616c6c6572206973206e6f7420746865206f70657261746f72206f722074686520746178206f666669636545524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735044446f6c6c61723a206661696c656420746f206665746368205044444f4c4c41522070726963652066726f6d204f7261636c6545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e71309f07587cb57692da021b5b560ffbfa8cbae60b944b3aa9a51d6345cdd5b64736f6c634300060c003374617820636f6c6c6563746f722061646472657373206d757374206265206e6f6e2d7a65726f206164647265737343616c6c6572206973206e6f7420746865206f70657261746f72206f722074686520746178206f66666963650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000dc4305f678a417158cd475ba064f15456e13bedd
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102a05760003560e01c8063715018a611610167578063a9059cbb116100ce578063ebca1bd911610087578063ebca1bd914610dc2578063ee2a953514610e1c578063f2fde38b14610e3a578063f4fd47cf14610e7e578063ff87fc7c14610ee2578063ffa8226e14610eec576102a0565b8063a9059cbb14610bd9578063b87c5a4a14610c3d578063c3bdf61314610c8e578063c6d69a3014610cc2578063cf011b2614610cf0578063dd62ed3e14610d4a576102a0565b806393995d4b1161012057806393995d4b14610a1657806395d89b4114610a705780639662676c14610af35780639d6b5f2114610b13578063a457c2d714610b57578063a6431bba14610bbb576102a0565b8063715018a614610918578063771a3a1d1461092257806379cc6790146109405780638b0e63d71461098e5780638d3cc818146109c25780638da5cb5b146109e2576102a0565b806342966c681161020b578063570ca735116101c4578063570ca735146107ab5780635c29908d146107df57806365bbacd91461082157806366206ce91461082b57806369356d471461087c57806370a08231146108c0576102a0565b806342966c681461067157806342c6b4f11461069f5780634456eda2146106e15780634e20a02c146107015780634f6d38d01461071f57806354575af41461073d576102a0565b8063313ce5671161025d578063313ce567146104b65780633758e6ce146104d757806339509351146105315780633e5f13d4146105955780633f07d76a146105c957806340c10f191461060d576102a0565b806306fdde03146102a5578063095ea7b31461032857806318160ddd1461038c5780631fbc5fb4146103aa57806323b872dd146103ee57806329605e7714610472575b600080fd5b6102ad610f0a565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102ed5780820151818401526020810190506102d2565b50505050905090810190601f16801561031a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103746004803603604081101561033e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fac565b60405180821515815260200191505060405180910390f35b610394610fca565b6040518082815260200191505060405180910390f35b6103ec600480360360208110156103c057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610fd4565b005b61045a6004803603606081101561040457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611153565b60405180821515815260200191505060405180910390f35b6104b46004803603602081101561048857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061126f565b005b6104be61132a565b604051808260ff16815260200191505060405180910390f35b610519600480360360208110156104ed57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611341565b60405180821515815260200191505060405180910390f35b61057d6004803603604081101561054757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611519565b60405180821515815260200191505060405180910390f35b61059d6115cc565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61060b600480360360208110156105df57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506115f2565b005b6106596004803603604081101561062357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506117fe565b60405180821515815260200191505060405180910390f35b61069d6004803603602081101561068757600080fd5b81019080803590602001909291905050506118d7565b005b6106cb600480360360208110156106b557600080fd5b81019080803590602001909291905050506118e3565b6040518082815260200191505060405180910390f35b6106e9611904565b60405180821515815260200191505060405180910390f35b610709611963565b6040518082815260200191505060405180910390f35b610727611971565b6040518082815260200191505060405180910390f35b6107a96004803603606081101561075357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611977565b005b6107b3611acf565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61080b600480360360208110156107f557600080fd5b8101908080359060200190929190505050611af9565b6040518082815260200191505060405180910390f35b610829611b1a565b005b6108646004803603604081101561084157600080fd5b81019080803560ff16906020019092919080359060200190929190505050611bfa565b60405180821515815260200191505060405180910390f35b6108be6004803603602081101561089257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611e49565b005b610902600480360360208110156108d657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611fd6565b6040518082815260200191505060405180910390f35b61092061201e565b005b61092a61218e565b6040518082815260200191505060405180910390f35b61098c6004803603604081101561095657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612194565b005b610996612248565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6109ca61226e565b60405180821515815260200191505060405180910390f35b6109ea612281565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610a5860048036036020811015610a2c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506122ab565b60405180821515815260200191505060405180910390f35b610a78612482565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610ab8578082015181840152602081019050610a9d565b50505050905090810190601f168015610ae55780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610afb612524565b60405180821515815260200191505060405180910390f35b610b3f60048036036020811015610b2957600080fd5b8101908080359060200190929190505050612537565b60405180821515815260200191505060405180910390f35b610ba360048036036040811015610b6d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612608565b60405180821515815260200191505060405180910390f35b610bc36126d5565b6040518082815260200191505060405180910390f35b610c2560048036036040811015610bef57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506126e2565b60405180821515815260200191505060405180910390f35b610c7660048036036040811015610c5357600080fd5b81019080803560ff16906020019092919080359060200190929190505050612700565b60405180821515815260200191505060405180910390f35b610c966128ca565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610cee60048036036020811015610cd857600080fd5b81019080803590602001909291905050506128f0565b005b610d3260048036036020811015610d0657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612a9a565b60405180821515815260200191505060405180910390f35b610dac60048036036040811015610d6057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612aba565b6040518082815260200191505060405180910390f35b610e0460048036036020811015610dd857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612b41565b60405180821515815260200191505060405180910390f35b610e24612b97565b6040518082815260200191505060405180910390f35b610e7c60048036036020811015610e5057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612ba4565b005b610ee060048036036040811015610e9457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612d99565b005b610eea61304f565b005b610ef461312f565b6040518082815260200191505060405180910390f35b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610fa25780601f10610f7757610100808354040283529160200191610fa2565b820191906000526020600020905b815481529060010190602001808311610f8557829003601f168201915b5050505050905090565b6000610fc0610fb96131c5565b84846131cd565b6001905092915050565b6000600254905090565b610fdc611904565b8061103457503373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611089576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806144b7602c913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561110f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061444c6022913960400191505060405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080600090506000600b60149054906101000a900460ff161561119957600061117b6133c4565b905061118681613503565b9250600a5481101561119757600191505b505b60008214806111f15750600e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561120657611201868686613652565b611214565b61121286868684613913565b505b611262866112206131c5565b61125d876040518060600160405280602881526020016143636028913961124e8c6112496131c5565b612aba565b6139b49092919063ffffffff16565b6131cd565b6001925050509392505050565b6112776131c5565b73ffffffffffffffffffffffffffffffffffffffff16611295612281565b73ffffffffffffffffffffffffffffffffffffffff161461131e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61132781613a6e565b50565b6000600560009054906101000a900460ff16905090565b600061134b611904565b806113a357503373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6113f8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806144b7602c913960400191505060405180910390fd5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156114b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f616464726573732063616e2774206265206578636c756465640000000000000081525060200191505060405180910390fd5b6001600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060019050919050565b60006115c26115266131c5565b846115bd85600160006115376131c5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461313d90919063ffffffff16565b6131cd565b6001905092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6115fa611904565b8061165257503373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6116a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806144b7602c913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561172d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806142ef6026913960400191505060405180910390fd5b7f75237613d1cfb394eb7979839ecbeacaca4592ef0cf96791979625803948a601600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1681526020019250505060405180910390a180600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60003373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146118a6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806143dd6024913960400191505060405180910390fd5b60006118b184611fd6565b90506118bd8484613b93565b60006118c885611fd6565b90508181119250505092915050565b6118e081613d5a565b50565b600c81815481106118f057fe5b906000526020600020016000915090505481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166119476131c5565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b690878678326eac900000081565b600a5481565b3373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a1d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806143dd6024913960400191505060405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb82846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015611a8e57600080fd5b505af1158015611aa2573d6000803e3d6000fd5b505050506040513d6020811015611ab857600080fd5b810190808051906020019092919050505050505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d8181548110611b0657fe5b906000526020600020016000915090505481565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611bdd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f43616c6c6572206973206e6f742074686520746178206f66666963650000000081525060200191505060405180910390fd5b6000600b60146101000a81548160ff021916908315150217905550565b60003373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611cbf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f43616c6c6572206973206e6f742074686520746178206f66666963650000000081525060200191505060405180910390fd5b60008360ff161015611d39576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f496e6465782068617320746f20626520686967686572207468616e203000000081525060200191505060405180910390fd5b611d416126d5565b8360ff1610611d9b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614401602a913960400191505060405180910390fd5b60008360ff161115611dd157600c6001840360ff1681548110611dba57fe5b90600052602060002001548211611dd057600080fd5b5b611dec6001611dde6126d5565b613d6e90919063ffffffff16565b8360ff161015611e2057600c6001840160ff1681548110611e0957fe5b90600052602060002001548210611e1f57600080fd5b5b81600c8460ff1681548110611e3157fe5b90600052602060002001819055506001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f0c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f43616c6c6572206973206e6f742074686520746178206f66666963650000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f92576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e81526020018061438b602e913960400191505060405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6120266131c5565b73ffffffffffffffffffffffffffffffffffffffff16612044612281565b73ffffffffffffffffffffffffffffffffffffffff16146120cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60095481565b3373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461223a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806143dd6024913960400191505060405180910390fd5b6122448282613df1565b5050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b60149054906101000a900460ff1681565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006122b5611904565b8061230d57503373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b612362576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806144b7602c913960400191505060405180910390fd5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612421576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f616464726573732063616e277420626520696e636c756465640000000000000081525060200191505060405180910390fd5b6000600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060019050919050565b606060048054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561251a5780601f106124ef5761010080835404028352916020019161251a565b820191906000526020600020905b8154815290600101906020018083116124fd57829003601f168201915b5050505050905090565b600660149054906101000a900460ff1681565b60003373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146125fc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f43616c6c6572206973206e6f742074686520746178206f66666963650000000081525060200191505060405180910390fd5b81600a81905550919050565b60006126cb6126156131c5565b846126c68560405180606001604052806025815260200161453b602591396001600061263f6131c5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546139b49092919063ffffffff16565b6131cd565b6001905092915050565b6000600c80549050905090565b60006126f66126ef6131c5565b8484613652565b6001905092915050565b60003373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146127c5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f43616c6c6572206973206e6f742074686520746178206f66666963650000000081525060200191505060405180910390fd5b60008360ff16101561283f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f496e6465782068617320746f20626520686967686572207468616e203000000081525060200191505060405180910390fd5b612847612b97565b8360ff16106128a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614401602a913960400191505060405180910390fd5b81600d8460ff16815481106128b257fe5b90600052602060002001819055506001905092915050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146129b3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f43616c6c6572206973206e6f742074686520746178206f66666963650000000081525060200191505060405180910390fd5b600b60149054906101000a900460ff1615612a19576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061446e6024913960400191505060405180910390fd5b6127108110612a90576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f74617820657175616c206f722062696767657220746f2031303025000000000081525060200191505060405180910390fd5b8060098190555050565b600e6020528060005260406000206000915054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600d80549050905090565b612bac6131c5565b73ffffffffffffffffffffffffffffffffffffffff16612bca612281565b73ffffffffffffffffffffffffffffffffffffffff1614612c53576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612cd9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806142816026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b3373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612e3f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806143dd6024913960400191505060405180910390fd5b600660149054906101000a900460ff1615612ec2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f6f6e6c792063616e2064697374726962757465206f6e6365000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f65576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f215f67656e65736973506f6f6c0000000000000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613008576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f215f61697264726f7057616c6c6574000000000000000000000000000000000081525060200191505060405180910390fd5b6001600660146101000a81548160ff02191690831515021790555061303782690878678326eac9000000613b93565b61304b81690878678326eac9000000613b93565b5050565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613112576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f43616c6c6572206973206e6f742074686520746178206f66666963650000000081525060200191505060405180910390fd5b6001600b60146101000a81548160ff021916908315150217905550565b690878678326eac900000081565b6000808284019050838110156131bb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613253576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806144e36024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806142a76022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16633ddac95330670de0b6b3a76400006040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060206040518083038186803b15801561345f57600080fd5b505afa92505050801561349357506040513d602081101561347f57600080fd5b810190808051906020019092919050505060015b6134e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260348152602001806145076034913960400191505060405180910390fd5b8071ffffffffffffffffffffffffffffffffffff1691505090565b6000600b60149054906101000a900460ff161561364c57600061353a60016135296126d5565b60ff16613e5390919063ffffffff16565b90505b60008160ff161061364a57600c8160ff168154811061355857fe5b9060005260206000200154831061363e57612710600d8260ff168154811061357c57fe5b9060005260206000200154106135fa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f74617820657175616c206f722062696767657220746f2031303025000000000081525060200191505060405180910390fd5b600d8160ff168154811061360a57fe5b9060005260206000200154600981905550600d8160ff168154811061362b57fe5b906000526020600020015491505061364d565b8060019003905061353d565b505b5b919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156136d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806144926025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561375e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061423c6023913960400191505060405180910390fd5b613769838383613e9d565b6137d4816040518060600160405280602681526020016142c9602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546139b49092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613867816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461313d90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b60008061393f61271061393160095487613ea290919063ffffffff16565b613f2890919063ffffffff16565b905060006139568286613d6e90919063ffffffff16565b9050831561396d576139688783613df1565b61399b565b61399a87600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684613652565b5b6139a6878783613652565b600192505050949350505050565b6000838311158290613a61576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613a26578082015181840152602081019050613a0b565b50505050905090810190601f168015613a535780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5082840390509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613af4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d815260200180614315602d913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed60405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613c36576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b613c4260008383613e9d565b613c578160025461313d90919063ffffffff16565b600281905550613cae816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461313d90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b613d6b613d656131c5565b82613fb1565b50565b600082821115613de6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b818303905092915050565b6000613e30826040518060600160405280602481526020016143b960249139613e2186613e1c6131c5565b612aba565b6139b49092919063ffffffff16565b9050613e4483613e3e6131c5565b836131cd565b613e4e8383613fb1565b505050565b6000613e9583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250614175565b905092915050565b505050565b600080831415613eb55760009050613f22565b6000828402905082848281613ec657fe5b0414613f1d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806143426021913960400191505060405180910390fd5b809150505b92915050565b6000808211613f9f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060200191505060405180910390fd5b818381613fa857fe5b04905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415614037576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061442b6021913960400191505060405180910390fd5b61404382600083613e9d565b6140ae8160405180606001604052806022815260200161425f602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546139b49092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061410581600254613d6e90919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b60008360ff168360ff1611158290614228576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156141ed5780820151818401526020810190506141d2565b50505050905090810190601f16801561421a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838503905080915050939250505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365746178206f666669636520616464726573732063616e6e6f74206265203020616464726573736f70657261746f723a207a65726f206164647265737320676976656e20666f72206e6577206f70657261746f72536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636574617820636f6c6c6563746f722061646472657373206d757374206265206e6f6e2d7a65726f206164647265737345524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e63656f70657261746f723a2063616c6c6572206973206e6f7420746865206f70657261746f72496e6465782068617320746f206c6f776572207468616e20636f756e74206f662074617820746965727345524332303a206275726e2066726f6d20746865207a65726f20616464726573736f7261636c6520616464726573732063616e6e6f74206265203020616464726573736175746f2063616c63756c617465207461782063616e6e6f7420626520656e61626c656445524332303a207472616e736665722066726f6d20746865207a65726f206164647265737343616c6c6572206973206e6f7420746865206f70657261746f72206f722074686520746178206f666669636545524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735044446f6c6c61723a206661696c656420746f206665746368205044444f4c4c41522070726963652066726f6d204f7261636c6545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e71309f07587cb57692da021b5b560ffbfa8cbae60b944b3aa9a51d6345cdd5b64736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000dc4305f678a417158cd475ba064f15456e13bedd
-----Decoded View---------------
Arg [0] : _taxRate (uint256): 0
Arg [1] : _taxCollectorAddress (address): 0xdC4305f678a417158cd475bA064F15456e13bEdD
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [1] : 000000000000000000000000dc4305f678a417158cd475ba064f15456e13bedd
Deployed Bytecode Sourcemap
33703:9461:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13491:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15637:169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;14590:108;;;:::i;:::-;;;;;;;;;;;;;;;;;;;38599:221;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;40858:866;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32917:115;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;14434:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;39599:240;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;17018:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;34352:24;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;38828:259;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;40331:290;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;40629:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34743:134;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32809:100;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;33883:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;34497:38;;;:::i;:::-;;;;;;;;;;;;;;;;;;;42974:187;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;32581:85;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;34884:113;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;38492:99;;;:::i;:::-;;36503:545;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;39095:248;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;14761:127;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31650:148;;;:::i;:::-;;34410:22;;;:::i;:::-;;;;;;;;;;;;;;;;;;;40720:130;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34282:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;34688:28;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30999:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;39847:240;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;13701:95;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34148:41;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;37388:135;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;17739:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;36124:115;;;:::i;:::-;;;;;;;;;;;;;;;;;;;15101:175;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;37056:324;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;34586:34;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;39351:240;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;35049:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;15339:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;36370:125;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;36247:115;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31953:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;42466:500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;38387:97;;;:::i;:::-;;34006:73;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13491:91;13536:13;13569:5;13562:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13491:91;:::o;15637:169::-;15720:4;15737:39;15746:12;:10;:12::i;:::-;15760:7;15769:6;15737:8;:39::i;:::-;15794:4;15787:11;;15637:169;;;;:::o;14590:108::-;14651:7;14678:12;;14671:19;;14590:108;:::o;38599:221::-;35364:12;:10;:12::i;:::-;:39;;;;35393:10;35380:23;;:9;;;;;;;;;;;:23;;;35364:39;35356:96;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38728:1:::1;38701:29;;:15;:29;;;;38693:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38797:15;38780:14;;:32;;;;;;;;;;;;;;;;;;38599:221:::0;:::o;40858:866::-;40990:4;41007:22;41032:1;41007:26;;41044:12;41081:16;;;;;;;;;;;41077:272;;;41114:28;41145:19;:17;:19::i;:::-;41114:50;;41196:36;41211:20;41196:14;:36::i;:::-;41179:53;;41274:13;;41251:20;:36;41247:91;;;41318:4;41308:14;;41247:91;41077:272;;41383:1;41365:14;:19;:48;;;;41388:17;:25;41406:6;41388:25;;;;;;;;;;;;;;;;;;;;;;;;;41365:48;41361:202;;;41430:36;41440:6;41448:9;41459:6;41430:9;:36::i;:::-;41361:202;;;41499:52;41516:6;41524:9;41535:6;41543:7;41499:16;:52::i;:::-;;41361:202;41575:119;41584:6;41592:12;:10;:12::i;:::-;41606:87;41642:6;41606:87;;;;;;;;;;;;;;;;;:31;41616:6;41624:12;:10;:12::i;:::-;41606:9;:31::i;:::-;:35;;:87;;;;;:::i;:::-;41575:8;:119::i;:::-;41712:4;41705:11;;;;40858:866;;;;;:::o;32917:115::-;31230:12;:10;:12::i;:::-;31219:23;;:7;:5;:7::i;:::-;:23;;;31211:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32993:31:::1;33011:12;32993:17;:31::i;:::-;32917:115:::0;:::o;14434:91::-;14483:5;14508:9;;;;;;;;;;;14501:16;;14434:91;:::o;39599:240::-;39681:4;35364:12;:10;:12::i;:::-;:39;;;;35393:10;35380:23;;:9;;;;;;;;;;;:23;;;35364:39;35356:96;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39707:17:::1;:27;39725:8;39707:27;;;;;;;;;;;;;;;;;;;;;;;;;39706:28;39698:66;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;39805:4;39775:17;:27;39793:8;39775:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;39827:4;39820:11;;39599:240:::0;;;:::o;17018:218::-;17106:4;17123:83;17132:12;:10;:12::i;:::-;17146:7;17155:50;17194:10;17155:11;:25;17167:12;:10;:12::i;:::-;17155:25;;;;;;;;;;;;;;;:34;17181:7;17155:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;17123:8;:83::i;:::-;17224:4;17217:11;;17018:218;;;;:::o;34352:24::-;;;;;;;;;;;;;:::o;38828:259::-;35364:12;:10;:12::i;:::-;:39;;;;35393:10;35380:23;;:9;;;;;;;;;;;:23;;;35364:39;35356:96;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38942:1:::1;38920:24;;:10;:24;;;;38912:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39003:43;39024:9;;;;;;;;;;;39035:10;39003:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;39069:10;39057:9;;:22;;;;;;;;;;;;;;;;;;38828:259:::0;:::o;40331:290::-;40411:4;32730:10;32717:23;;:9;;;;;;;;;;;:23;;;32709:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40428:21:::1;40452;40462:10;40452:9;:21::i;:::-;40428:45;;40484:26;40490:10;40502:7;40484:5;:26::i;:::-;40521:20;40544:21;40554:10;40544:9;:21::i;:::-;40521:44;;40600:13;40585:12;:28;40578:35;;;;40331:290:::0;;;;:::o;40629:83::-;40686:18;40697:6;40686:10;:18::i;:::-;40629:83;:::o;34743:134::-;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32809:100::-;32852:4;32892:9;;;;;;;;;;;32876:25;;:12;:10;:12::i;:::-;:25;;;32869:32;;32809:100;:::o;33883:71::-;33943:11;33883:71;:::o;34497:38::-;;;;:::o;42974:187::-;32730:10;32717:23;;:9;;;;;;;;;;;:23;;;32709:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43124:6:::1;:15;;;43140:3;43145:7;43124:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;42974:187:::0;;;:::o;32581:85::-;32622:7;32649:9;;;;;;;;;;;32642:16;;32581:85;:::o;34884:113::-;;;;;;;;;;;;;;;;;;;;;;;;;:::o;38492:99::-;35239:10;35226:23;;:9;;;;;;;;;;;:23;;;35218:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38578:5:::1;38559:16;;:24;;;;;;;;;;;;;;;;;;38492:99::o:0;36503:545::-;36588:4;35239:10;35226:23;;:9;;;;;;;;;;;:23;;;35218:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36623:1:::1;36613:6;:11;;;;36605:53;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;36686:23;:21;:23::i;:::-;36677:6;:32;;;36669:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36780:1;36771:6;:10;;;36767:86;;;36815:13;36838:1;36829:6;:10;36815:25;;;;;;;;;;;;;;;;;;36806:6;:34;36798:43;;;::::0;::::1;;36767:86;36876:30;36904:1;36876:23;:21;:23::i;:::-;:27;;:30;;;;:::i;:::-;36867:6;:39;;;36863:115;;;36940:13;36963:1;36954:6;:10;36940:25;;;;;;;;;;;;;;;;;;36931:6;:34;36923:43;;;::::0;::::1;;36863:115;37012:6;36988:13;37002:6;36988:21;;;;;;;;;;;;;;;;;:30;;;;37036:4;37029:11;;36503:545:::0;;;;:::o;39095:248::-;35239:10;35226:23;;:9;;;;;;;;;;;:23;;;35218:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39229:1:::1;39197:34;;:20;:34;;;;39189:93;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39315:20;39293:19;;:42;;;;;;;;;;;;;;;;;;39095:248:::0;:::o;14761:127::-;14835:7;14862:9;:18;14872:7;14862:18;;;;;;;;;;;;;;;;14855:25;;14761:127;;;:::o;31650:148::-;31230:12;:10;:12::i;:::-;31219:23;;:7;:5;:7::i;:::-;:23;;;31211:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31757:1:::1;31720:40;;31741:6;;;;;;;;;;;31720:40;;;;;;;;;;;;31788:1;31771:6;;:19;;;;;;;;;;;;;;;;;;31650:148::o:0;34410:22::-;;;;:::o;40720:130::-;32730:10;32717:23;;:9;;;;;;;;;;;:23;;;32709:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40811:31:::1;40826:7;40835:6;40811:14;:31::i;:::-;40720:130:::0;;:::o;34282:29::-;;;;;;;;;;;;;:::o;34688:28::-;;;;;;;;;;;;;:::o;30999:87::-;31045:7;31072:6;;;;;;;;;;;31065:13;;30999:87;:::o;39847:240::-;39929:4;35364:12;:10;:12::i;:::-;:39;;;;35393:10;35380:23;;:9;;;;;;;;;;;:23;;;35364:39;35356:96;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39954:17:::1;:27;39972:8;39954:27;;;;;;;;;;;;;;;;;;;;;;;;;39946:65;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;40052:5;40022:17;:27;40040:8;40022:27;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;40075:4;40068:11;;39847:240:::0;;;:::o;13701:95::-;13748:13;13781:7;13774:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13701:95;:::o;34148:41::-;;;;;;;;;;;;;:::o;37388:135::-;37468:4;35239:10;35226:23;;:9;;;;;;;;;;;:23;;;35218:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37501:14:::1;37485:13;:30;;;;37388:135:::0;;;:::o;17739:269::-;17832:4;17849:129;17858:12;:10;:12::i;:::-;17872:7;17881:96;17920:15;17881:96;;;;;;;;;;;;;;;;;:11;:25;17893:12;:10;:12::i;:::-;17881:25;;;;;;;;;;;;;;;:34;17907:7;17881:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;17849:8;:129::i;:::-;17996:4;17989:11;;17739:269;;;;:::o;36124:115::-;36178:13;36211;:20;;;;36204:27;;36124:115;:::o;15101:175::-;15187:4;15204:42;15214:12;:10;:12::i;:::-;15228:9;15239:6;15204:9;:42::i;:::-;15264:4;15257:11;;15101:175;;;;:::o;37056:324::-;37141:4;35239:10;35226:23;;:9;;;;;;;;;;;:23;;;35218:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37176:1:::1;37166:6;:11;;;;37158:53;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;37239:23;:21;:23::i;:::-;37230:6;:32;;;37222:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37344:6;37320:13;37334:6;37320:21;;;;;;;;;;;;;;;;;:30;;;;37368:4;37361:11;;37056:324:::0;;;;:::o;34586:34::-;;;;;;;;;;;;;:::o;39351:240::-;35239:10;35226:23;;:9;;;;;;;;;;;:23;;;35218:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39430:16:::1;;;;;;;;;;;39429:17;39421:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39517:5;39506:8;:16;39498:56;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;39575:8;39565:7;:18;;;;39351:240:::0;:::o;35049:49::-;;;;;;;;;;;;;;;;;;;;;;:::o;15339:151::-;15428:7;15455:11;:18;15467:5;15455:18;;;;;;;;;;;;;;;:27;15474:7;15455:27;;;;;;;;;;;;;;;;15448:34;;15339:151;;;;:::o;36370:125::-;36436:4;36460:17;:27;36478:8;36460:27;;;;;;;;;;;;;;;;;;;;;;;;;36453:34;;36370:125;;;:::o;36247:115::-;36301:13;36334;:20;;;;36327:27;;36247:115;:::o;31953:244::-;31230:12;:10;:12::i;:::-;31219:23;;:7;:5;:7::i;:::-;:23;;;31211:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32062:1:::1;32042:22;;:8;:22;;;;32034:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32152:8;32123:38;;32144:6;;;;;;;;;;;32123:38;;;;;;;;;;;;32181:8;32172:6;;:17;;;;;;;;;;;;;;;;;;31953:244:::0;:::o;42466:500::-;32730:10;32717:23;;:9;;;;;;;;;;;:23;;;32709:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42605:21:::1;;;;;;;;;;;42604:22;42596:59;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;42698:1;42674:26;;:12;:26;;;;42666:52;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;42763:1;42737:28;;:14;:28;;;;42729:56;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;42820:4;42796:21;;:28;;;;;;;;;;;;;;;;;;42835:54;42841:12;33943:11;42835:5;:54::i;:::-;42900:58;42906:14;34068:11;42900:5;:58::i;:::-;42466:500:::0;;:::o;38387:97::-;35239:10;35226:23;;:9;;;;;;;;;;;:23;;;35218:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38472:4:::1;38453:16;;:23;;;;;;;;;;;;;;;;;;38387:97::o:0;34006:73::-;34068:11;34006:73;:::o;6647:179::-;6705:7;6725:9;6741:1;6737;:5;6725:17;;6766:1;6761;:6;;6753:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6817:1;6810:8;;;6647:179;;;;:::o;673:106::-;726:15;761:10;754:17;;673:106;:::o;20886:346::-;21005:1;20988:19;;:5;:19;;;;20980:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21086:1;21067:21;;:7;:21;;;;21059:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21170:6;21140:11;:18;21152:5;21140:18;;;;;;;;;;;;;;;:27;21159:7;21140:27;;;;;;;;;;;;;;;:36;;;;21208:7;21192:32;;21201:5;21192:32;;;21217:6;21192:32;;;;;;;;;;;;;;;;;;20886:346;;;:::o;37531:321::-;37583:22;37630:14;;;;;;;;;;;37622:31;;;37662:4;37669;37622:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37618:227;;37771:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37618:227;37730:6;37722:15;;37715:22;;;37531:321;:::o;37860:519::-;37926:7;37950:16;;;;;;;;;;;37946:426;;;37988:12;38003:37;38038:1;38009:23;:21;:23::i;:::-;38003:34;;;;:37;;;;:::i;:::-;37988:52;;37983:378;38052:1;38042:6;:11;;;37983:378;;38106:13;38120:6;38106:21;;;;;;;;;;;;;;;;;;38088:14;:39;38084:262;;38184:5;38160:13;38174:6;38160:21;;;;;;;;;;;;;;;;;;:29;38152:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38254:13;38268:6;38254:21;;;;;;;;;;;;;;;;;;38244:7;:31;;;;38305:13;38319:6;38305:21;;;;;;;;;;;;;;;;;;38298:28;;;;;38084:262;38055:8;;;;;;37983:378;;;;37946:426;37860:519;;;;:::o;18498:539::-;18622:1;18604:20;;:6;:20;;;;18596:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18706:1;18685:23;;:9;:23;;;;18677:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18761:47;18782:6;18790:9;18801:6;18761:20;:47::i;:::-;18841:71;18863:6;18841:71;;;;;;;;;;;;;;;;;:9;:17;18851:6;18841:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;18821:9;:17;18831:6;18821:17;;;;;;;;;;;;;;;:91;;;;18946:32;18971:6;18946:9;:20;18956:9;18946:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;18923:9;:20;18933:9;18923:20;;;;;;;;;;;;;;;:55;;;;19011:9;18994:35;;19003:6;18994:35;;;19022:6;18994:35;;;;;;;;;;;;;;;;;;18498:539;;;:::o;41732:654::-;41884:4;41901:17;41921:30;41945:5;41921:19;41932:7;;41921:6;:10;;:19;;;;:::i;:::-;:23;;:30;;;;:::i;:::-;41901:50;;41962:22;41987:21;41998:9;41987:6;:10;;:21;;;;:::i;:::-;41962:46;;42025:7;42021:226;;;42074:33;42089:6;42097:9;42074:14;:33::i;:::-;42021:226;;;42186:49;42196:6;42204:19;;;;;;;;;;;42225:9;42186;:49::i;:::-;42021:226;42310:44;42320:6;42328:9;42339:14;42310:9;:44::i;:::-;42374:4;42367:11;;;;41732:654;;;;;;:::o;9474:166::-;9560:7;9593:1;9588;:6;;9596:12;9580:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9631:1;9627;:5;9620:12;;9474:166;;;;;:::o;33040:257::-;33141:1;33117:26;;:12;:26;;;;33109:84;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33241:12;33209:45;;33237:1;33209:45;;;;;;;;;;;;33277:12;33265:9;;:24;;;;;;;;;;;;;;;;;;33040:257;:::o;19319:378::-;19422:1;19403:21;;:7;:21;;;;19395:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19473:49;19502:1;19506:7;19515:6;19473:20;:49::i;:::-;19550:24;19567:6;19550:12;;:16;;:24;;;;:::i;:::-;19535:12;:39;;;;19606:30;19629:6;19606:9;:18;19616:7;19606:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;19585:9;:18;19595:7;19585:18;;;;;;;;;;;;;;;:51;;;;19673:7;19652:37;;19669:1;19652:37;;;19682:6;19652:37;;;;;;;;;;;;;;;;;;19319:378;;:::o;22891:91::-;22947:27;22953:12;:10;:12::i;:::-;22967:6;22947:5;:27::i;:::-;22891:91;:::o;7109:158::-;7167:7;7200:1;7195;:6;;7187:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7258:1;7254;:5;7247:12;;7109:158;;;;:::o;23301:295::-;23378:26;23407:84;23444:6;23407:84;;;;;;;;;;;;;;;;;:32;23417:7;23426:12;:10;:12::i;:::-;23407:9;:32::i;:::-;:36;;:84;;;;;:::i;:::-;23378:113;;23504:51;23513:7;23522:12;:10;:12::i;:::-;23536:18;23504:8;:51::i;:::-;23566:22;23572:7;23581:6;23566:5;:22::i;:::-;23301:295;;;:::o;25837:130::-;25891:5;25916:43;25920:1;25923;25916:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;25909:50;;25837:130;;;;:::o;22265:92::-;;;;:::o;7526:220::-;7584:7;7613:1;7608;:6;7604:20;;;7623:1;7616:8;;;;7604:20;7635:9;7651:1;7647;:5;7635:17;;7680:1;7675;7671;:5;;;;;;:10;7663:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7737:1;7730:8;;;7526:220;;;;;:::o;8224:153::-;8282:7;8314:1;8310;:5;8302:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8368:1;8364;:5;;;;;;8357:12;;8224:153;;;;:::o;20030:418::-;20133:1;20114:21;;:7;:21;;;;20106:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20186:49;20207:7;20224:1;20228:6;20186:20;:49::i;:::-;20269:68;20292:6;20269:68;;;;;;;;;;;;;;;;;:9;:18;20279:7;20269:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;20248:9;:18;20258:7;20248:18;;;;;;;;;;;;;;;:89;;;;20363:24;20380:6;20363:12;;:16;;:24;;;;:::i;:::-;20348:12;:39;;;;20429:1;20403:37;;20412:7;20403:37;;;20433:6;20403:37;;;;;;;;;;;;;;;;;;20030:418;;:::o;26270:184::-;26352:5;26383:1;26378:6;;:1;:6;;;;26386:12;26370:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26410:7;26424:1;26420;:5;26410:15;;26445:1;26438:8;;;26270:184;;;;;:::o
Swarm Source
ipfs://e71309f07587cb57692da021b5b560ffbfa8cbae60b944b3aa9a51d6345cdd5b
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.