ERC-20
Overview
Max Total Supply
200,000,000,000 Mverse
Holders
888
Total Transfers
-
Market
Price
$0.00 @ 0.000000 POL
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
MaticVerse
Compiler Version
v0.6.2+commit.bacdbe57
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2021-09-22 */ pragma solidity ^0.6.2; /* * @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 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) { 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; } } pragma solidity ^0.6.2; 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 () public { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } pragma solidity ^0.6.2; library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } pragma solidity ^0.6.2; /** * @title SafeMathInt * @dev Math operations for int256 with overflow safety checks. */ library SafeMathInt { int256 private constant MIN_INT256 = int256(1) << 255; int256 private constant MAX_INT256 = ~(int256(1) << 255); /** * @dev Multiplies two int256 variables and fails on overflow. */ function mul(int256 a, int256 b) internal pure returns (int256) { int256 c = a * b; // Detect overflow when multiplying MIN_INT256 with -1 require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256)); require((b == 0) || (c / b == a)); return c; } /** * @dev Division of two int256 variables and fails on overflow. */ function div(int256 a, int256 b) internal pure returns (int256) { // Prevent overflow when dividing MIN_INT256 by -1 require(b != -1 || a != MIN_INT256); // Solidity already throws when dividing by 0. return a / b; } /** * @dev Subtracts two int256 variables and fails on overflow. */ function sub(int256 a, int256 b) internal pure returns (int256) { int256 c = a - b; require((b >= 0 && c <= a) || (b < 0 && c > a)); return c; } /** * @dev Adds two int256 variables and fails on overflow. */ function add(int256 a, int256 b) internal pure returns (int256) { int256 c = a + b; require((b >= 0 && c >= a) || (b < 0 && c < a)); return c; } /** * @dev Converts to absolute value, and fails on overflow. */ function abs(int256 a) internal pure returns (int256) { require(a != MIN_INT256); return a < 0 ? -a : a; } function toUint256Safe(int256 a) internal pure returns (uint256) { require(a >= 0); return uint256(a); } } pragma solidity ^0.6.2; /** * @title SafeMathUint * @dev Math operations with safety checks that revert on error */ library SafeMathUint { function toInt256Safe(uint256 a) internal pure returns (int256) { int256 b = int256(a); require(b >= 0); return b; } } pragma solidity ^0.6.2; library IterableMapping { // Iterable mapping from address to uint; struct Map { address[] keys; mapping(address => uint) values; mapping(address => uint) indexOf; mapping(address => bool) inserted; } function get(Map storage map, address key) public view returns (uint) { return map.values[key]; } function getIndexOfKey(Map storage map, address key) public view returns (int) { if(!map.inserted[key]) { return -1; } return int(map.indexOf[key]); } function getKeyAtIndex(Map storage map, uint index) public view returns (address) { return map.keys[index]; } function size(Map storage map) public view returns (uint) { return map.keys.length; } function set(Map storage map, address key, uint val) public { if (map.inserted[key]) { map.values[key] = val; } else { map.inserted[key] = true; map.values[key] = val; map.indexOf[key] = map.keys.length; map.keys.push(key); } } function remove(Map storage map, address key) public { if (!map.inserted[key]) { return; } delete map.inserted[key]; delete map.values[key]; uint index = map.indexOf[key]; uint lastIndex = map.keys.length - 1; address lastKey = map.keys[lastIndex]; map.indexOf[lastKey] = index; delete map.indexOf[key]; map.keys[index] = lastKey; map.keys.pop(); } } pragma solidity ^0.6.2; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } pragma solidity ^0.6.2; interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } pragma solidity ^0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } pragma solidity ^0.6.2; /** * @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); } pragma solidity ^0.6.2; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } pragma solidity ^0.6.2; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { 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; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two 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_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override 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 this function is * overridden; * * 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 override returns (uint8) { return 18; } /** * @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: * * - `account` 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 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 {} } pragma solidity ^0.6.2; /// @title Dividend-Paying Token Interface /// @author Roger Wu (https://github.com/roger-wu) /// @dev An interface for a dividend-paying token contract. interface DividendPayingTokenInterface { /// @notice View the amount of dividend in wei that an address can withdraw. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` can withdraw. function dividendOf(address _owner) external view returns(uint256); /// @notice Distributes ether to token holders as dividends. /// @dev SHOULD distribute the paid ether to token holders as dividends. /// SHOULD NOT directly transfer ether to token holders in this function. /// MUST emit a `DividendsDistributed` event when the amount of distributed ether is greater than 0. function distributeDividends() external payable; /// @notice Withdraws the ether distributed to the sender. /// @dev SHOULD transfer `dividendOf(msg.sender)` wei to `msg.sender`, and `dividendOf(msg.sender)` SHOULD be 0 after the transfer. /// MUST emit a `DividendWithdrawn` event if the amount of ether transferred is greater than 0. function withdrawDividend() external; /// @dev This event MUST emit when ether is distributed to token holders. /// @param from The address which sends ether to this contract. /// @param weiAmount The amount of distributed ether in wei. event DividendsDistributed( address indexed from, uint256 weiAmount ); /// @dev This event MUST emit when an address withdraws their dividend. /// @param to The address which withdraws ether from this contract. /// @param weiAmount The amount of withdrawn ether in wei. event DividendWithdrawn( address indexed to, uint256 weiAmount ); } pragma solidity ^0.6.2; /// @title Dividend-Paying Token Optional Interface /// @author Roger Wu (https://github.com/roger-wu) /// @dev OPTIONAL functions for a dividend-paying token contract. interface DividendPayingTokenOptionalInterface { /// @notice View the amount of dividend in wei that an address can withdraw. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` can withdraw. function withdrawableDividendOf(address _owner) external view returns(uint256); /// @notice View the amount of dividend in wei that an address has withdrawn. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` has withdrawn. function withdrawnDividendOf(address _owner) external view returns(uint256); /// @notice View the amount of dividend in wei that an address has earned in total. /// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner) /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` has earned in total. function accumulativeDividendOf(address _owner) external view returns(uint256); } pragma solidity ^0.6.2; /// @title Dividend-Paying Token /// @author Roger Wu (https://github.com/roger-wu) /// @dev A mintable ERC20 token that allows anyone to pay and distribute ether /// to token holders as dividends and allows token holders to withdraw their dividends. /// Reference: the source code of PoWH3D: https://etherscan.io/address/0xB3775fB83F7D12A36E0475aBdD1FCA35c091efBe#code contract DividendPayingToken is ERC20, DividendPayingTokenInterface, DividendPayingTokenOptionalInterface { using SafeMath for uint256; using SafeMathUint for uint256; using SafeMathInt for int256; // With `magnitude`, we can properly distribute dividends even if the amount of received ether is small. // For more discussion about choosing the value of `magnitude`, // see https://github.com/ethereum/EIPs/issues/1726#issuecomment-472352728 uint256 constant internal magnitude = 2**128; uint256 internal magnifiedDividendPerShare; // About dividendCorrection: // If the token balance of a `_user` is never changed, the dividend of `_user` can be computed with: // `dividendOf(_user) = dividendPerShare * balanceOf(_user)`. // When `balanceOf(_user)` is changed (via minting/burning/transferring tokens), // `dividendOf(_user)` should not be changed, // but the computed value of `dividendPerShare * balanceOf(_user)` is changed. // To keep the `dividendOf(_user)` unchanged, we add a correction term: // `dividendOf(_user) = dividendPerShare * balanceOf(_user) + dividendCorrectionOf(_user)`, // where `dividendCorrectionOf(_user)` is updated whenever `balanceOf(_user)` is changed: // `dividendCorrectionOf(_user) = dividendPerShare * (old balanceOf(_user)) - (new balanceOf(_user))`. // So now `dividendOf(_user)` returns the same value before and after `balanceOf(_user)` is changed. mapping(address => int256) internal magnifiedDividendCorrections; mapping(address => uint256) internal withdrawnDividends; uint256 public totalDividendsDistributed; constructor(string memory _name, string memory _symbol) public ERC20(_name, _symbol) { } /// @dev Distributes dividends whenever ether is paid to this contract. receive() external payable { distributeDividends(); } /// @notice Distributes ether to token holders as dividends. /// @dev It reverts if the total supply of tokens is 0. /// It emits the `DividendsDistributed` event if the amount of received ether is greater than 0. /// About undistributed ether: /// In each distribution, there is a small amount of ether not distributed, /// the magnified amount of which is /// `(msg.value * magnitude) % totalSupply()`. /// With a well-chosen `magnitude`, the amount of undistributed ether /// (de-magnified) in a distribution can be less than 1 wei. /// We can actually keep track of the undistributed ether in a distribution /// and try to distribute it in the next distribution, /// but keeping track of such data on-chain costs much more than /// the saved ether, so we don't do that. function distributeDividends() public override payable { require(totalSupply() > 0); if (msg.value > 0) { magnifiedDividendPerShare = magnifiedDividendPerShare.add( (msg.value).mul(magnitude) / totalSupply() ); emit DividendsDistributed(msg.sender, msg.value); totalDividendsDistributed = totalDividendsDistributed.add(msg.value); } } /// @notice Withdraws the ether distributed to the sender. /// @dev It emits a `DividendWithdrawn` event if the amount of withdrawn ether is greater than 0. function withdrawDividend() public virtual override { _withdrawDividendOfUser(msg.sender); } /// @notice Withdraws the ether distributed to the sender. /// @dev It emits a `DividendWithdrawn` event if the amount of withdrawn ether is greater than 0. function _withdrawDividendOfUser(address payable user) internal returns (uint256) { uint256 _withdrawableDividend = withdrawableDividendOf(user); if (_withdrawableDividend > 0) { withdrawnDividends[user] = withdrawnDividends[user].add(_withdrawableDividend); emit DividendWithdrawn(user, _withdrawableDividend); (bool success,) = user.call{value: _withdrawableDividend, gas: 3000}(""); if(!success) { withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend); return 0; } return _withdrawableDividend; } return 0; } /// @notice View the amount of dividend in wei that an address can withdraw. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` can withdraw. function dividendOf(address _owner) public view override returns(uint256) { return withdrawableDividendOf(_owner); } /// @notice View the amount of dividend in wei that an address can withdraw. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` can withdraw. function withdrawableDividendOf(address _owner) public view override returns(uint256) { return accumulativeDividendOf(_owner).sub(withdrawnDividends[_owner]); } /// @notice View the amount of dividend in wei that an address has withdrawn. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` has withdrawn. function withdrawnDividendOf(address _owner) public view override returns(uint256) { return withdrawnDividends[_owner]; } /// @notice View the amount of dividend in wei that an address has earned in total. /// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner) /// = (magnifiedDividendPerShare * balanceOf(_owner) + magnifiedDividendCorrections[_owner]) / magnitude /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` has earned in total. function accumulativeDividendOf(address _owner) public view override returns(uint256) { return magnifiedDividendPerShare.mul(balanceOf(_owner)).toInt256Safe() .add(magnifiedDividendCorrections[_owner]).toUint256Safe() / magnitude; } /// @dev Internal function that transfer tokens from one address to another. /// Update magnifiedDividendCorrections to keep dividends unchanged. /// @param from The address to transfer from. /// @param to The address to transfer to. /// @param value The amount to be transferred. function _transfer(address from, address to, uint256 value) internal virtual override { require(false); int256 _magCorrection = magnifiedDividendPerShare.mul(value).toInt256Safe(); magnifiedDividendCorrections[from] = magnifiedDividendCorrections[from].add(_magCorrection); magnifiedDividendCorrections[to] = magnifiedDividendCorrections[to].sub(_magCorrection); } /// @dev Internal function that mints tokens to an account. /// Update magnifiedDividendCorrections to keep dividends unchanged. /// @param account The account that will receive the created tokens. /// @param value The amount that will be created. function _mint(address account, uint256 value) internal override { super._mint(account, value); magnifiedDividendCorrections[account] = magnifiedDividendCorrections[account] .sub( (magnifiedDividendPerShare.mul(value)).toInt256Safe() ); } /// @dev Internal function that burns an amount of the token of a given account. /// Update magnifiedDividendCorrections to keep dividends unchanged. /// @param account The account whose tokens will be burnt. /// @param value The amount that will be burnt. function _burn(address account, uint256 value) internal override { super._burn(account, value); magnifiedDividendCorrections[account] = magnifiedDividendCorrections[account] .add( (magnifiedDividendPerShare.mul(value)).toInt256Safe() ); } function _setBalance(address account, uint256 newBalance) internal { uint256 currentBalance = balanceOf(account); if(newBalance > currentBalance) { uint256 mintAmount = newBalance.sub(currentBalance); _mint(account, mintAmount); } else if(newBalance < currentBalance) { uint256 burnAmount = currentBalance.sub(newBalance); _burn(account, burnAmount); } } } pragma solidity ^0.6.2; contract MaticVerse is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public uniswapV2Router; address public uniswapV2Pair; bool private swapping; MaticVerseDividendTracker public dividendTracker; bool public taxPause = false; bool public BuyTax = true; bool public SellTax = true; uint256 public swapTokensAtAmount = 2000000 * (10**18); uint256 public _priceImpact = 2; uint256 public Sell_MATICRewardsFee = 5; uint256 public Sell_liquidityFee = 3; uint256 public Sell_marketingFee = 7; uint256 public Buy_MATICRewardsFee = 4; uint256 public Buy_liquidityFee = 2; uint256 public Buy_marketingFee = 4; uint256 public Sell_totalFees = Sell_MATICRewardsFee.add(Sell_liquidityFee).add(Sell_marketingFee); uint256 public Buy_totalFees = Buy_MATICRewardsFee.add(Buy_liquidityFee).add(Buy_marketingFee); bool public swapEnabled = false; address payable _marketingWallet; address payable _devWallet; // use by default 300,000 gas to process auto-claiming dividends uint256 public gasForProcessing = 500000; mapping (address => bool) private _isExcludedFromFees; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping (address => bool) public automatedMarketMakerPairs; event UpdateDividendTracker(address indexed newAddress, address indexed oldAddress); event UpdateUniswapV2Router(address indexed newAddress, address indexed oldAddress); event ExcludeFromFees(address indexed account, bool isExcluded); event ExcludeMultipleAccountsFromFees(address[] accounts, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event GasForProcessingUpdated(uint256 indexed newValue, uint256 indexed oldValue); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity ); event SwapETHForTokens( uint256 amountIn, address[] path ); event SendDividends( uint256 tokensSwapped, uint256 amount ); event ProcessedDividendTracker( uint256 iterations, uint256 claims, uint256 lastProcessedIndex, bool indexed automatic, uint256 gas, address indexed processor ); modifier lockTheSwap { swapping = true; _; swapping = false; } constructor() public ERC20("MaticVerse", "Mverse") { _marketingWallet = 0xa7DB599afFE56F4A8eb65Ec397a51769D1915576; _devWallet = 0x0e07F17bedf97Df7bACC16ccE456b032d13fB691; dividendTracker = new MaticVerseDividendTracker(); IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0xa5E0829CaCEd8fFDD4De3c43696c57F7D7A678ff); // Create a uniswap pair for this new token address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = _uniswapV2Pair; _setAutomatedMarketMakerPair(_uniswapV2Pair, true); // exclude from receiving dividends dividendTracker.excludeFromDividends(address(dividendTracker)); dividendTracker.excludeFromDividends(address(this)); dividendTracker.excludeFromDividends(owner()); dividendTracker.excludeFromDividends(address(_uniswapV2Router)); // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(_marketingWallet, true); excludeFromFees(address(this), true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(owner(), 200000000000 * (10**18)); } receive() external payable { } function updateDividendTracker(address newAddress) public onlyOwner { require(newAddress != address(dividendTracker), "MATICVERSE: The dividend tracker already has that address"); MaticVerseDividendTracker newDividendTracker = MaticVerseDividendTracker(payable(newAddress)); require(newDividendTracker.owner() == address(this), "MATICVERSE: The new dividend tracker must be owned by the MaticVerse token contract"); newDividendTracker.excludeFromDividends(address(newDividendTracker)); newDividendTracker.excludeFromDividends(address(this)); newDividendTracker.excludeFromDividends(owner()); newDividendTracker.excludeFromDividends(address(uniswapV2Router)); emit UpdateDividendTracker(newAddress, address(dividendTracker)); dividendTracker = newDividendTracker; } function updateUniswapV2Router(address newAddress) public onlyOwner { require(newAddress != address(uniswapV2Router), "MaticVerse: The router already has that address"); emit UpdateUniswapV2Router(newAddress, address(uniswapV2Router)); uniswapV2Router = IUniswapV2Router02(newAddress); } function excludeFromFees(address account, bool excluded) public onlyOwner { require(_isExcludedFromFees[account] != excluded, "MaticVerse: Account is already the value of 'excluded'"); _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function excludeMultipleAccountsFromFees(address[] memory accounts, bool excluded) public onlyOwner { for(uint256 i = 0; i < accounts.length; i++) { _isExcludedFromFees[accounts[i]] = excluded; } emit ExcludeMultipleAccountsFromFees(accounts, excluded); } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require(pair != uniswapV2Pair, "MaticVerse: The PancakeSwap pair cannot be removed from automatedMarketMakerPairs"); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { require(automatedMarketMakerPairs[pair] != value, "MaticVerse: Automated market maker pair is already set to that value"); automatedMarketMakerPairs[pair] = value; if(value) { dividendTracker.excludeFromDividends(pair); } emit SetAutomatedMarketMakerPair(pair, value); } function updateGasForProcessing(uint256 newValue) public onlyOwner { require(newValue >= 200000 && newValue <= 1000000, "MaticVerse: gasForProcessing must be between 200,000 and 500,000"); require(newValue != gasForProcessing, "MaticVerse: Cannot update gasForProcessing to same value"); emit GasForProcessingUpdated(newValue, gasForProcessing); gasForProcessing = newValue; } function updateClaimWait(uint256 claimWait) external onlyOwner { dividendTracker.updateClaimWait(claimWait); } function getClaimWait() external view returns(uint256) { return dividendTracker.claimWait(); } function getTotalDividendsDistributed() external view returns (uint256) { return dividendTracker.totalDividendsDistributed(); } function isExcludedFromFees(address account) public view returns(bool) { return _isExcludedFromFees[account]; } function withdrawableDividendOf(address account) public view returns(uint256) { return dividendTracker.withdrawableDividendOf(account); } function dividendTokenBalanceOf(address account) public view returns (uint256) { return dividendTracker.balanceOf(account); } function getAccountDividendsInfo(address account) external view returns ( address, int256, int256, uint256, uint256, uint256, uint256, uint256) { return dividendTracker.getAccount(account); } function getAccountDividendsInfoAtIndex(uint256 index) external view returns ( address, int256, int256, uint256, uint256, uint256, uint256, uint256) { return dividendTracker.getAccountAtIndex(index); } function processDividendTracker(uint256 gas) external { (uint256 iterations, uint256 claims, uint256 lastProcessedIndex) = dividendTracker.process(gas); emit ProcessedDividendTracker(iterations, claims, lastProcessedIndex, false, gas, tx.origin); } function claim() external { dividendTracker.processAccount(msg.sender, false); } function getLastProcessedIndex() external view returns(uint256) { return dividendTracker.getLastProcessedIndex(); } function getNumberOfDividendTokenHolders() external view returns(uint256) { return dividendTracker.getNumberOfTokenHolders(); } function setMarketingWallet(address newWallet) external onlyOwner{ _marketingWallet = payable(newWallet); } function setDevWallet(address newWallet) external onlyOwner{ _devWallet = payable(newWallet); } function TurnOn_PauseTax() external onlyOwner{ taxPause = true; } function TurnOff_PauseTax() external onlyOwner{ taxPause = false; } function setSell_MATICRewardsFee(uint256 value) external onlyOwner{ Sell_MATICRewardsFee = value; Sell_totalFees = Sell_MATICRewardsFee.add(Sell_liquidityFee).add(Sell_marketingFee); } function setSell_LiquidityFee(uint256 value) external onlyOwner{ Sell_liquidityFee = value; Sell_totalFees = Sell_MATICRewardsFee.add(Sell_liquidityFee).add(Sell_marketingFee); } function setSell_MarketingFee(uint256 value) external onlyOwner{ Sell_marketingFee = value; Sell_totalFees = Sell_MATICRewardsFee.add(Sell_liquidityFee).add(Sell_marketingFee); } function setBuy_MATICRewardsFee(uint256 value) external onlyOwner{ Buy_MATICRewardsFee = value; Buy_totalFees = Buy_MATICRewardsFee.add(Buy_liquidityFee).add(Buy_marketingFee); } function setBuy_LiquidityFee(uint256 value) external onlyOwner{ Buy_liquidityFee = value; Buy_totalFees = Buy_MATICRewardsFee.add(Buy_liquidityFee).add(Buy_marketingFee); } function setBuy_MarketingFee(uint256 value) external onlyOwner{ Buy_marketingFee = value; Buy_totalFees = Buy_MATICRewardsFee.add(Buy_liquidityFee).add(Buy_marketingFee); } function UpdatePriceImpact(uint256 value) public onlyOwner{ require(_priceImpact <= 100, "max price impact must be less than or equal to 100"); require(_priceImpact > 0, "cant prevent sells, choose value greater than 0"); _priceImpact = value; } function TurnOn_Trading() external onlyOwner{ swapEnabled = true; } function TurnOff_Trading() external onlyOwner{ swapEnabled = false; } function TurnOn_BuyTax() external onlyOwner{ BuyTax = true; } function TurnOff_BuyTax() external onlyOwner{ BuyTax = false; } function TurnOn_SellTax() external onlyOwner{ SellTax = true; } function TurnOff_SellTax() external onlyOwner{ SellTax = false; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if(from != owner()){ require (swapEnabled); } if(amount == 0) { super._transfer(from, to, 0); return; } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if( canSwap && !swapping && !automatedMarketMakerPairs[from] && from != owner() && to != owner() && from == uniswapV2Pair && to != address(uniswapV2Router) ) { swapping = true; uint256 marketingTokens = contractTokenBalance.mul(Buy_marketingFee).div(Buy_totalFees); swapAndSendToMarketing(marketingTokens); uint256 swapTokens = contractTokenBalance.mul(Buy_liquidityFee).div(Buy_totalFees); swapAndLiquify(swapTokens); uint256 sellTokens = balanceOf(address(this)); swapAndSendDividends(sellTokens); swapping = false; } if( canSwap && !swapping && !automatedMarketMakerPairs[from] && from != owner() && to != owner() && from != uniswapV2Pair ) { require(amount <= balanceOf(uniswapV2Pair).mul(_priceImpact).div(100)); swapping = true; uint256 marketingTokens = contractTokenBalance.mul(Sell_marketingFee).div(Sell_totalFees); swapAndSendToMarketing(marketingTokens); uint256 swapTokens = contractTokenBalance.mul(Sell_liquidityFee).div(Sell_totalFees); swapAndLiquify(swapTokens); uint256 sellTokens = balanceOf(address(this)); swapAndSendDividends(sellTokens); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } if(taxPause == true){ takeFee = false; } if(takeFee) { if(from == uniswapV2Pair && to != address(uniswapV2Router)){ if(BuyTax){ uint256 fees = amount.mul(Buy_totalFees).div(100); if(automatedMarketMakerPairs[to]){ fees += amount.mul(1).div(100); } amount = amount.sub(fees); super._transfer(from, address(this), fees); } } else{ if(SellTax){ uint256 fees = amount.mul(Sell_totalFees).div(100); if(automatedMarketMakerPairs[to]){ fees += amount.mul(1).div(100); } amount = amount.sub(fees); super._transfer(from, address(this), fees); }} } super._transfer(from, to, amount); try dividendTracker.setBalance(payable(from), balanceOf(from)) {} catch {} try dividendTracker.setBalance(payable(to), balanceOf(to)) {} catch {} if(!swapping) { uint256 gas = gasForProcessing; try dividendTracker.process(gas) returns (uint256 iterations, uint256 claims, uint256 lastProcessedIndex) { emit ProcessedDividendTracker(iterations, claims, lastProcessedIndex, true, gas, tx.origin); } catch { } } } function swapAndSendToMarketing(uint256 tokens) private lockTheSwap { uint256 initialBalance = address(this).balance; swapTokensForEth(tokens); // how much ETH did we just swap into? uint256 newBalance = address(this).balance.sub(initialBalance); uint256 feeSplit = newBalance.div(3); _marketingWallet.transfer(feeSplit); _marketingWallet.transfer(feeSplit); _devWallet.transfer(feeSplit); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable owner(), block.timestamp ); } function swapAndLiquify(uint256 tokens) private lockTheSwap{ // split the contract balance into halves uint256 half = tokens.div(2); uint256 otherHalf = tokens.sub(half); uint256 initialBalance = address(this).balance; // swap tokens for ETH swapTokensForEth(half); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered // how much ETH did we just swap into? uint256 newBalance = address(this).balance.sub(initialBalance); // add liquidity to uniswap addLiquidity(otherHalf, newBalance); emit SwapAndLiquify(half, newBalance, otherHalf); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function swapAndSendDividends(uint256 tokens) private lockTheSwap{ swapTokensForEth(tokens); uint256 dividends = address(this).balance; (bool success,) = address(dividendTracker).call{value: dividends}(""); if(success) { emit SendDividends(tokens, dividends); } } } contract MaticVerseDividendTracker is DividendPayingToken, Ownable { using SafeMath for uint256; using SafeMathInt for int256; using IterableMapping for IterableMapping.Map; IterableMapping.Map private tokenHoldersMap; uint256 public lastProcessedIndex; mapping (address => bool) public excludedFromDividends; mapping (address => uint256) public lastClaimTimes; uint256 public claimWait; uint256 public minimumTokenBalanceForDividends; event ExcludeFromDividends(address indexed account); event ClaimWaitUpdated(uint256 indexed newValue, uint256 indexed oldValue); event Claim(address indexed account, uint256 amount, bool indexed automatic); constructor() public DividendPayingToken("MATICVERSE_Dividend_Tracker", "MVERSE_Dividend_Tracker") { claimWait = 3600; minimumTokenBalanceForDividends = 100000 * (10**18); //must hold 100000 tokens } function _transfer(address, address, uint256) internal override { require(false, "MaticVerse_Dividend_Tracker: No transfers allowed"); } function withdrawDividend() public override { require(false, "MaticVerse_Dividend_Tracker: withdrawDividend disabled. Use the 'claim' function on the main MaticVerse contract."); } function excludeFromDividends(address account) external onlyOwner { require(!excludedFromDividends[account]); excludedFromDividends[account] = true; _setBalance(account, 0); tokenHoldersMap.remove(account); emit ExcludeFromDividends(account); } function updateClaimWait(uint256 newClaimWait) external onlyOwner { require(newClaimWait >= 3600 && newClaimWait <= 86400, "MaticVerse_Dividend_Tracker: claimWait must be updated to between 1 and 24 hours"); require(newClaimWait != claimWait, "MaticVerse_Dividend_Tracker: Cannot update claimWait to same value"); emit ClaimWaitUpdated(newClaimWait, claimWait); claimWait = newClaimWait; } function getLastProcessedIndex() external view returns(uint256) { return lastProcessedIndex; } function getNumberOfTokenHolders() external view returns(uint256) { return tokenHoldersMap.keys.length; } function getAccount(address _account) public view returns ( address account, int256 index, int256 iterationsUntilProcessed, uint256 withdrawableDividends, uint256 totalDividends, uint256 lastClaimTime, uint256 nextClaimTime, uint256 secondsUntilAutoClaimAvailable) { account = _account; index = tokenHoldersMap.getIndexOfKey(account); iterationsUntilProcessed = -1; if(index >= 0) { if(uint256(index) > lastProcessedIndex) { iterationsUntilProcessed = index.sub(int256(lastProcessedIndex)); } else { uint256 processesUntilEndOfArray = tokenHoldersMap.keys.length > lastProcessedIndex ? tokenHoldersMap.keys.length.sub(lastProcessedIndex) : 0; iterationsUntilProcessed = index.add(int256(processesUntilEndOfArray)); } } withdrawableDividends = withdrawableDividendOf(account); totalDividends = accumulativeDividendOf(account); lastClaimTime = lastClaimTimes[account]; nextClaimTime = lastClaimTime > 0 ? lastClaimTime.add(claimWait) : 0; secondsUntilAutoClaimAvailable = nextClaimTime > block.timestamp ? nextClaimTime.sub(block.timestamp) : 0; } function getAccountAtIndex(uint256 index) public view returns ( address, int256, int256, uint256, uint256, uint256, uint256, uint256) { if(index >= tokenHoldersMap.size()) { return (0x0000000000000000000000000000000000000000, -1, -1, 0, 0, 0, 0, 0); } address account = tokenHoldersMap.getKeyAtIndex(index); return getAccount(account); } function canAutoClaim(uint256 lastClaimTime) private view returns (bool) { if(lastClaimTime > block.timestamp) { return false; } return block.timestamp.sub(lastClaimTime) >= claimWait; } function setBalance(address payable account, uint256 newBalance) external onlyOwner { if(excludedFromDividends[account]) { return; } if(newBalance >= minimumTokenBalanceForDividends) { _setBalance(account, newBalance); tokenHoldersMap.set(account, newBalance); } else { _setBalance(account, 0); tokenHoldersMap.remove(account); } processAccount(account, true); } function process(uint256 gas) public returns (uint256, uint256, uint256) { uint256 numberOfTokenHolders = tokenHoldersMap.keys.length; if(numberOfTokenHolders == 0) { return (0, 0, lastProcessedIndex); } uint256 _lastProcessedIndex = lastProcessedIndex; uint256 gasUsed = 0; uint256 gasLeft = gasleft(); uint256 iterations = 0; uint256 claims = 0; while(gasUsed < gas && iterations < numberOfTokenHolders) { _lastProcessedIndex++; if(_lastProcessedIndex >= tokenHoldersMap.keys.length) { _lastProcessedIndex = 0; } address account = tokenHoldersMap.keys[_lastProcessedIndex]; if(canAutoClaim(lastClaimTimes[account])) { if(processAccount(payable(account), true)) { claims++; } } iterations++; uint256 newGasLeft = gasleft(); if(gasLeft > newGasLeft) { gasUsed = gasUsed.add(gasLeft.sub(newGasLeft)); } gasLeft = newGasLeft; } lastProcessedIndex = _lastProcessedIndex; return (iterations, claims, lastProcessedIndex); } function processAccount(address payable account, bool automatic) public onlyOwner returns (bool) { uint256 amount = _withdrawDividendOfUser(account); if(amount > 0) { lastClaimTimes[account] = block.timestamp; emit Claim(account, amount, automatic); return true; } return false; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"accounts","type":"address[]"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeMultipleAccountsFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"GasForProcessingUpdated","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":"uint256","name":"iterations","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"claims","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"lastProcessedIndex","type":"uint256"},{"indexed":true,"internalType":"bool","name":"automatic","type":"bool"},{"indexed":false,"internalType":"uint256","name":"gas","type":"uint256"},{"indexed":true,"internalType":"address","name":"processor","type":"address"}],"name":"ProcessedDividendTracker","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SendDividends","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountIn","type":"uint256"},{"indexed":false,"internalType":"address[]","name":"path","type":"address[]"}],"name":"SwapETHForTokens","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateDividendTracker","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[],"name":"BuyTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Buy_MATICRewardsFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Buy_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Buy_marketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Buy_totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SellTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Sell_MATICRewardsFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Sell_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Sell_marketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Sell_totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TurnOff_BuyTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"TurnOff_PauseTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"TurnOff_SellTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"TurnOff_Trading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"TurnOn_BuyTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"TurnOn_PauseTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"TurnOn_SellTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"TurnOn_Trading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"UpdatePriceImpact","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_priceImpact","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","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":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"dividendTokenBalanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dividendTracker","outputs":[{"internalType":"contract MaticVerseDividendTracker","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeMultipleAccountsFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"gasForProcessing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getAccountDividendsInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getAccountDividendsInfoAtIndex","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getClaimWait","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLastProcessedIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNumberOfDividendTokenHolders","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalDividendsDistributed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"gas","type":"uint256"}],"name":"processDividendTracker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setBuy_LiquidityFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setBuy_MATICRewardsFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setBuy_MarketingFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setSell_LiquidityFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setSell_MATICRewardsFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setSell_MarketingFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxPause","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"claimWait","type":"uint256"}],"name":"updateClaimWait","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateDividendTracker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"updateGasForProcessing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateUniswapV2Router","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"withdrawableDividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526008805460ff60b01b1961ffff60a01b19909116600160a81b1716600160b01b1790556a01a784379d99db420000006009556002600a8190556005600b8190556003600c8190556007600d8190556004600e819055600f94909455601093909355620000999291620000859162002a0e62000667602090811b91909117901c565b6200066760201b62002a0e1790919060201c565b601155620000c160105462000085600f54600e546200066760201b62002a0e1790919060201c565b6012556013805460ff191690556207a120601555348015620000e257600080fd5b50604080518082018252600a8152694d61746963566572736560b01b6020808301918252835180850190945260068452654d766572736560d01b908401528151919291620001339160039162000a63565b5080516200014990600490602084019062000a63565b50505060006200015e620006c960201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506013805474a7db599affe56f4a8eb65ec397a51769d191557600610100600160a81b0319909116179055601480546001600160a01b031916730e07f17bedf97df7bacc16cce456b032d13fb6911790556040516200020a9062000ae8565b604051809103906000f08015801562000227573d6000803e3d6000fd5b50600860006101000a8154816001600160a01b0302191690836001600160a01b03160217905550600073a5e0829caced8ffdd4de3c43696c57f7d7a678ff90506000816001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620002a357600080fd5b505afa158015620002b8573d6000803e3d6000fd5b505050506040513d6020811015620002cf57600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929187169163ad5c464891600480820192602092909190829003018186803b1580156200032057600080fd5b505afa15801562000335573d6000803e3d6000fd5b505050506040513d60208110156200034c57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156200039f57600080fd5b505af1158015620003b4573d6000803e3d6000fd5b505050506040513d6020811015620003cb57600080fd5b5051600680546001600160a01b038086166001600160a01b03199283161790925560078054928416929091169190911790559050620004158160016001600160e01b03620006ce16565b6008546040805163031e79db60e41b81526001600160a01b0390921660048301819052905190916331e79db091602480830192600092919082900301818387803b1580156200046357600080fd5b505af115801562000478573d6000803e3d6000fd5b50506008546040805163031e79db60e41b815230600482015290516001600160a01b0390921693506331e79db0925060248082019260009290919082900301818387803b158015620004c957600080fd5b505af1158015620004de573d6000803e3d6000fd5b50506008546001600160a01b031691506331e79db09050620005086001600160e01b036200080116565b6040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b03168152602001915050600060405180830381600087803b1580156200055157600080fd5b505af115801562000566573d6000803e3d6000fd5b50506008546040805163031e79db60e41b81526001600160a01b03878116600483015291519190921693506331e79db09250602480830192600092919082900301818387803b158015620005b957600080fd5b505af1158015620005ce573d6000803e3d6000fd5b50505050620005f7620005e66200080160201b60201c565b60016001600160e01b036200081016565b601354620006159061010090046001600160a01b0316600162000810565b6200062b3060016001600160e01b036200081016565b6200065f620006426001600160e01b036200080116565b6c02863c1f5cdae42f95400000006001600160e01b036200094616565b505062000b13565b600082820183811015620006c2576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b335b90565b6001600160a01b03821660009081526017602052604090205460ff16151581151514156200072e5760405162461bcd60e51b8152600401808060200182810382526044815260200180620070126044913960600191505060405180910390fd5b6001600160a01b0382166000908152601760205260409020805460ff19168215801591909117909155620007c5576008546040805163031e79db60e41b81526001600160a01b038581166004830152915191909216916331e79db091602480830192600092919082900301818387803b158015620007ab57600080fd5b505af1158015620007c0573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6005546001600160a01b031690565b620008236001600160e01b03620006c916565b6005546001600160a01b0390811691161462000886576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b03821660009081526016602052604090205460ff1615158115151415620008e65760405162461bcd60e51b815260040180806020018281038252603681526020018062006fdc6036913960400191505060405180910390fd5b6001600160a01b038216600081815260166020908152604091829020805460ff1916851515908117909155825190815291517f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79281900390910190a25050565b6001600160a01b038216620009a2576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b620009b9600083836001600160e01b0362000a5e16565b620009d5816002546200066760201b62002a0e1790919060201c565b6002556001600160a01b0382166000908152602081815260409091205462000a0891839062002a0e62000667821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1062000aa657805160ff191683800117855562000ad6565b8280016001018555821562000ad6579182015b8281111562000ad657825182559160200191906001019062000ab9565b5062000ae492915062000af6565b5090565b6124708062004b6c83390190565b620006cb91905b8082111562000ae4576000815560010162000afd565b6140498062000b236000396000f3fe6080604052600436106103f35760003560e01c8063715018a611610208578063ad56c13c11610118578063d52f0d78116100ab578063e98030c71161007a578063e98030c714610dfa578063ea7c5fc014610e24578063f27fd25414610e39578063f2fde38b14610e63578063fd8f4cac14610e96576103fa565b8063d52f0d7814610d80578063dd62ed3e14610d95578063e2f4560514610dd0578063e7841ec014610de5576103fa565b8063c0246668116100e7578063c024666814610c69578063c16a841d14610ca4578063c313ab2114610cb9578063c492f04614610cce576103fa565b8063ad56c13c14610b8e578063b62496f514610c0c578063bd64ab7914610c3f578063bfa31ff914610c54576103fa565b80639a7a23d61161019b578063a457c2d71161016a578063a457c2d714610aaa578063a8b9d24014610ae3578063a9059cbb14610b16578063a9b8cfff14610b4f578063a9f0ef6514610b79576103fa565b80639a7a23d614610a1b5780639c1b8af514610a56578063a26579ad14610a6b578063a39be80014610a80576103fa565b806388bdd9be116101d757806388bdd9be146109a95780638a6aa9db146109dc5780638da5cb5b146109f157806395d89b4114610a06576103fa565b8063715018a61461094057806382a10e891461095557806383fd03671461096a578063871c128d1461097f576103fa565b806349bd5a5e1161030357806364b0f653116102965780636a294968116102655780636a294968146108a45780636ddd1713146108b95780636e788c0d146108ce578063700bb191146108e357806370a082311461090d576103fa565b806364b0f6531461081457806365b8dbc01461082957806367afb53d1461085c5780636843cd8414610871576103fa565b80634e8ed777116102d25780634e8ed7771461076f5780634fbee193146107995780634fd60282146107cc5780635d098b38146107e1576103fa565b806349bd5a5e146106f15780634a6892cb146107065780634ad7bcbd146107305780634e71d92d1461075a576103fa565b806323b872dd1161038657806330bb4cff1161035557806330bb4cff14610639578063313ce5671461064e57806339509351146106795780633a448718146106b257806341a601ad146106c7576103fa565b806323b872dd146105b75780632c1f5216146105fa5780632f091f951461060f5780632fa1f70e14610624576103fa565b80630a910d1f116103c25780630a910d1f146105295780631694505e1461053e57806318160ddd1461056f5780631f53ac0214610584576103fa565b806302e30233146103ff57806305714f411461042b57806306fdde0314610452578063095ea7b3146104dc576103fa565b366103fa57005b600080fd5b34801561040b57600080fd5b506104296004803603602081101561042257600080fd5b5035610eab565b005b34801561043757600080fd5b50610440610f36565b60408051918252519081900360200190f35b34801561045e57600080fd5b50610467610f3c565b6040805160208082528351818301528351919283929083019185019080838360005b838110156104a1578181015183820152602001610489565b50505050905090810190601f1680156104ce5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156104e857600080fd5b50610515600480360360408110156104ff57600080fd5b506001600160a01b038135169060200135610fd2565b604080519115158252519081900360200190f35b34801561053557600080fd5b50610515610ff0565b34801561054a57600080fd5b50610553611000565b604080516001600160a01b039092168252519081900360200190f35b34801561057b57600080fd5b5061044061100f565b34801561059057600080fd5b50610429600480360360208110156105a757600080fd5b50356001600160a01b0316611015565b3480156105c357600080fd5b50610515600480360360608110156105da57600080fd5b506001600160a01b0381358116916020810135909116906040013561108f565b34801561060657600080fd5b5061055361111c565b34801561061b57600080fd5b5061042961112b565b34801561063057600080fd5b50610429611198565b34801561064557600080fd5b50610440611205565b34801561065a57600080fd5b5061066361127b565b6040805160ff9092168252519081900360200190f35b34801561068557600080fd5b506105156004803603604081101561069c57600080fd5b506001600160a01b038135169060200135611280565b3480156106be57600080fd5b506104406112d4565b3480156106d357600080fd5b50610429600480360360208110156106ea57600080fd5b50356112da565b3480156106fd57600080fd5b50610553611358565b34801561071257600080fd5b506104296004803603602081101561072957600080fd5b5035611367565b34801561073c57600080fd5b506104296004803603602081101561075357600080fd5b50356113df565b34801561076657600080fd5b50610429611457565b34801561077b57600080fd5b506104296004803603602081101561079257600080fd5b50356114dc565b3480156107a557600080fd5b50610515600480360360208110156107bc57600080fd5b50356001600160a01b0316611554565b3480156107d857600080fd5b50610440611572565b3480156107ed57600080fd5b506104296004803603602081101561080457600080fd5b50356001600160a01b0316611578565b34801561082057600080fd5b506104406115f8565b34801561083557600080fd5b506104296004803603602081101561084c57600080fd5b50356001600160a01b031661163d565b34801561086857600080fd5b5061042961173f565b34801561087d57600080fd5b506104406004803603602081101561089457600080fd5b50356001600160a01b03166117a6565b3480156108b057600080fd5b50610440611829565b3480156108c557600080fd5b5061051561182f565b3480156108da57600080fd5b50610429611838565b3480156108ef57600080fd5b506104296004803603602081101561090657600080fd5b503561189f565b34801561091957600080fd5b506104406004803603602081101561093057600080fd5b50356001600160a01b0316611986565b34801561094c57600080fd5b506104296119a1565b34801561096157600080fd5b50610440611a43565b34801561097657600080fd5b50610515611a49565b34801561098b57600080fd5b50610429600480360360208110156109a257600080fd5b5035611a59565b3480156109b557600080fd5b50610429600480360360208110156109cc57600080fd5b50356001600160a01b0316611b76565b3480156109e857600080fd5b50610440611ecf565b3480156109fd57600080fd5b50610553611ed5565b348015610a1257600080fd5b50610467611ee4565b348015610a2757600080fd5b5061042960048036036040811015610a3e57600080fd5b506001600160a01b0381351690602001351515611f45565b348015610a6257600080fd5b50610440611ff4565b348015610a7757600080fd5b50610440611ffa565b348015610a8c57600080fd5b5061042960048036036020811015610aa357600080fd5b503561203f565b348015610ab657600080fd5b5061051560048036036040811015610acd57600080fd5b506001600160a01b03813516906020013561211f565b348015610aef57600080fd5b5061044060048036036020811015610b0657600080fd5b50356001600160a01b031661218d565b348015610b2257600080fd5b5061051560048036036040811015610b3957600080fd5b506001600160a01b0381351690602001356121de565b348015610b5b57600080fd5b5061042960048036036020811015610b7257600080fd5b50356121f2565b348015610b8557600080fd5b5061044061226b565b348015610b9a57600080fd5b50610bc160048036036020811015610bb157600080fd5b50356001600160a01b0316612271565b604080516001600160a01b0390991689526020890197909752878701959095526060870193909352608086019190915260a085015260c084015260e083015251908190036101000190f35b348015610c1857600080fd5b5061051560048036036020811015610c2f57600080fd5b50356001600160a01b031661235a565b348015610c4b57600080fd5b5061042961236f565b348015610c6057600080fd5b506104406123d3565b348015610c7557600080fd5b5061042960048036036040811015610c8c57600080fd5b506001600160a01b03813516906020013515156123d9565b348015610cb057600080fd5b506104296124ef565b348015610cc557600080fd5b5061042961255c565b348015610cda57600080fd5b5061042960048036036040811015610cf157600080fd5b810190602081018135640100000000811115610d0c57600080fd5b820183602082011115610d1e57600080fd5b80359060200191846020830284011164010000000083111715610d4057600080fd5b91908080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525092955050505035151590506125c3565b348015610d8c57600080fd5b506104296126f8565b348015610da157600080fd5b5061044060048036036040811015610db857600080fd5b506001600160a01b038135811691602001351661275f565b348015610ddc57600080fd5b5061044061278a565b348015610df157600080fd5b50610440612790565b348015610e0657600080fd5b5061042960048036036020811015610e1d57600080fd5b50356127d5565b348015610e3057600080fd5b50610515612895565b348015610e4557600080fd5b50610bc160048036036020811015610e5c57600080fd5b50356128a5565b348015610e6f57600080fd5b5061042960048036036020811015610e8657600080fd5b50356001600160a01b031661290b565b348015610ea257600080fd5b50610440612a04565b610eb3612a0a565b6005546001600160a01b03908116911614610f03576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb4833981519152604482015290519081900360640190fd5b600e819055601054600f54610f309190610f2490849063ffffffff612a0e16565b9063ffffffff612a0e16565b60125550565b60115481565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610fc85780601f10610f9d57610100808354040283529160200191610fc8565b820191906000526020600020905b815481529060010190602001808311610fab57829003601f168201915b5050505050905090565b6000610fe6610fdf612a0a565b8484612a6f565b5060015b92915050565b600854600160a81b900460ff1681565b6006546001600160a01b031681565b60025490565b61101d612a0a565b6005546001600160a01b0390811691161461106d576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb4833981519152604482015290519081900360640190fd5b601480546001600160a01b0319166001600160a01b0392909216919091179055565b600061109c848484612b5b565b611112846110a8612a0a565b61110d85604051806060016040528060288152602001613e8c602891396001600160a01b038a166000908152600160205260408120906110e6612a0a565b6001600160a01b03168152602081019190915260400160002054919063ffffffff6132bf16565b612a6f565b5060019392505050565b6008546001600160a01b031681565b611133612a0a565b6005546001600160a01b03908116911614611183576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb4833981519152604482015290519081900360640190fd5b6008805460ff60a81b1916600160a81b179055565b6111a0612a0a565b6005546001600160a01b039081169116146111f0576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb4833981519152604482015290519081900360640190fd5b6008805460ff60a01b1916600160a01b179055565b600854604080516342d359d760e11b815290516000926001600160a01b0316916385a6b3ae916004808301926020929190829003018186803b15801561124a57600080fd5b505afa15801561125e573d6000803e3d6000fd5b505050506040513d602081101561127457600080fd5b5051905090565b601290565b6000610fe661128d612a0a565b8461110d856001600061129e612a0a565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff612a0e16565b60125481565b6112e2612a0a565b6005546001600160a01b03908116911614611332576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb4833981519152604482015290519081900360640190fd5b600c819055600d54600b546113529190610f24908463ffffffff612a0e16565b60115550565b6007546001600160a01b031681565b61136f612a0a565b6005546001600160a01b039081169116146113bf576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb4833981519152604482015290519081900360640190fd5b600f819055601054600e54610f309190610f24908463ffffffff612a0e16565b6113e7612a0a565b6005546001600160a01b03908116911614611437576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb4833981519152604482015290519081900360640190fd5b600d819055600c54600b54611352918391610f249163ffffffff612a0e16565b6008546040805163bc4c4b3760e01b815233600482015260006024820181905291516001600160a01b039093169263bc4c4b3792604480840193602093929083900390910190829087803b1580156114ae57600080fd5b505af11580156114c2573d6000803e3d6000fd5b505050506040513d60208110156114d857600080fd5b5050565b6114e4612a0a565b6005546001600160a01b03908116911614611534576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb4833981519152604482015290519081900360640190fd5b6010819055600f54600e54610f30918391610f249163ffffffff612a0e16565b6001600160a01b031660009081526016602052604090205460ff1690565b600b5481565b611580612a0a565b6005546001600160a01b039081169116146115d0576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb4833981519152604482015290519081900360640190fd5b601380546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b600854604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde916004808301926020929190829003018186803b15801561124a57600080fd5b611645612a0a565b6005546001600160a01b03908116911614611695576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb4833981519152604482015290519081900360640190fd5b6006546001600160a01b03828116911614156116e25760405162461bcd60e51b815260040180806020018281038252602f815260200180613d2f602f913960400191505060405180910390fd5b6006546040516001600160a01b03918216918316907f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e90600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b611747612a0a565b6005546001600160a01b03908116911614611797576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb4833981519152604482015290519081900360640190fd5b6008805460ff60b01b19169055565b600854604080516370a0823160e01b81526001600160a01b038481166004830152915160009392909216916370a0823191602480820192602092909190829003018186803b1580156117f757600080fd5b505afa15801561180b573d6000803e3d6000fd5b505050506040513d602081101561182157600080fd5b505192915050565b60105481565b60135460ff1681565b611840612a0a565b6005546001600160a01b03908116911614611890576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb4833981519152604482015290519081900360640190fd5b6008805460ff60a81b19169055565b600854604080516001624d3b8760e01b03198152600481018490529051600092839283926001600160a01b039092169163ffb2c4799160248082019260609290919082900301818787803b1580156118f657600080fd5b505af115801561190a573d6000803e3d6000fd5b505050506040513d606081101561192057600080fd5b5080516020808301516040938401518451848152928301829052828501819052606083018990529351929650945091925032916000917fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989181900360800190a350505050565b6001600160a01b031660009081526020819052604090205490565b6119a9612a0a565b6005546001600160a01b039081169116146119f9576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb4833981519152604482015290519081900360640190fd5b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b600c5481565b600854600160b01b900460ff1681565b611a61612a0a565b6005546001600160a01b03908116911614611ab1576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb4833981519152604482015290519081900360640190fd5b62030d408110158015611ac75750620f42408111155b611b025760405162461bcd60e51b8152600401808060200182810382526040815260200180613d5e6040913960400191505060405180910390fd5b601554811415611b435760405162461bcd60e51b8152600401808060200182810382526038815260200180613f886038913960400191505060405180910390fd5b60155460405182907f40d7e40e79af4e8e5a9b3c57030d8ea93f13d669c06d448c4d631d4ae7d23db790600090a3601555565b611b7e612a0a565b6005546001600160a01b03908116911614611bce576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb4833981519152604482015290519081900360640190fd5b6008546001600160a01b0382811691161415611c1b5760405162461bcd60e51b8152600401808060200182810382526039815260200180613ed46039913960400191505060405180910390fd5b6000819050306001600160a01b0316816001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b158015611c6357600080fd5b505afa158015611c77573d6000803e3d6000fd5b505050506040513d6020811015611c8d57600080fd5b50516001600160a01b031614611cd45760405162461bcd60e51b8152600401808060200182810382526053815260200180613dd46053913960600191505060405180910390fd5b6040805163031e79db60e41b81526001600160a01b0383166004820181905291516331e79db09160248082019260009290919082900301818387803b158015611d1c57600080fd5b505af1158015611d30573d6000803e3d6000fd5b50506040805163031e79db60e41b815230600482015290516001600160a01b03851693506331e79db09250602480830192600092919082900301818387803b158015611d7b57600080fd5b505af1158015611d8f573d6000803e3d6000fd5b50505050806001600160a01b03166331e79db0611daa611ed5565b6040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b03168152602001915050600060405180830381600087803b158015611df257600080fd5b505af1158015611e06573d6000803e3d6000fd5b50506006546040805163031e79db60e41b81526001600160a01b039283166004820152905191851693506331e79db0925060248082019260009290919082900301818387803b158015611e5857600080fd5b505af1158015611e6c573d6000803e3d6000fd5b50506008546040516001600160a01b03918216935090851691507f90c7d74461c613da5efa97d90740869367d74ab3aa5837aa4ae9a975f954b7a890600090a3600880546001600160a01b0319166001600160a01b039290921691909117905550565b600e5481565b6005546001600160a01b031690565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610fc85780601f10610f9d57610100808354040283529160200191610fc8565b611f4d612a0a565b6005546001600160a01b03908116911614611f9d576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb4833981519152604482015290519081900360640190fd5b6007546001600160a01b0383811691161415611fea5760405162461bcd60e51b8152600401808060200182810382526051815260200180613cb86051913960600191505060405180910390fd5b6114d88282613356565b60155481565b60085460408051631bc9e27b60e21b815290516000926001600160a01b031691636f2789ec916004808301926020929190829003018186803b15801561124a57600080fd5b612047612a0a565b6005546001600160a01b03908116911614612097576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb4833981519152604482015290519081900360640190fd5b6064600a5411156120d95760405162461bcd60e51b8152600401808060200182810382526032815260200180613f566032913960400191505060405180910390fd5b6000600a541161211a5760405162461bcd60e51b815260040180806020018281038252602f815260200180613fc0602f913960400191505060405180910390fd5b600a55565b6000610fe661212c612a0a565b8461110d85604051806060016040528060258152602001613fef6025913960016000612156612a0a565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff6132bf16565b600854604080516302a2e74960e61b81526001600160a01b0384811660048301529151600093929092169163a8b9d24091602480820192602092909190829003018186803b1580156117f757600080fd5b6000610fe66121eb612a0a565b8484612b5b565b6121fa612a0a565b6005546001600160a01b0390811691161461224a576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb4833981519152604482015290519081900360640190fd5b600b819055600d54600c546113529190610f2490849063ffffffff612a0e16565b600f5481565b600080600080600080600080600860009054906101000a90046001600160a01b03166001600160a01b031663fbcbc0f18a6040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b031681526020019150506101006040518083038186803b1580156122e957600080fd5b505afa1580156122fd573d6000803e3d6000fd5b505050506040513d61010081101561231457600080fd5b508051602082015160408301516060840151608085015160a086015160c087015160e090970151959e50939c50919a509850965094509092509050919395975091939597565b60176020526000908152604090205460ff1681565b612377612a0a565b6005546001600160a01b039081169116146123c7576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb4833981519152604482015290519081900360640190fd5b6013805460ff19169055565b600a5481565b6123e1612a0a565b6005546001600160a01b03908116911614612431576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb4833981519152604482015290519081900360640190fd5b6001600160a01b03821660009081526016602052604090205460ff161515811515141561248f5760405162461bcd60e51b8152600401808060200182810382526036815260200180613d9e6036913960400191505060405180910390fd5b6001600160a01b038216600081815260166020908152604091829020805460ff1916851515908117909155825190815291517f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79281900390910190a25050565b6124f7612a0a565b6005546001600160a01b03908116911614612547576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb4833981519152604482015290519081900360640190fd5b6008805460ff60b01b1916600160b01b179055565b612564612a0a565b6005546001600160a01b039081169116146125b4576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb4833981519152604482015290519081900360640190fd5b6008805460ff60a01b19169055565b6125cb612a0a565b6005546001600160a01b0390811691161461261b576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb4833981519152604482015290519081900360640190fd5b60005b825181101561267257816016600085848151811061263857fe5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905560010161261e565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b358282604051808060200183151515158152602001828103825284818151815260200191508051906020019060200280838360005b838110156126e05781810151838201526020016126c8565b50505050905001935050505060405180910390a15050565b612700612a0a565b6005546001600160a01b03908116911614612750576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb4833981519152604482015290519081900360640190fd5b6013805460ff19166001179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60095481565b6008546040805163039e107b60e61b815290516000926001600160a01b03169163e7841ec0916004808301926020929190829003018186803b15801561124a57600080fd5b6127dd612a0a565b6005546001600160a01b0390811691161461282d576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb4833981519152604482015290519081900360640190fd5b6008546040805163e98030c760e01b81526004810184905290516001600160a01b039092169163e98030c79160248082019260009290919082900301818387803b15801561287a57600080fd5b505af115801561288e573d6000803e3d6000fd5b5050505050565b600854600160a01b900460ff1681565b600080600080600080600080600860009054906101000a90046001600160a01b03166001600160a01b0316635183d6fd8a6040518263ffffffff1660e01b8152600401808281526020019150506101006040518083038186803b1580156122e957600080fd5b612913612a0a565b6005546001600160a01b03908116911614612963576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb4833981519152604482015290519081900360640190fd5b6001600160a01b0381166129a85760405162461bcd60e51b8152600401808060200182810382526026815260200180613c706026913960400191505060405180910390fd5b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b600d5481565b3390565b600082820183811015612a68576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b038316612ab45760405162461bcd60e51b8152600401808060200182810382526024815260200180613f326024913960400191505060405180910390fd5b6001600160a01b038216612af95760405162461bcd60e51b8152600401808060200182810382526022815260200180613c966022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316612ba05760405162461bcd60e51b8152600401808060200182810382526025815260200180613f0d6025913960400191505060405180910390fd5b6001600160a01b038216612be55760405162461bcd60e51b8152600401808060200182810382526023815260200180613c4d6023913960400191505060405180910390fd5b612bed611ed5565b6001600160a01b0316836001600160a01b031614612c145760135460ff16612c1457600080fd5b80612c2a57612c2583836000613484565b6132ba565b6000612c3530611986565b60095490915081108015908190612c565750600754600160a01b900460ff16155b8015612c7b57506001600160a01b03851660009081526017602052604090205460ff16155b8015612ca05750612c8a611ed5565b6001600160a01b0316856001600160a01b031614155b8015612cc55750612caf611ed5565b6001600160a01b0316846001600160a01b031614155b8015612cde57506007546001600160a01b038681169116145b8015612cf857506006546001600160a01b03858116911614155b15612d94576007805460ff60a01b1916600160a01b179055601254601054600091612d3a91612d2e90869063ffffffff6135eb16565b9063ffffffff61364416565b9050612d4581613686565b6000612d62601254612d2e600f54876135eb90919063ffffffff16565b9050612d6d81613798565b6000612d7830611986565b9050612d8381613850565b50506007805460ff60a01b19169055505b808015612dab5750600754600160a01b900460ff16155b8015612dd057506001600160a01b03851660009081526017602052604090205460ff16155b8015612df55750612ddf611ed5565b6001600160a01b0316856001600160a01b031614155b8015612e1a5750612e04611ed5565b6001600160a01b0316846001600160a01b031614155b8015612e3457506007546001600160a01b03868116911614155b15612f0057600a54600754612e6991606491612d2e9190612e5d906001600160a01b0316611986565b9063ffffffff6135eb16565b831115612e7557600080fd5b6007805460ff60a01b1916600160a01b179055601154600d54600091612ea691612d2e90869063ffffffff6135eb16565b9050612eb181613686565b6000612ece601154612d2e600c54876135eb90919063ffffffff16565b9050612ed981613798565b6000612ee430611986565b9050612eef81613850565b50506007805460ff60a01b19169055505b6007546001600160a01b03861660009081526016602052604090205460ff600160a01b909204821615911680612f4e57506001600160a01b03851660009081526016602052604090205460ff165b15612f57575060005b600854600160a01b900460ff16151560011415612f72575060005b80156130bf576007546001600160a01b038781169116148015612fa357506006546001600160a01b03868116911614155b1561303657600854600160a81b900460ff1615613031576000612fd66064612d2e601254886135eb90919063ffffffff16565b6001600160a01b03871660009081526017602052604090205490915060ff1615613012576130106064612d2e87600163ffffffff6135eb16565b015b613022858263ffffffff61391a16565b945061302f873083613484565b505b6130bf565b600854600160b01b900460ff16156130bf5760006130646064612d2e601154886135eb90919063ffffffff16565b6001600160a01b03871660009081526017602052604090205490915060ff16156130a05761309e6064612d2e87600163ffffffff6135eb16565b015b6130b0858263ffffffff61391a16565b94506130bd873083613484565b505b6130ca868686613484565b6008546001600160a01b031663e30443bc876130e581611986565b6040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050600060405180830381600087803b15801561313457600080fd5b505af1925050508015613145575060015b506008546001600160a01b031663e30443bc8661316181611986565b6040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050600060405180830381600087803b1580156131b057600080fd5b505af19250505080156131c1575060015b50600754600160a01b900460ff166132b657601554600854604080516001624d3b8760e01b031981526004810184905290516001600160a01b039092169163ffb2c479916024808201926060929091908290030181600087803b15801561322757600080fd5b505af192505050801561325b57506040513d606081101561324757600080fd5b508051602082015160409092015190919060015b613264576132b4565b604080518481526020810184905280820183905260608101869052905132916001917fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989181900360800190a35050505b505b5050505b505050565b6000818484111561334e5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156133135781810151838201526020016132fb565b50505050905090810190601f1680156133405780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b03821660009081526017602052604090205460ff16151581151514156133b45760405162461bcd60e51b8152600401808060200182810382526044815260200180613e486044913960600191505060405180910390fd5b6001600160a01b0382166000908152601760205260409020805460ff19168215801591909117909155613448576008546040805163031e79db60e41b81526001600160a01b038581166004830152915191909216916331e79db091602480830192600092919082900301818387803b15801561342f57600080fd5b505af1158015613443573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b0383166134c95760405162461bcd60e51b8152600401808060200182810382526025815260200180613f0d6025913960400191505060405180910390fd5b6001600160a01b03821661350e5760405162461bcd60e51b8152600401808060200182810382526023815260200180613c4d6023913960400191505060405180910390fd5b6135198383836132ba565b61355c81604051806060016040528060268152602001613d09602691396001600160a01b038616600090815260208190526040902054919063ffffffff6132bf16565b6001600160a01b038085166000908152602081905260408082209390935590841681522054613591908263ffffffff612a0e16565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000826135fa57506000610fea565b8282028284828161360757fe5b0414612a685760405162461bcd60e51b8152600401808060200182810382526021815260200180613e276021913960400191505060405180910390fd5b6000612a6883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061395c565b6007805460ff60a01b1916600160a01b179055476136a3826139c1565b60006136b5478363ffffffff61391a16565b905060006136ca82600363ffffffff61364416565b60135460405191925061010090046001600160a01b0316906108fc8315029083906000818181858888f1935050505015801561370a573d6000803e3d6000fd5b506013546040516101009091046001600160a01b0316906108fc8315029083906000818181858888f19350505050158015613749573d6000803e3d6000fd5b506014546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015613784573d6000803e3d6000fd5b50506007805460ff60a01b19169055505050565b6007805460ff60a01b1916600160a01b17905560006137be82600263ffffffff61364416565b905060006137d2838363ffffffff61391a16565b9050476137de836139c1565b60006137f0478363ffffffff61391a16565b90506137fc8382613b67565b604080518581526020810183905280820185905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a150506007805460ff60a01b19169055505050565b6007805460ff60a01b1916600160a01b17905561386c816139c1565b60085460405147916000916001600160a01b039091169083908381818185875af1925050503d80600081146138bd576040519150601f19603f3d011682016040523d82523d6000602084013e6138c2565b606091505b50509050801561390857604080518481526020810184905281517f80195cc573b02cc48460cbca6e6e4cc85ddb91959d946e1c3025ea3d87942dc3929181900390910190a15b50506007805460ff60a01b1916905550565b6000612a6883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506132bf565b600081836139ab5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156133135781810151838201526020016132fb565b5060008385816139b757fe5b0495945050505050565b604080516002808252606080830184529260208301908038833901905050905030816000815181106139ef57fe5b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015613a4357600080fd5b505afa158015613a57573d6000803e3d6000fd5b505050506040513d6020811015613a6d57600080fd5b5051815182906001908110613a7e57fe5b6001600160a01b039283166020918202929092010152600654613aa49130911684612a6f565b60065460405163791ac94760e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b039097169663791ac947968a968a9594939092909160c40190602080880191028083838b5b83811015613b2a578181015183820152602001613b12565b505050509050019650505050505050600060405180830381600087803b158015613b5357600080fd5b505af11580156132b6573d6000803e3d6000fd5b600654613b7f9030906001600160a01b031684612a6f565b6006546001600160a01b031663f305d719823085600080613b9e611ed5565b426040518863ffffffff1660e01b815260040180876001600160a01b03166001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b03166001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b158015613c1b57600080fd5b505af1158015613c2f573d6000803e3d6000fd5b50505050506040513d6060811015613c4657600080fd5b5050505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734d6174696356657273653a205468652050616e63616b655377617020706169722063616e6e6f742062652072656d6f7665642066726f6d206175746f6d617465644d61726b65744d616b6572506169727345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654d6174696356657273653a2054686520726f7574657220616c726561647920686173207468617420616464726573734d6174696356657273653a20676173466f7250726f63657373696e67206d757374206265206265747765656e203230302c30303020616e64203530302c3030304d6174696356657273653a204163636f756e7420697320616c7265616479207468652076616c7565206f6620276578636c75646564274d4154494356455253453a20546865206e6577206469766964656e6420747261636b6572206d757374206265206f776e656420627920746865204d61746963566572736520746f6b656e20636f6e7472616374536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774d6174696356657273653a204175746f6d61746564206d61726b6574206d616b6572207061697220697320616c72656164792073657420746f20746861742076616c756545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65724d4154494356455253453a20546865206469766964656e6420747261636b657220616c7265616479206861732074686174206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573736d617820707269636520696d70616374206d757374206265206c657373207468616e206f7220657175616c20746f203130304d6174696356657273653a2043616e6e6f742075706461746520676173466f7250726f63657373696e6720746f2073616d652076616c756563616e742070726576656e742073656c6c732c2063686f6f73652076616c75652067726561746572207468616e203045524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220b37e93b9261f4ee357e9dd0af1265a5f4ec81a7565926513b8726df3f2e41d7664736f6c6343000602003360806040523480156200001157600080fd5b50604080518082018252601b81527f4d4154494356455253455f4469766964656e645f547261636b6572000000000060208083019182528351808501909452601784527f4d56455253455f4469766964656e645f547261636b65720000000000000000009084015281519192918391839162000090916003916200012a565b508051620000a69060049060208401906200012a565b50505050506000620000bd6200012560201b60201c565b600980546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350610e1060115569152d02c7e14af6800000601255620001cc565b335b90565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200016d57805160ff19168380011785556200019d565b828001600101855582156200019d579182015b828111156200019d57825182559160200191906001019062000180565b50620001ab929150620001af565b5090565b6200012791905b80821115620001ab5760008155600101620001b6565b61229480620001dc6000396000f3fe6080604052600436106102085760003560e01c8063715018a611610118578063bc4c4b37116100a0578063e7841ec01161006f578063e7841ec0146107d0578063e98030c7146107e5578063f2fde38b1461080f578063fbcbc0f114610842578063ffb2c4791461087557610217565b8063bc4c4b371461070c578063be10b61414610747578063dd62ed3e1461075c578063e30443bc1461079757610217565b806395d89b41116100e757806395d89b411461061f578063a457c2d714610634578063a8b9d2401461066d578063a9059cbb146106a0578063aafd847a146106d957610217565b8063715018a61461059157806385a6b3ae146105a65780638da5cb5b146105bb57806391b89fba146105ec57610217565b80633009a6091161019b5780634e7b827f1161016a5780634e7b827f1461048c5780635183d6fd146104bf5780636a474002146105345780636f2789ec1461054957806370a082311461055e57610217565b80633009a609146103e0578063313ce567146103f557806331e79db014610420578063395093511461045357610217565b806318160ddd116101d757806318160ddd14610322578063226cfa3d1461033757806323b872dd1461036a57806327ce0147146103ad57610217565b806303c833021461021c57806306fdde0314610224578063095ea7b3146102ae57806309bbedde146102fb57610217565b36610217576102156108bd565b005b600080fd5b6102156108bd565b34801561023057600080fd5b50610239610960565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561027357818101518382015260200161025b565b50505050905090810190601f1680156102a05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102ba57600080fd5b506102e7600480360360408110156102d157600080fd5b506001600160a01b0381351690602001356109f6565b604080519115158252519081900360200190f35b34801561030757600080fd5b50610310610a14565b60408051918252519081900360200190f35b34801561032e57600080fd5b50610310610a1a565b34801561034357600080fd5b506103106004803603602081101561035a57600080fd5b50356001600160a01b0316610a20565b34801561037657600080fd5b506102e76004803603606081101561038d57600080fd5b506001600160a01b03813581169160208101359091169060400135610a32565b3480156103b957600080fd5b50610310600480360360208110156103d057600080fd5b50356001600160a01b0316610abf565b3480156103ec57600080fd5b50610310610b2a565b34801561040157600080fd5b5061040a610b30565b6040805160ff9092168252519081900360200190f35b34801561042c57600080fd5b506102156004803603602081101561044357600080fd5b50356001600160a01b0316610b35565b34801561045f57600080fd5b506102e76004803603604081101561047657600080fd5b506001600160a01b038135169060200135610c91565b34801561049857600080fd5b506102e7600480360360208110156104af57600080fd5b50356001600160a01b0316610ce5565b3480156104cb57600080fd5b506104e9600480360360208110156104e257600080fd5b5035610cfa565b604080516001600160a01b0390991689526020890197909752878701959095526060870193909352608086019190915260a085015260c084015260e083015251908190036101000190f35b34801561054057600080fd5b50610215610e59565b34801561055557600080fd5b50610310610e90565b34801561056a57600080fd5b506103106004803603602081101561058157600080fd5b50356001600160a01b0316610e96565b34801561059d57600080fd5b50610215610eb1565b3480156105b257600080fd5b50610310610f53565b3480156105c757600080fd5b506105d0610f59565b604080516001600160a01b039092168252519081900360200190f35b3480156105f857600080fd5b506103106004803603602081101561060f57600080fd5b50356001600160a01b0316610f68565b34801561062b57600080fd5b50610239610f73565b34801561064057600080fd5b506102e76004803603604081101561065757600080fd5b506001600160a01b038135169060200135610fd4565b34801561067957600080fd5b506103106004803603602081101561069057600080fd5b50356001600160a01b0316611042565b3480156106ac57600080fd5b506102e7600480360360408110156106c357600080fd5b506001600160a01b038135169060200135611074565b3480156106e557600080fd5b50610310600480360360208110156106fc57600080fd5b50356001600160a01b0316611088565b34801561071857600080fd5b506102e76004803603604081101561072f57600080fd5b506001600160a01b03813516906020013515156110a3565b34801561075357600080fd5b50610310611178565b34801561076857600080fd5b506103106004803603604081101561077f57600080fd5b506001600160a01b038135811691602001351661117e565b3480156107a357600080fd5b50610215600480360360408110156107ba57600080fd5b506001600160a01b0381351690602001356111a9565b3480156107dc57600080fd5b50610310611355565b3480156107f157600080fd5b506102156004803603602081101561080857600080fd5b503561135b565b34801561081b57600080fd5b506102156004803603602081101561083257600080fd5b50356001600160a01b0316611477565b34801561084e57600080fd5b506104e96004803603602081101561086557600080fd5b50356001600160a01b0316611570565b34801561088157600080fd5b5061089f6004803603602081101561089857600080fd5b503561170a565b60408051938452602084019290925282820152519081900360600190f35b60006108c7610a1a565b116108d157600080fd5b341561095e5761090e6108e2610a1a565b6108f634600160801b63ffffffff61181416565b816108fd57fe5b60055491900463ffffffff61187416565b60055560408051348152905133917fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d78454116511919081900360200190a260085461095a903463ffffffff61187416565b6008555b565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109ec5780601f106109c1576101008083540402835291602001916109ec565b820191906000526020600020905b8154815290600101906020018083116109cf57829003601f168201915b5050505050905090565b6000610a0a610a036118ce565b84846118d2565b5060015b92915050565b600a5490565b60025490565b60106020526000908152604090205481565b6000610a3f8484846119be565b610ab584610a4b6118ce565b610ab08560405180606001604052806028815260200161217c602891396001600160a01b038a16600090815260016020526040812090610a896118ce565b6001600160a01b03168152602081019190915260400160002054919063ffffffff6119f516565b6118d2565b5060019392505050565b6001600160a01b038116600090815260066020526040812054600160801b90610b1a90610b1590610b09610b04610af588610e96565b6005549063ffffffff61181416565b611a8c565b9063ffffffff611a9c16565b611acf565b81610b2157fe5b0490505b919050565b600e5481565b601290565b610b3d6118ce565b6009546001600160a01b03908116911614610b8d576040805162461bcd60e51b815260206004820181905260248201526000805160206121a4833981519152604482015290519081900360640190fd5b6001600160a01b0381166000908152600f602052604090205460ff1615610bb357600080fd5b6001600160a01b0381166000908152600f60205260408120805460ff19166001179055610be1908290611ae2565b6040805163131836e760e21b8152600a60048201526001600160a01b03831660248201529051738bff85710d2d01cacbc703262033993a879ae66691634c60db9c916044808301926000929190829003018186803b158015610c4257600080fd5b505af4158015610c56573d6000803e3d6000fd5b50506040516001600160a01b03841692507fa878b31040b2e6d0a9a3d3361209db3908ba62014b0dca52adbaee451d128b259150600090a250565b6000610a0a610c9e6118ce565b84610ab08560016000610caf6118ce565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61187416565b600f6020526000908152604090205460ff1681565b600080600080600080600080600a738bff85710d2d01cacbc703262033993a879ae66663deb3d89690916040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b158015610d5857600080fd5b505af4158015610d6c573d6000803e3d6000fd5b505050506040513d6020811015610d8257600080fd5b50518910610da9575060009650600019955085945086935083925082915081905080610e4e565b6000600a738bff85710d2d01cacbc703262033993a879ae66663d1aa9e7e90918c6040518363ffffffff1660e01b8152600401808381526020018281526020019250505060206040518083038186803b158015610e0557600080fd5b505af4158015610e19573d6000803e3d6000fd5b505050506040513d6020811015610e2f57600080fd5b50519050610e3c81611570565b98509850985098509850985098509850505b919395975091939597565b60405162461bcd60e51b81526004018080602001828103825260718152602001806120586071913960800191505060405180910390fd5b60115481565b6001600160a01b031660009081526020819052604090205490565b610eb96118ce565b6009546001600160a01b03908116911614610f09576040805162461bcd60e51b815260206004820181905260248201526000805160206121a4833981519152604482015290519081900360640190fd5b6009546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600980546001600160a01b0319169055565b60085481565b6009546001600160a01b031690565b6000610a0e82611042565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109ec5780601f106109c1576101008083540402835291602001916109ec565b6000610a0a610fe16118ce565b84610ab08560405180606001604052806025815260200161223a602591396001600061100b6118ce565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff6119f516565b6001600160a01b038116600090815260076020526040812054610a0e9061106884610abf565b9063ffffffff611b4716565b6000610a0a6110816118ce565b84846119be565b6001600160a01b031660009081526007602052604090205490565b60006110ad6118ce565b6009546001600160a01b039081169116146110fd576040805162461bcd60e51b815260206004820181905260248201526000805160206121a4833981519152604482015290519081900360640190fd5b600061110884611b89565b9050801561116e576001600160a01b0384166000818152601060209081526040918290204290558151848152915186151593927fa2c38e2d2fb7e3e1912d937fd1ca11ed6d51864dee4cfa7a7bf02becd7acf09292908290030190a36001915050610a0e565b5060009392505050565b60125481565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6111b16118ce565b6009546001600160a01b03908116911614611201576040805162461bcd60e51b815260206004820181905260248201526000805160206121a4833981519152604482015290519081900360640190fd5b6001600160a01b0382166000908152600f602052604090205460ff161561122757611351565b60125481106112bf5761123a8282611ae2565b60408051632f0ad01760e21b8152600a60048201526001600160a01b0384166024820152604481018390529051738bff85710d2d01cacbc703262033993a879ae6669163bc2b405c916064808301926000929190829003018186803b1580156112a257600080fd5b505af41580156112b6573d6000803e3d6000fd5b50505050611344565b6112ca826000611ae2565b6040805163131836e760e21b8152600a60048201526001600160a01b03841660248201529051738bff85710d2d01cacbc703262033993a879ae66691634c60db9c916044808301926000929190829003018186803b15801561132b57600080fd5b505af415801561133f573d6000803e3d6000fd5b505050505b61134f8260016110a3565b505b5050565b600e5490565b6113636118ce565b6009546001600160a01b039081169116146113b3576040805162461bcd60e51b815260206004820181905260248201526000805160206121a4833981519152604482015290519081900360640190fd5b610e1081101580156113c85750620151808111155b6114035760405162461bcd60e51b815260040180806020018281038252605081526020018061210b6050913960600191505060405180910390fd5b6011548114156114445760405162461bcd60e51b81526004018080602001828103825260428152602001806120c96042913960600191505060405180910390fd5b60115460405182907f474ea64804364a1e29a4487ddb63c3342a2dd826ccd8acf48825e680a0e6f20f90600090a3601155565b61147f6118ce565b6009546001600160a01b039081169116146114cf576040805162461bcd60e51b815260206004820181905260248201526000805160206121a4833981519152604482015290519081900360640190fd5b6001600160a01b0381166115145760405162461bcd60e51b81526004018080602001828103825260268152602001806120106026913960400191505060405180910390fd5b6009546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600980546001600160a01b0319166001600160a01b0392909216919091179055565b600080600080600080600080889750600a738bff85710d2d01cacbc703262033993a879ae6666317e142d190918a6040518363ffffffff1660e01b815260040180838152602001826001600160a01b03166001600160a01b031681526020019250505060206040518083038186803b1580156115eb57600080fd5b505af41580156115ff573d6000803e3d6000fd5b505050506040513d602081101561161557600080fd5b5051965060001995506000871261168b57600e5487111561164b57600e5461164490889063ffffffff611cd616565b955061168b565b600e54600a5460009110611660576000611675565b600e54600a546116759163ffffffff611b4716565b9050611687888263ffffffff611a9c16565b9650505b61169488611042565b945061169f88610abf565b6001600160a01b0389166000908152601060205260409020549094509250826116c95760006116dd565b6011546116dd90849063ffffffff61187416565b91504282116116ed5760006116fd565b6116fd824263ffffffff611b4716565b9050919395975091939597565b600a54600090819081908061172a575050600e546000925082915061180d565b600e546000805a90506000805b898410801561174557508582105b156117fc57600a54600190950194851061175e57600094505b6000600a600001868154811061177057fe5b60009182526020808320909101546001600160a01b031680835260109091526040909120549091506117a190611d08565b156117bd576117b18160016110a3565b156117bd576001909101905b60019092019160005a9050808511156117f3576117f06117e3868363ffffffff611b4716565b879063ffffffff61187416565b95505b93506117379050565b600e85905590975095509193505050505b9193909250565b60008261182357506000610a0e565b8282028284828161183057fe5b041461186d5760405162461bcd60e51b815260040180806020018281038252602181526020018061215b6021913960400191505060405180910390fd5b9392505050565b60008282018381101561186d576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b3390565b6001600160a01b0383166119175760405162461bcd60e51b81526004018080602001828103825260248152602001806121e56024913960400191505060405180910390fd5b6001600160a01b03821661195c5760405162461bcd60e51b81526004018080602001828103825260228152602001806120366022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60405162461bcd60e51b81526004018080602001828103825260318152602001806122096031913960400191505060405180910390fd5b60008184841115611a845760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611a49578181015183820152602001611a31565b50505050905090810190601f168015611a765780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008181811215610a0e57600080fd5b6000828201818312801590611ab15750838112155b80611ac65750600083128015611ac657508381125b61186d57600080fd5b600080821215611ade57600080fd5b5090565b6000611aed83610e96565b905080821115611b1b576000611b09838363ffffffff611b4716565b9050611b158482611d35565b5061134f565b8082101561134f576000611b35828463ffffffff611b4716565b9050611b418482611d9f565b50505050565b600061186d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506119f5565b600080611b9583611042565b90508015611ccd576001600160a01b038316600090815260076020526040902054611bc6908263ffffffff61187416565b6001600160a01b038416600081815260076020908152604091829020939093558051848152905191927fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d92918290030190a26040516000906001600160a01b03851690610bb890849084818181858888f193505050503d8060008114611c68576040519150601f19603f3d011682016040523d82523d6000602084013e611c6d565b606091505b5050905080611cc5576001600160a01b038416600090815260076020526040902054611c9f908363ffffffff611b4716565b6001600160a01b0385166000908152600760205260408120919091559250610b25915050565b509050610b25565b50600092915050565b6000818303818312801590611ceb5750838113155b80611ac65750600083128015611ac6575083811361186d57600080fd5b600042821115611d1a57506000610b25565b601154611d2d428463ffffffff611b4716565b101592915050565b611d3f8282611de9565b611d7f611d5a610b048360055461181490919063ffffffff16565b6001600160a01b0384166000908152600660205260409020549063ffffffff611cd616565b6001600160a01b0390921660009081526006602052604090209190915550565b611da98282611ee5565b611d7f611dc4610b048360055461181490919063ffffffff16565b6001600160a01b0384166000908152600660205260409020549063ffffffff611a9c16565b6001600160a01b038216611e44576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b611e506000838361134f565b600254611e63908263ffffffff61187416565b6002556001600160a01b038216600090815260208190526040902054611e8f908263ffffffff61187416565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b038216611f2a5760405162461bcd60e51b81526004018080602001828103825260218152602001806121c46021913960400191505060405180910390fd5b611f368260008361134f565b611f7981604051806060016040528060228152602001611fee602291396001600160a01b038516600090815260208190526040902054919063ffffffff6119f516565b6001600160a01b038316600090815260208190526040902055600254611fa5908263ffffffff611b4716565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734d6174696356657273655f4469766964656e645f547261636b65723a2077697468647261774469766964656e642064697361626c65642e20557365207468652027636c61696d272066756e6374696f6e206f6e20746865206d61696e204d61746963566572736520636f6e74726163742e4d6174696356657273655f4469766964656e645f547261636b65723a2043616e6e6f742075706461746520636c61696d5761697420746f2073616d652076616c75654d6174696356657273655f4469766964656e645f547261636b65723a20636c61696d57616974206d757374206265207570646174656420746f206265747765656e203120616e6420323420686f757273536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734d6174696356657273655f4469766964656e645f547261636b65723a204e6f207472616e736665727320616c6c6f77656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220756641d071548365682b0db4fe97765e22ff3541dd0a3d23ede21ab016510d6564736f6c634300060200334d6174696356657273653a204163636f756e7420697320616c7265616479207468652076616c7565206f6620276578636c75646564274d6174696356657273653a204175746f6d61746564206d61726b6574206d616b6572207061697220697320616c72656164792073657420746f20746861742076616c7565
Deployed Bytecode
0x6080604052600436106103f35760003560e01c8063715018a611610208578063ad56c13c11610118578063d52f0d78116100ab578063e98030c71161007a578063e98030c714610dfa578063ea7c5fc014610e24578063f27fd25414610e39578063f2fde38b14610e63578063fd8f4cac14610e96576103fa565b8063d52f0d7814610d80578063dd62ed3e14610d95578063e2f4560514610dd0578063e7841ec014610de5576103fa565b8063c0246668116100e7578063c024666814610c69578063c16a841d14610ca4578063c313ab2114610cb9578063c492f04614610cce576103fa565b8063ad56c13c14610b8e578063b62496f514610c0c578063bd64ab7914610c3f578063bfa31ff914610c54576103fa565b80639a7a23d61161019b578063a457c2d71161016a578063a457c2d714610aaa578063a8b9d24014610ae3578063a9059cbb14610b16578063a9b8cfff14610b4f578063a9f0ef6514610b79576103fa565b80639a7a23d614610a1b5780639c1b8af514610a56578063a26579ad14610a6b578063a39be80014610a80576103fa565b806388bdd9be116101d757806388bdd9be146109a95780638a6aa9db146109dc5780638da5cb5b146109f157806395d89b4114610a06576103fa565b8063715018a61461094057806382a10e891461095557806383fd03671461096a578063871c128d1461097f576103fa565b806349bd5a5e1161030357806364b0f653116102965780636a294968116102655780636a294968146108a45780636ddd1713146108b95780636e788c0d146108ce578063700bb191146108e357806370a082311461090d576103fa565b806364b0f6531461081457806365b8dbc01461082957806367afb53d1461085c5780636843cd8414610871576103fa565b80634e8ed777116102d25780634e8ed7771461076f5780634fbee193146107995780634fd60282146107cc5780635d098b38146107e1576103fa565b806349bd5a5e146106f15780634a6892cb146107065780634ad7bcbd146107305780634e71d92d1461075a576103fa565b806323b872dd1161038657806330bb4cff1161035557806330bb4cff14610639578063313ce5671461064e57806339509351146106795780633a448718146106b257806341a601ad146106c7576103fa565b806323b872dd146105b75780632c1f5216146105fa5780632f091f951461060f5780632fa1f70e14610624576103fa565b80630a910d1f116103c25780630a910d1f146105295780631694505e1461053e57806318160ddd1461056f5780631f53ac0214610584576103fa565b806302e30233146103ff57806305714f411461042b57806306fdde0314610452578063095ea7b3146104dc576103fa565b366103fa57005b600080fd5b34801561040b57600080fd5b506104296004803603602081101561042257600080fd5b5035610eab565b005b34801561043757600080fd5b50610440610f36565b60408051918252519081900360200190f35b34801561045e57600080fd5b50610467610f3c565b6040805160208082528351818301528351919283929083019185019080838360005b838110156104a1578181015183820152602001610489565b50505050905090810190601f1680156104ce5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156104e857600080fd5b50610515600480360360408110156104ff57600080fd5b506001600160a01b038135169060200135610fd2565b604080519115158252519081900360200190f35b34801561053557600080fd5b50610515610ff0565b34801561054a57600080fd5b50610553611000565b604080516001600160a01b039092168252519081900360200190f35b34801561057b57600080fd5b5061044061100f565b34801561059057600080fd5b50610429600480360360208110156105a757600080fd5b50356001600160a01b0316611015565b3480156105c357600080fd5b50610515600480360360608110156105da57600080fd5b506001600160a01b0381358116916020810135909116906040013561108f565b34801561060657600080fd5b5061055361111c565b34801561061b57600080fd5b5061042961112b565b34801561063057600080fd5b50610429611198565b34801561064557600080fd5b50610440611205565b34801561065a57600080fd5b5061066361127b565b6040805160ff9092168252519081900360200190f35b34801561068557600080fd5b506105156004803603604081101561069c57600080fd5b506001600160a01b038135169060200135611280565b3480156106be57600080fd5b506104406112d4565b3480156106d357600080fd5b50610429600480360360208110156106ea57600080fd5b50356112da565b3480156106fd57600080fd5b50610553611358565b34801561071257600080fd5b506104296004803603602081101561072957600080fd5b5035611367565b34801561073c57600080fd5b506104296004803603602081101561075357600080fd5b50356113df565b34801561076657600080fd5b50610429611457565b34801561077b57600080fd5b506104296004803603602081101561079257600080fd5b50356114dc565b3480156107a557600080fd5b50610515600480360360208110156107bc57600080fd5b50356001600160a01b0316611554565b3480156107d857600080fd5b50610440611572565b3480156107ed57600080fd5b506104296004803603602081101561080457600080fd5b50356001600160a01b0316611578565b34801561082057600080fd5b506104406115f8565b34801561083557600080fd5b506104296004803603602081101561084c57600080fd5b50356001600160a01b031661163d565b34801561086857600080fd5b5061042961173f565b34801561087d57600080fd5b506104406004803603602081101561089457600080fd5b50356001600160a01b03166117a6565b3480156108b057600080fd5b50610440611829565b3480156108c557600080fd5b5061051561182f565b3480156108da57600080fd5b50610429611838565b3480156108ef57600080fd5b506104296004803603602081101561090657600080fd5b503561189f565b34801561091957600080fd5b506104406004803603602081101561093057600080fd5b50356001600160a01b0316611986565b34801561094c57600080fd5b506104296119a1565b34801561096157600080fd5b50610440611a43565b34801561097657600080fd5b50610515611a49565b34801561098b57600080fd5b50610429600480360360208110156109a257600080fd5b5035611a59565b3480156109b557600080fd5b50610429600480360360208110156109cc57600080fd5b50356001600160a01b0316611b76565b3480156109e857600080fd5b50610440611ecf565b3480156109fd57600080fd5b50610553611ed5565b348015610a1257600080fd5b50610467611ee4565b348015610a2757600080fd5b5061042960048036036040811015610a3e57600080fd5b506001600160a01b0381351690602001351515611f45565b348015610a6257600080fd5b50610440611ff4565b348015610a7757600080fd5b50610440611ffa565b348015610a8c57600080fd5b5061042960048036036020811015610aa357600080fd5b503561203f565b348015610ab657600080fd5b5061051560048036036040811015610acd57600080fd5b506001600160a01b03813516906020013561211f565b348015610aef57600080fd5b5061044060048036036020811015610b0657600080fd5b50356001600160a01b031661218d565b348015610b2257600080fd5b5061051560048036036040811015610b3957600080fd5b506001600160a01b0381351690602001356121de565b348015610b5b57600080fd5b5061042960048036036020811015610b7257600080fd5b50356121f2565b348015610b8557600080fd5b5061044061226b565b348015610b9a57600080fd5b50610bc160048036036020811015610bb157600080fd5b50356001600160a01b0316612271565b604080516001600160a01b0390991689526020890197909752878701959095526060870193909352608086019190915260a085015260c084015260e083015251908190036101000190f35b348015610c1857600080fd5b5061051560048036036020811015610c2f57600080fd5b50356001600160a01b031661235a565b348015610c4b57600080fd5b5061042961236f565b348015610c6057600080fd5b506104406123d3565b348015610c7557600080fd5b5061042960048036036040811015610c8c57600080fd5b506001600160a01b03813516906020013515156123d9565b348015610cb057600080fd5b506104296124ef565b348015610cc557600080fd5b5061042961255c565b348015610cda57600080fd5b5061042960048036036040811015610cf157600080fd5b810190602081018135640100000000811115610d0c57600080fd5b820183602082011115610d1e57600080fd5b80359060200191846020830284011164010000000083111715610d4057600080fd5b91908080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525092955050505035151590506125c3565b348015610d8c57600080fd5b506104296126f8565b348015610da157600080fd5b5061044060048036036040811015610db857600080fd5b506001600160a01b038135811691602001351661275f565b348015610ddc57600080fd5b5061044061278a565b348015610df157600080fd5b50610440612790565b348015610e0657600080fd5b5061042960048036036020811015610e1d57600080fd5b50356127d5565b348015610e3057600080fd5b50610515612895565b348015610e4557600080fd5b50610bc160048036036020811015610e5c57600080fd5b50356128a5565b348015610e6f57600080fd5b5061042960048036036020811015610e8657600080fd5b50356001600160a01b031661290b565b348015610ea257600080fd5b50610440612a04565b610eb3612a0a565b6005546001600160a01b03908116911614610f03576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb4833981519152604482015290519081900360640190fd5b600e819055601054600f54610f309190610f2490849063ffffffff612a0e16565b9063ffffffff612a0e16565b60125550565b60115481565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610fc85780601f10610f9d57610100808354040283529160200191610fc8565b820191906000526020600020905b815481529060010190602001808311610fab57829003601f168201915b5050505050905090565b6000610fe6610fdf612a0a565b8484612a6f565b5060015b92915050565b600854600160a81b900460ff1681565b6006546001600160a01b031681565b60025490565b61101d612a0a565b6005546001600160a01b0390811691161461106d576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb4833981519152604482015290519081900360640190fd5b601480546001600160a01b0319166001600160a01b0392909216919091179055565b600061109c848484612b5b565b611112846110a8612a0a565b61110d85604051806060016040528060288152602001613e8c602891396001600160a01b038a166000908152600160205260408120906110e6612a0a565b6001600160a01b03168152602081019190915260400160002054919063ffffffff6132bf16565b612a6f565b5060019392505050565b6008546001600160a01b031681565b611133612a0a565b6005546001600160a01b03908116911614611183576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb4833981519152604482015290519081900360640190fd5b6008805460ff60a81b1916600160a81b179055565b6111a0612a0a565b6005546001600160a01b039081169116146111f0576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb4833981519152604482015290519081900360640190fd5b6008805460ff60a01b1916600160a01b179055565b600854604080516342d359d760e11b815290516000926001600160a01b0316916385a6b3ae916004808301926020929190829003018186803b15801561124a57600080fd5b505afa15801561125e573d6000803e3d6000fd5b505050506040513d602081101561127457600080fd5b5051905090565b601290565b6000610fe661128d612a0a565b8461110d856001600061129e612a0a565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff612a0e16565b60125481565b6112e2612a0a565b6005546001600160a01b03908116911614611332576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb4833981519152604482015290519081900360640190fd5b600c819055600d54600b546113529190610f24908463ffffffff612a0e16565b60115550565b6007546001600160a01b031681565b61136f612a0a565b6005546001600160a01b039081169116146113bf576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb4833981519152604482015290519081900360640190fd5b600f819055601054600e54610f309190610f24908463ffffffff612a0e16565b6113e7612a0a565b6005546001600160a01b03908116911614611437576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb4833981519152604482015290519081900360640190fd5b600d819055600c54600b54611352918391610f249163ffffffff612a0e16565b6008546040805163bc4c4b3760e01b815233600482015260006024820181905291516001600160a01b039093169263bc4c4b3792604480840193602093929083900390910190829087803b1580156114ae57600080fd5b505af11580156114c2573d6000803e3d6000fd5b505050506040513d60208110156114d857600080fd5b5050565b6114e4612a0a565b6005546001600160a01b03908116911614611534576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb4833981519152604482015290519081900360640190fd5b6010819055600f54600e54610f30918391610f249163ffffffff612a0e16565b6001600160a01b031660009081526016602052604090205460ff1690565b600b5481565b611580612a0a565b6005546001600160a01b039081169116146115d0576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb4833981519152604482015290519081900360640190fd5b601380546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b600854604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde916004808301926020929190829003018186803b15801561124a57600080fd5b611645612a0a565b6005546001600160a01b03908116911614611695576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb4833981519152604482015290519081900360640190fd5b6006546001600160a01b03828116911614156116e25760405162461bcd60e51b815260040180806020018281038252602f815260200180613d2f602f913960400191505060405180910390fd5b6006546040516001600160a01b03918216918316907f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e90600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b611747612a0a565b6005546001600160a01b03908116911614611797576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb4833981519152604482015290519081900360640190fd5b6008805460ff60b01b19169055565b600854604080516370a0823160e01b81526001600160a01b038481166004830152915160009392909216916370a0823191602480820192602092909190829003018186803b1580156117f757600080fd5b505afa15801561180b573d6000803e3d6000fd5b505050506040513d602081101561182157600080fd5b505192915050565b60105481565b60135460ff1681565b611840612a0a565b6005546001600160a01b03908116911614611890576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb4833981519152604482015290519081900360640190fd5b6008805460ff60a81b19169055565b600854604080516001624d3b8760e01b03198152600481018490529051600092839283926001600160a01b039092169163ffb2c4799160248082019260609290919082900301818787803b1580156118f657600080fd5b505af115801561190a573d6000803e3d6000fd5b505050506040513d606081101561192057600080fd5b5080516020808301516040938401518451848152928301829052828501819052606083018990529351929650945091925032916000917fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989181900360800190a350505050565b6001600160a01b031660009081526020819052604090205490565b6119a9612a0a565b6005546001600160a01b039081169116146119f9576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb4833981519152604482015290519081900360640190fd5b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b600c5481565b600854600160b01b900460ff1681565b611a61612a0a565b6005546001600160a01b03908116911614611ab1576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb4833981519152604482015290519081900360640190fd5b62030d408110158015611ac75750620f42408111155b611b025760405162461bcd60e51b8152600401808060200182810382526040815260200180613d5e6040913960400191505060405180910390fd5b601554811415611b435760405162461bcd60e51b8152600401808060200182810382526038815260200180613f886038913960400191505060405180910390fd5b60155460405182907f40d7e40e79af4e8e5a9b3c57030d8ea93f13d669c06d448c4d631d4ae7d23db790600090a3601555565b611b7e612a0a565b6005546001600160a01b03908116911614611bce576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb4833981519152604482015290519081900360640190fd5b6008546001600160a01b0382811691161415611c1b5760405162461bcd60e51b8152600401808060200182810382526039815260200180613ed46039913960400191505060405180910390fd5b6000819050306001600160a01b0316816001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b158015611c6357600080fd5b505afa158015611c77573d6000803e3d6000fd5b505050506040513d6020811015611c8d57600080fd5b50516001600160a01b031614611cd45760405162461bcd60e51b8152600401808060200182810382526053815260200180613dd46053913960600191505060405180910390fd5b6040805163031e79db60e41b81526001600160a01b0383166004820181905291516331e79db09160248082019260009290919082900301818387803b158015611d1c57600080fd5b505af1158015611d30573d6000803e3d6000fd5b50506040805163031e79db60e41b815230600482015290516001600160a01b03851693506331e79db09250602480830192600092919082900301818387803b158015611d7b57600080fd5b505af1158015611d8f573d6000803e3d6000fd5b50505050806001600160a01b03166331e79db0611daa611ed5565b6040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b03168152602001915050600060405180830381600087803b158015611df257600080fd5b505af1158015611e06573d6000803e3d6000fd5b50506006546040805163031e79db60e41b81526001600160a01b039283166004820152905191851693506331e79db0925060248082019260009290919082900301818387803b158015611e5857600080fd5b505af1158015611e6c573d6000803e3d6000fd5b50506008546040516001600160a01b03918216935090851691507f90c7d74461c613da5efa97d90740869367d74ab3aa5837aa4ae9a975f954b7a890600090a3600880546001600160a01b0319166001600160a01b039290921691909117905550565b600e5481565b6005546001600160a01b031690565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610fc85780601f10610f9d57610100808354040283529160200191610fc8565b611f4d612a0a565b6005546001600160a01b03908116911614611f9d576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb4833981519152604482015290519081900360640190fd5b6007546001600160a01b0383811691161415611fea5760405162461bcd60e51b8152600401808060200182810382526051815260200180613cb86051913960600191505060405180910390fd5b6114d88282613356565b60155481565b60085460408051631bc9e27b60e21b815290516000926001600160a01b031691636f2789ec916004808301926020929190829003018186803b15801561124a57600080fd5b612047612a0a565b6005546001600160a01b03908116911614612097576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb4833981519152604482015290519081900360640190fd5b6064600a5411156120d95760405162461bcd60e51b8152600401808060200182810382526032815260200180613f566032913960400191505060405180910390fd5b6000600a541161211a5760405162461bcd60e51b815260040180806020018281038252602f815260200180613fc0602f913960400191505060405180910390fd5b600a55565b6000610fe661212c612a0a565b8461110d85604051806060016040528060258152602001613fef6025913960016000612156612a0a565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff6132bf16565b600854604080516302a2e74960e61b81526001600160a01b0384811660048301529151600093929092169163a8b9d24091602480820192602092909190829003018186803b1580156117f757600080fd5b6000610fe66121eb612a0a565b8484612b5b565b6121fa612a0a565b6005546001600160a01b0390811691161461224a576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb4833981519152604482015290519081900360640190fd5b600b819055600d54600c546113529190610f2490849063ffffffff612a0e16565b600f5481565b600080600080600080600080600860009054906101000a90046001600160a01b03166001600160a01b031663fbcbc0f18a6040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b031681526020019150506101006040518083038186803b1580156122e957600080fd5b505afa1580156122fd573d6000803e3d6000fd5b505050506040513d61010081101561231457600080fd5b508051602082015160408301516060840151608085015160a086015160c087015160e090970151959e50939c50919a509850965094509092509050919395975091939597565b60176020526000908152604090205460ff1681565b612377612a0a565b6005546001600160a01b039081169116146123c7576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb4833981519152604482015290519081900360640190fd5b6013805460ff19169055565b600a5481565b6123e1612a0a565b6005546001600160a01b03908116911614612431576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb4833981519152604482015290519081900360640190fd5b6001600160a01b03821660009081526016602052604090205460ff161515811515141561248f5760405162461bcd60e51b8152600401808060200182810382526036815260200180613d9e6036913960400191505060405180910390fd5b6001600160a01b038216600081815260166020908152604091829020805460ff1916851515908117909155825190815291517f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79281900390910190a25050565b6124f7612a0a565b6005546001600160a01b03908116911614612547576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb4833981519152604482015290519081900360640190fd5b6008805460ff60b01b1916600160b01b179055565b612564612a0a565b6005546001600160a01b039081169116146125b4576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb4833981519152604482015290519081900360640190fd5b6008805460ff60a01b19169055565b6125cb612a0a565b6005546001600160a01b0390811691161461261b576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb4833981519152604482015290519081900360640190fd5b60005b825181101561267257816016600085848151811061263857fe5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905560010161261e565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b358282604051808060200183151515158152602001828103825284818151815260200191508051906020019060200280838360005b838110156126e05781810151838201526020016126c8565b50505050905001935050505060405180910390a15050565b612700612a0a565b6005546001600160a01b03908116911614612750576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb4833981519152604482015290519081900360640190fd5b6013805460ff19166001179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60095481565b6008546040805163039e107b60e61b815290516000926001600160a01b03169163e7841ec0916004808301926020929190829003018186803b15801561124a57600080fd5b6127dd612a0a565b6005546001600160a01b0390811691161461282d576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb4833981519152604482015290519081900360640190fd5b6008546040805163e98030c760e01b81526004810184905290516001600160a01b039092169163e98030c79160248082019260009290919082900301818387803b15801561287a57600080fd5b505af115801561288e573d6000803e3d6000fd5b5050505050565b600854600160a01b900460ff1681565b600080600080600080600080600860009054906101000a90046001600160a01b03166001600160a01b0316635183d6fd8a6040518263ffffffff1660e01b8152600401808281526020019150506101006040518083038186803b1580156122e957600080fd5b612913612a0a565b6005546001600160a01b03908116911614612963576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb4833981519152604482015290519081900360640190fd5b6001600160a01b0381166129a85760405162461bcd60e51b8152600401808060200182810382526026815260200180613c706026913960400191505060405180910390fd5b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b600d5481565b3390565b600082820183811015612a68576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b038316612ab45760405162461bcd60e51b8152600401808060200182810382526024815260200180613f326024913960400191505060405180910390fd5b6001600160a01b038216612af95760405162461bcd60e51b8152600401808060200182810382526022815260200180613c966022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316612ba05760405162461bcd60e51b8152600401808060200182810382526025815260200180613f0d6025913960400191505060405180910390fd5b6001600160a01b038216612be55760405162461bcd60e51b8152600401808060200182810382526023815260200180613c4d6023913960400191505060405180910390fd5b612bed611ed5565b6001600160a01b0316836001600160a01b031614612c145760135460ff16612c1457600080fd5b80612c2a57612c2583836000613484565b6132ba565b6000612c3530611986565b60095490915081108015908190612c565750600754600160a01b900460ff16155b8015612c7b57506001600160a01b03851660009081526017602052604090205460ff16155b8015612ca05750612c8a611ed5565b6001600160a01b0316856001600160a01b031614155b8015612cc55750612caf611ed5565b6001600160a01b0316846001600160a01b031614155b8015612cde57506007546001600160a01b038681169116145b8015612cf857506006546001600160a01b03858116911614155b15612d94576007805460ff60a01b1916600160a01b179055601254601054600091612d3a91612d2e90869063ffffffff6135eb16565b9063ffffffff61364416565b9050612d4581613686565b6000612d62601254612d2e600f54876135eb90919063ffffffff16565b9050612d6d81613798565b6000612d7830611986565b9050612d8381613850565b50506007805460ff60a01b19169055505b808015612dab5750600754600160a01b900460ff16155b8015612dd057506001600160a01b03851660009081526017602052604090205460ff16155b8015612df55750612ddf611ed5565b6001600160a01b0316856001600160a01b031614155b8015612e1a5750612e04611ed5565b6001600160a01b0316846001600160a01b031614155b8015612e3457506007546001600160a01b03868116911614155b15612f0057600a54600754612e6991606491612d2e9190612e5d906001600160a01b0316611986565b9063ffffffff6135eb16565b831115612e7557600080fd5b6007805460ff60a01b1916600160a01b179055601154600d54600091612ea691612d2e90869063ffffffff6135eb16565b9050612eb181613686565b6000612ece601154612d2e600c54876135eb90919063ffffffff16565b9050612ed981613798565b6000612ee430611986565b9050612eef81613850565b50506007805460ff60a01b19169055505b6007546001600160a01b03861660009081526016602052604090205460ff600160a01b909204821615911680612f4e57506001600160a01b03851660009081526016602052604090205460ff165b15612f57575060005b600854600160a01b900460ff16151560011415612f72575060005b80156130bf576007546001600160a01b038781169116148015612fa357506006546001600160a01b03868116911614155b1561303657600854600160a81b900460ff1615613031576000612fd66064612d2e601254886135eb90919063ffffffff16565b6001600160a01b03871660009081526017602052604090205490915060ff1615613012576130106064612d2e87600163ffffffff6135eb16565b015b613022858263ffffffff61391a16565b945061302f873083613484565b505b6130bf565b600854600160b01b900460ff16156130bf5760006130646064612d2e601154886135eb90919063ffffffff16565b6001600160a01b03871660009081526017602052604090205490915060ff16156130a05761309e6064612d2e87600163ffffffff6135eb16565b015b6130b0858263ffffffff61391a16565b94506130bd873083613484565b505b6130ca868686613484565b6008546001600160a01b031663e30443bc876130e581611986565b6040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050600060405180830381600087803b15801561313457600080fd5b505af1925050508015613145575060015b506008546001600160a01b031663e30443bc8661316181611986565b6040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050600060405180830381600087803b1580156131b057600080fd5b505af19250505080156131c1575060015b50600754600160a01b900460ff166132b657601554600854604080516001624d3b8760e01b031981526004810184905290516001600160a01b039092169163ffb2c479916024808201926060929091908290030181600087803b15801561322757600080fd5b505af192505050801561325b57506040513d606081101561324757600080fd5b508051602082015160409092015190919060015b613264576132b4565b604080518481526020810184905280820183905260608101869052905132916001917fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989181900360800190a35050505b505b5050505b505050565b6000818484111561334e5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156133135781810151838201526020016132fb565b50505050905090810190601f1680156133405780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b03821660009081526017602052604090205460ff16151581151514156133b45760405162461bcd60e51b8152600401808060200182810382526044815260200180613e486044913960600191505060405180910390fd5b6001600160a01b0382166000908152601760205260409020805460ff19168215801591909117909155613448576008546040805163031e79db60e41b81526001600160a01b038581166004830152915191909216916331e79db091602480830192600092919082900301818387803b15801561342f57600080fd5b505af1158015613443573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b0383166134c95760405162461bcd60e51b8152600401808060200182810382526025815260200180613f0d6025913960400191505060405180910390fd5b6001600160a01b03821661350e5760405162461bcd60e51b8152600401808060200182810382526023815260200180613c4d6023913960400191505060405180910390fd5b6135198383836132ba565b61355c81604051806060016040528060268152602001613d09602691396001600160a01b038616600090815260208190526040902054919063ffffffff6132bf16565b6001600160a01b038085166000908152602081905260408082209390935590841681522054613591908263ffffffff612a0e16565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000826135fa57506000610fea565b8282028284828161360757fe5b0414612a685760405162461bcd60e51b8152600401808060200182810382526021815260200180613e276021913960400191505060405180910390fd5b6000612a6883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061395c565b6007805460ff60a01b1916600160a01b179055476136a3826139c1565b60006136b5478363ffffffff61391a16565b905060006136ca82600363ffffffff61364416565b60135460405191925061010090046001600160a01b0316906108fc8315029083906000818181858888f1935050505015801561370a573d6000803e3d6000fd5b506013546040516101009091046001600160a01b0316906108fc8315029083906000818181858888f19350505050158015613749573d6000803e3d6000fd5b506014546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015613784573d6000803e3d6000fd5b50506007805460ff60a01b19169055505050565b6007805460ff60a01b1916600160a01b17905560006137be82600263ffffffff61364416565b905060006137d2838363ffffffff61391a16565b9050476137de836139c1565b60006137f0478363ffffffff61391a16565b90506137fc8382613b67565b604080518581526020810183905280820185905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a150506007805460ff60a01b19169055505050565b6007805460ff60a01b1916600160a01b17905561386c816139c1565b60085460405147916000916001600160a01b039091169083908381818185875af1925050503d80600081146138bd576040519150601f19603f3d011682016040523d82523d6000602084013e6138c2565b606091505b50509050801561390857604080518481526020810184905281517f80195cc573b02cc48460cbca6e6e4cc85ddb91959d946e1c3025ea3d87942dc3929181900390910190a15b50506007805460ff60a01b1916905550565b6000612a6883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506132bf565b600081836139ab5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156133135781810151838201526020016132fb565b5060008385816139b757fe5b0495945050505050565b604080516002808252606080830184529260208301908038833901905050905030816000815181106139ef57fe5b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015613a4357600080fd5b505afa158015613a57573d6000803e3d6000fd5b505050506040513d6020811015613a6d57600080fd5b5051815182906001908110613a7e57fe5b6001600160a01b039283166020918202929092010152600654613aa49130911684612a6f565b60065460405163791ac94760e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b039097169663791ac947968a968a9594939092909160c40190602080880191028083838b5b83811015613b2a578181015183820152602001613b12565b505050509050019650505050505050600060405180830381600087803b158015613b5357600080fd5b505af11580156132b6573d6000803e3d6000fd5b600654613b7f9030906001600160a01b031684612a6f565b6006546001600160a01b031663f305d719823085600080613b9e611ed5565b426040518863ffffffff1660e01b815260040180876001600160a01b03166001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b03166001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b158015613c1b57600080fd5b505af1158015613c2f573d6000803e3d6000fd5b50505050506040513d6060811015613c4657600080fd5b5050505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734d6174696356657273653a205468652050616e63616b655377617020706169722063616e6e6f742062652072656d6f7665642066726f6d206175746f6d617465644d61726b65744d616b6572506169727345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654d6174696356657273653a2054686520726f7574657220616c726561647920686173207468617420616464726573734d6174696356657273653a20676173466f7250726f63657373696e67206d757374206265206265747765656e203230302c30303020616e64203530302c3030304d6174696356657273653a204163636f756e7420697320616c7265616479207468652076616c7565206f6620276578636c75646564274d4154494356455253453a20546865206e6577206469766964656e6420747261636b6572206d757374206265206f776e656420627920746865204d61746963566572736520746f6b656e20636f6e7472616374536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774d6174696356657273653a204175746f6d61746564206d61726b6574206d616b6572207061697220697320616c72656164792073657420746f20746861742076616c756545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65724d4154494356455253453a20546865206469766964656e6420747261636b657220616c7265616479206861732074686174206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573736d617820707269636520696d70616374206d757374206265206c657373207468616e206f7220657175616c20746f203130304d6174696356657273653a2043616e6e6f742075706461746520676173466f7250726f63657373696e6720746f2073616d652076616c756563616e742070726576656e742073656c6c732c2063686f6f73652076616c75652067726561746572207468616e203045524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220b37e93b9261f4ee357e9dd0af1265a5f4ec81a7565926513b8726df3f2e41d7664736f6c63430006020033
Deployed Bytecode Sourcemap
44879:18385:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55243:201;;8:9:-1;5:2;;;30:1;27;20:12;5:2;55243:201:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;55243:201:0;;:::i;:::-;;45624:98;;8:9:-1;5:2;;;30:1;27;20:12;5:2;45624:98:0;;;:::i;:::-;;;;;;;;;;;;;;;;24682:100;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24682:100:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8::-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;24682:100:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26849:169;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26849:169:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;26849:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;45178:25;;8:9:-1;5:2;;;30:1;27;20:12;5:2;45178:25:0;;;:::i;44960:41::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;44960:41:0;;;:::i;:::-;;;;-1:-1:-1;;;;;44960:41:0;;;;;;;;;;;;;;25802:108;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25802:108:0;;;:::i;54309:109::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;54309:109:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;54309:109:0;-1:-1:-1;;;;;54309:109:0;;:::i;27500:355::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27500:355:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;27500:355:0;;;;;;;;;;;;;;;;;:::i;45082:48::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;45082:48:0;;;:::i;56350:77::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;56350:77:0;;;:::i;54426:81::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;54426:81:0;;;:::i;52249:141::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;52249:141:0;;;:::i;25644:93::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25644:93:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28264:218;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28264:218:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;28264:218:0;;;;;;;;:::i;45729:94::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;45729:94:0;;;:::i;54821:201::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;54821:201:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;54821:201:0;;:::i;45008:28::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;45008:28:0;;;:::i;55452:195::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;55452:195:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;55452:195:0;;:::i;55030:203::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;55030:203:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;55030:203:0;;:::i;53785:94::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;53785:94:0;;;:::i;55655:197::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;55655:197:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;55655:197:0;;:::i;52399:125::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;52399:125:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;52399:125:0;-1:-1:-1;;;;;52399:125:0;;:::i;45345:39::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;45345:39:0;;;:::i;54176:121::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;54176:121:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;54176:121:0;-1:-1:-1;;;;;54176:121:0;;:::i;54026:141::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;54026:141:0;;;:::i;49916:319::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;49916:319:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;49916:319:0;-1:-1:-1;;;;;49916:319:0;;:::i;56620:81::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;56620:81:0;;;:::i;52693:139::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;52693:139:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;52693:139:0;-1:-1:-1;;;;;52693:139:0;;:::i;45576:35::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;45576:35:0;;;:::i;45833:31::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;45833:31:0;;;:::i;56439:79::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;56439:79:0;;;:::i;53505:271::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;53505:271:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;53505:271:0;;:::i;25973:127::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25973:127:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;25973:127:0;-1:-1:-1;;;;;25973:127:0;;:::i;2080:148::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2080:148:0;;;:::i;45391:36::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;45391:36:0;;;:::i;45210:26::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;45210:26:0;;;:::i;51573:417::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;51573:417:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;51573:417:0;;:::i;49042:865::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;49042:865:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;49042:865:0;-1:-1:-1;;;;;49042:865:0;;:::i;45485:38::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;45485:38:0;;;:::i;1438:79::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1438:79:0;;;:::i;24901:104::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24901:104:0;;;:::i;50871:269::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;50871:269:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;50871:269:0;;;;;;;;;;:::i;46028:40::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;46028:40:0;;;:::i;52132:108::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;52132:108:0;;;:::i;55866:281::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;55866:281:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;55866:281:0;;:::i;28985:269::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28985:269:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;28985:269:0;;;;;;;;:::i;52533:151::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;52533:151:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;52533:151:0;-1:-1:-1;;;;;52533:151:0;;:::i;26313:175::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26313:175:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;26313:175:0;;;;;;;;:::i;54606:207::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;54606:207:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;54606:207:0;;:::i;45534:35::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;45534:35:0;;;:::i;52841:318::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;52841:318:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;52841:318:0;-1:-1:-1;;;;;52841:318:0;;:::i;:::-;;;;-1:-1:-1;;;;;52841:318:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46290:58;;8:9:-1;5:2;;;30:1;27;20:12;5:2;46290:58:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;46290:58:0;-1:-1:-1;;;;;46290:58:0;;:::i;56255:83::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;56255:83:0;;;:::i;45304:31::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;45304:31:0;;;:::i;50244:303::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;50244:303:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;50244:303:0;;;;;;;;;;:::i;56526:79::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;56526:79:0;;;:::i;54515:83::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;54515:83:0;;;:::i;50556:303::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;50556:303:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;50556:303:0;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;50556:303:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;50556:303:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;50556:303:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;50556:303:0;;-1:-1:-1;;;;50556:303:0;;;;-1:-1:-1;50556:303:0;:::i;56162:81::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;56162:81:0;;;:::i;26551:151::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26551:151:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;26551:151:0;;;;;;;;;;:::i;45243:54::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;45243:54:0;;;:::i;53888:129::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;53888:129:0;;;:::i;51999:124::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;51999:124:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;51999:124:0;;:::i;45143:28::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;45143:28:0;;;:::i;53168:328::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;53168:328:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;53168:328:0;;:::i;2383:244::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2383:244:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;2383:244:0;-1:-1:-1;;;;;2383:244:0;;:::i;45434:36::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;45434:36:0;;;:::i;55243:201::-;1660:12;:10;:12::i;:::-;1650:6;;-1:-1:-1;;;;;1650:6:0;;;:22;;;1642:67;;;;;-1:-1:-1;;;1642:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1642:67:0;;;;;;;;;;;;;;;55319:19:::1;:27:::0;;;55419:16:::1;::::0;55397::::1;::::0;55373:63:::1;::::0;55419:16;55373:41:::1;::::0;55341:5;;55373:41:::1;:23;:41;:::i;:::-;:45:::0;:63:::1;:45;:63;:::i;:::-;55357:13;:79:::0;-1:-1:-1;55243:201:0:o;45624:98::-;;;;:::o;24682:100::-;24769:5;24762:12;;;;;;;;-1:-1:-1;;24762:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24736:13;;24762:12;;24769:5;;24762:12;;24769:5;24762:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24682:100;:::o;26849:169::-;26932:4;26949:39;26958:12;:10;:12::i;:::-;26972:7;26981:6;26949:8;:39::i;:::-;-1:-1:-1;27006:4:0;26849:169;;;;;:::o;45178:25::-;;;-1:-1:-1;;;45178:25:0;;;;;:::o;44960:41::-;;;-1:-1:-1;;;;;44960:41:0;;:::o;25802:108::-;25890:12;;25802:108;:::o;54309:109::-;1660:12;:10;:12::i;:::-;1650:6;;-1:-1:-1;;;;;1650:6:0;;;:22;;;1642:67;;;;;-1:-1:-1;;;1642:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1642:67:0;;;;;;;;;;;;;;;54379:10:::1;:31:::0;;-1:-1:-1;;;;;;54379:31:0::1;-1:-1:-1::0;;;;;54379:31:0;;;::::1;::::0;;;::::1;::::0;;54309:109::o;27500:355::-;27640:4;27657:36;27667:6;27675:9;27686:6;27657:9;:36::i;:::-;27704:121;27713:6;27721:12;:10;:12::i;:::-;27735:89;27773:6;27735:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27735:19:0;;;;;;:11;:19;;;;;;27755:12;:10;:12::i;:::-;-1:-1:-1;;;;;27735:33:0;;;;;;;;;;;;-1:-1:-1;27735:33:0;;;:89;;:37;:89;:::i;:::-;27704:8;:121::i;:::-;-1:-1:-1;27843:4:0;27500:355;;;;;:::o;45082:48::-;;;-1:-1:-1;;;;;45082:48:0;;:::o;56350:77::-;1660:12;:10;:12::i;:::-;1650:6;;-1:-1:-1;;;;;1650:6:0;;;:22;;;1642:67;;;;;-1:-1:-1;;;1642:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1642:67:0;;;;;;;;;;;;;;;56404:6:::1;:13:::0;;-1:-1:-1;;;;56404:13:0::1;-1:-1:-1::0;;;56404:13:0::1;::::0;;56350:77::o;54426:81::-;1660:12;:10;:12::i;:::-;1650:6;;-1:-1:-1;;;;;1650:6:0;;;:22;;;1642:67;;;;;-1:-1:-1;;;1642:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1642:67:0;;;;;;;;;;;;;;;54482:8:::1;:15:::0;;-1:-1:-1;;;;54482:15:0::1;-1:-1:-1::0;;;54482:15:0::1;::::0;;54426:81::o;52249:141::-;52339:15;;:43;;;-1:-1:-1;;;52339:43:0;;;;52312:7;;-1:-1:-1;;;;;52339:15:0;;:41;;:43;;;;;;;;;;;;;;:15;:43;;;5:2:-1;;;;30:1;27;20:12;5:2;52339:43:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;52339:43:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;52339:43:0;;-1:-1:-1;52249:141:0;:::o;25644:93::-;25727:2;25644:93;:::o;28264:218::-;28352:4;28369:83;28378:12;:10;:12::i;:::-;28392:7;28401:50;28440:10;28401:11;:25;28413:12;:10;:12::i;:::-;-1:-1:-1;;;;;28401:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;28401:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;45729:94::-;;;;:::o;54821:201::-;1660:12;:10;:12::i;:::-;1650:6;;-1:-1:-1;;;;;1650:6:0;;;:22;;;1642:67;;;;;-1:-1:-1;;;1642:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1642:67:0;;;;;;;;;;;;;;;54895:17:::1;:25:::0;;;54996:17:::1;::::0;54948:20:::1;::::0;:66:::1;::::0;54996:17;54948:43:::1;::::0;54915:5;54948:43:::1;:24;:43;:::i;:66::-;54931:14;:83:::0;-1:-1:-1;54821:201:0:o;45008:28::-;;;-1:-1:-1;;;;;45008:28:0;;:::o;55452:195::-;1660:12;:10;:12::i;:::-;1650:6;;-1:-1:-1;;;;;1650:6:0;;;:22;;;1642:67;;;;;-1:-1:-1;;;1642:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1642:67:0;;;;;;;;;;;;;;;55525:16:::1;:24:::0;;;55622:16:::1;::::0;55576:19:::1;::::0;:63:::1;::::0;55622:16;55576:41:::1;::::0;55544:5;55576:41:::1;:23;:41;:::i;55030:203::-:0;1660:12;:10;:12::i;:::-;1650:6;;-1:-1:-1;;;;;1650:6:0;;;:22;;;1642:67;;;;;-1:-1:-1;;;1642:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1642:67:0;;;;;;;;;;;;;;;55104:17:::1;:25:::0;;;55182:17:::1;::::0;55157:20:::1;::::0;:66:::1;::::0;55124:5;;55157:43:::1;::::0;::::1;:24;:43;:::i;53785:94::-:0;53822:15;;:49;;;-1:-1:-1;;;53822:49:0;;53853:10;53822:49;;;;:15;:49;;;;;;;;-1:-1:-1;;;;;53822:15:0;;;;:30;;:49;;;;;;;;;;;;;;;;;;:15;:49;;;5:2:-1;;;;30:1;27;20:12;5:2;53822:49:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;53822:49:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;53785:94:0:o;55655:197::-;1660:12;:10;:12::i;:::-;1650:6;;-1:-1:-1;;;;;1650:6:0;;;:22;;;1642:67;;;;;-1:-1:-1;;;1642:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1642:67:0;;;;;;;;;;;;;;;55728:16:::1;:24:::0;;;55803:16:::1;::::0;55779:19:::1;::::0;:63:::1;::::0;55747:5;;55779:41:::1;::::0;::::1;:23;:41;:::i;52399:125::-:0;-1:-1:-1;;;;;52488:28:0;52464:4;52488:28;;;:19;:28;;;;;;;;;52399:125::o;45345:39::-;;;;:::o;54176:121::-;1660:12;:10;:12::i;:::-;1650:6;;-1:-1:-1;;;;;1650:6:0;;;:22;;;1642:67;;;;;-1:-1:-1;;;1642:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1642:67:0;;;;;;;;;;;;;;;54252:16:::1;:37:::0;;-1:-1:-1;;;;;54252:37:0;;::::1;;;-1:-1:-1::0;;;;;;54252:37:0;;::::1;::::0;;;::::1;::::0;;54176:121::o;54026:141::-;54118:15;;:41;;;-1:-1:-1;;;54118:41:0;;;;54091:7;;-1:-1:-1;;;;;54118:15:0;;:39;;:41;;;;;;;;;;;;;;:15;:41;;;5:2:-1;;;;30:1;27;20:12;49916:319:0;1660:12;:10;:12::i;:::-;1650:6;;-1:-1:-1;;;;;1650:6:0;;;:22;;;1642:67;;;;;-1:-1:-1;;;1642:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1642:67:0;;;;;;;;;;;;;;;50025:15:::1;::::0;-1:-1:-1;;;;;50003:38:0;;::::1;50025:15:::0;::::1;50003:38;;49995:98;;;;-1:-1:-1::0;;;49995:98:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50151:15;::::0;50109:59:::1;::::0;-1:-1:-1;;;;;50151:15:0;;::::1;::::0;50109:59;::::1;::::0;::::1;::::0;50151:15:::1;::::0;50109:59:::1;50179:15;:48:::0;;-1:-1:-1;;;;;;50179:48:0::1;-1:-1:-1::0;;;;;50179:48:0;;;::::1;::::0;;;::::1;::::0;;49916:319::o;56620:81::-;1660:12;:10;:12::i;:::-;1650:6;;-1:-1:-1;;;;;1650:6:0;;;:22;;;1642:67;;;;;-1:-1:-1;;;1642:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1642:67:0;;;;;;;;;;;;;;;56676:7:::1;:15:::0;;-1:-1:-1;;;;56676:15:0::1;::::0;;56620:81::o;52693:139::-;52790:15;;:34;;;-1:-1:-1;;;52790:34:0;;-1:-1:-1;;;;;52790:34:0;;;;;;;;;52763:7;;52790:15;;;;;:25;;:34;;;;;;;;;;;;;;;:15;:34;;;5:2:-1;;;;30:1;27;20:12;5:2;52790:34:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;52790:34:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;52790:34:0;;52693:139;-1:-1:-1;;52693:139:0:o;45576:35::-;;;;:::o;45833:31::-;;;;;;:::o;56439:79::-;1660:12;:10;:12::i;:::-;1650:6;;-1:-1:-1;;;;;1650:6:0;;;:22;;;1642:67;;;;;-1:-1:-1;;;1642:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1642:67:0;;;;;;;;;;;;;;;56494:6:::1;:14:::0;;-1:-1:-1;;;;56494:14:0::1;::::0;;56439:79::o;53505:271::-;53637:15;;:28;;;-1:-1:-1;;;;;;53637:28:0;;;;;;;;;;53571:18;;;;;;-1:-1:-1;;;;;53637:15:0;;;;:23;;:28;;;;;;;;;;;;;;;53571:18;53637:15;:28;;;5:2:-1;;;;30:1;27;20:12;5:2;53637:28:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;53637:28:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;53637:28:0;;;;;;;;;;;;53681:87;;;;;;;;;;;;;;;;;53637:28;53681:87;;;;;;;53637:28;;-1:-1:-1;53637:28:0;-1:-1:-1;53637:28:0;;-1:-1:-1;53758:9:0;;53746:5;;53681:87;;;;;;;;;53505:271;;;;:::o;25973:127::-;-1:-1:-1;;;;;26074:18:0;26047:7;26074:18;;;;;;;;;;;;25973:127::o;2080:148::-;1660:12;:10;:12::i;:::-;1650:6;;-1:-1:-1;;;;;1650:6:0;;;:22;;;1642:67;;;;;-1:-1:-1;;;1642:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1642:67:0;;;;;;;;;;;;;;;2171:6:::1;::::0;2150:40:::1;::::0;2187:1:::1;::::0;-1:-1:-1;;;;;2171:6:0::1;::::0;2150:40:::1;::::0;2187:1;;2150:40:::1;2201:6;:19:::0;;-1:-1:-1;;;;;;2201:19:0::1;::::0;;2080:148::o;45391:36::-;;;;:::o;45210:26::-;;;-1:-1:-1;;;45210:26:0;;;;;:::o;51573:417::-;1660:12;:10;:12::i;:::-;1650:6;;-1:-1:-1;;;;;1650:6:0;;;:22;;;1642:67;;;;;-1:-1:-1;;;1642:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1642:67:0;;;;;;;;;;;;;;;51671:6:::1;51659:8;:18;;:41;;;;;51693:7;51681:8;:19;;51659:41;51651:118;;;;-1:-1:-1::0;;;51651:118:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51800:16;;51788:8;:28;;51780:97;;;;-1:-1:-1::0;;;51780:97:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51927:16;::::0;51893:51:::1;::::0;51917:8;;51893:51:::1;::::0;;;::::1;51955:16;:27:::0;51573:417::o;49042:865::-;1660:12;:10;:12::i;:::-;1650:6;;-1:-1:-1;;;;;1650:6:0;;;:22;;;1642:67;;;;;-1:-1:-1;;;1642:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1642:67:0;;;;;;;;;;;;;;;49151:15:::1;::::0;-1:-1:-1;;;;;49129:38:0;;::::1;49151:15:::0;::::1;49129:38;;49121:108;;;;-1:-1:-1::0;;;49121:108:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49243:44;49324:10;49243:93;;49396:4;-1:-1:-1::0;;;;;49358:43:0::1;:18;-1:-1:-1::0;;;;;49358:24:0::1;;:26;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27::::0;20:12:::1;5:2;49358:26:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;49358:26:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26::::0;19:12:::1;2:2;-1:-1:::0;49358:26:0;-1:-1:-1;;;;;49358:43:0::1;;49350:139;;;;-1:-1:-1::0;;;49350:139:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49503:68;::::0;;-1:-1:-1;;;49503:68:0;;-1:-1:-1;;;;;49503:39:0;::::1;:68;::::0;::::1;::::0;;;;;:39:::1;::::0;:68;;;;;-1:-1:-1;;49503:68:0;;;;;;;;-1:-1:-1;49503:39:0;:68;::::1;;5:2:-1::0;::::1;;;30:1;27::::0;20:12:::1;5:2;49503:68:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;-1:-1:::0;;49582:54:0::1;::::0;;-1:-1:-1;;;49582:54:0;;49630:4:::1;49582:54;::::0;::::1;::::0;;;-1:-1:-1;;;;;49582:39:0;::::1;::::0;-1:-1:-1;49582:39:0::1;::::0;-1:-1:-1;49582:54:0;;;;;-1:-1:-1;;49582:54:0;;;;;;;-1:-1:-1;49582:39:0;:54;::::1;;5:2:-1::0;::::1;;;30:1;27::::0;20:12:::1;5:2;49582:54:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;49582:54:0;;;;49647:18;-1:-1:-1::0;;;;;49647:39:0::1;;49687:7;:5;:7::i;:::-;49647:48;;;;;;;;;;;;;-1:-1:-1::0;;;;;49647:48:0::1;-1:-1:-1::0;;;;;49647:48:0::1;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27::::0;20:12:::1;5:2;49647:48:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;-1:-1:::0;;49754:15:0::1;::::0;49706:65:::1;::::0;;-1:-1:-1;;;49706:65:0;;-1:-1:-1;;;;;49754:15:0;;::::1;49706:65;::::0;::::1;::::0;;;:39;;::::1;::::0;-1:-1:-1;49706:39:0::1;::::0;-1:-1:-1;49706:65:0;;;;;49754:15:::1;::::0;49706:65;;;;;;;;49754:15;49706:39;:65;::::1;;5:2:-1::0;::::1;;;30:1;27::::0;20:12:::1;5:2;49706:65:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;-1:-1:::0;;49832:15:0::1;::::0;49790:59:::1;::::0;-1:-1:-1;;;;;49832:15:0;;::::1;::::0;-1:-1:-1;49790:59:0;;::::1;::::0;-1:-1:-1;49790:59:0::1;::::0;49832:15:::1;::::0;49790:59:::1;49863:15;:36:::0;;-1:-1:-1;;;;;;49863:36:0::1;-1:-1:-1::0;;;;;49863:36:0;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;49042:865:0:o;45485:38::-;;;;:::o;1438:79::-;1503:6;;-1:-1:-1;;;;;1503:6:0;1438:79;:::o;24901:104::-;24990:7;24983:14;;;;;;;;-1:-1:-1;;24983:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24957:13;;24983:14;;24990:7;;24983:14;;24990:7;24983:14;;;;;;;;;;;;;;;;;;;;;;;;50871:269;1660:12;:10;:12::i;:::-;1650:6;;-1:-1:-1;;;;;1650:6:0;;;:22;;;1642:67;;;;;-1:-1:-1;;;1642:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1642:67:0;;;;;;;;;;;;;;;50978:13:::1;::::0;-1:-1:-1;;;;;50970:21:0;;::::1;50978:13:::0;::::1;50970:21;;50962:115;;;;-1:-1:-1::0;;;50962:115:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51091:41;51120:4;51126:5;51091:28;:41::i;46028:40::-:0;;;;:::o;52132:108::-;52205:15;;:27;;;-1:-1:-1;;;52205:27:0;;;;52178:7;;-1:-1:-1;;;;;52205:15:0;;:25;;:27;;;;;;;;;;;;;;:15;:27;;;5:2:-1;;;;30:1;27;20:12;55866:281:0;1660:12;:10;:12::i;:::-;1650:6;;-1:-1:-1;;;;;1650:6:0;;;:22;;;1642:67;;;;;-1:-1:-1;;;1642:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1642:67:0;;;;;;;;;;;;;;;55959:3:::1;55943:12;;:19;;55935:82;;;;-1:-1:-1::0;;;55935:82:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56051:1;56036:12;;:16;56028:76;;;;-1:-1:-1::0;;;56028:76:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56123:12;:20:::0;55866:281::o;28985:269::-;29078:4;29095:129;29104:12;:10;:12::i;:::-;29118:7;29127:96;29166:15;29127:96;;;;;;;;;;;;;;;;;:11;:25;29139:12;:10;:12::i;:::-;-1:-1:-1;;;;;29127:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;29127:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;52533:151::-;52629:15;;:47;;;-1:-1:-1;;;52629:47:0;;-1:-1:-1;;;;;52629:47:0;;;;;;;;;52602:7;;52629:15;;;;;:38;;:47;;;;;;;;;;;;;;;:15;:47;;;5:2:-1;;;;30:1;27;20:12;26313:175:0;26399:4;26416:42;26426:12;:10;:12::i;:::-;26440:9;26451:6;26416:9;:42::i;54606:207::-;1660:12;:10;:12::i;:::-;1650:6;;-1:-1:-1;;;;;1650:6:0;;;:22;;;1642:67;;;;;-1:-1:-1;;;1642:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1642:67:0;;;;;;;;;;;;;;;54683:20:::1;:28:::0;;;54787:17:::1;::::0;54764::::1;::::0;54739:66:::1;::::0;54787:17;54739:43:::1;::::0;54706:5;;54739:43:::1;:24;:43;:::i;45534:35::-:0;;;;:::o;52841:318::-;52937:7;52959:6;52980;53001:7;53023;53045;53067;53089;53116:15;;;;;;;;;-1:-1:-1;;;;;53116:15:0;-1:-1:-1;;;;;53116:26:0;;53143:7;53116:35;;;;;;;;;;;;;-1:-1:-1;;;;;53116:35:0;-1:-1:-1;;;;;53116:35:0;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;53116:35:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;53116:35:0;;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;53116:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53116:35:0;;-1:-1:-1;53116:35:0;;-1:-1:-1;53116:35:0;-1:-1:-1;53116:35:0;-1:-1:-1;53116:35:0;-1:-1:-1;53116:35:0;;-1:-1:-1;53116:35:0;-1:-1:-1;52841:318:0;;;;;;;;;:::o;46290:58::-;;;;;;;;;;;;;;;:::o;56255:83::-;1660:12;:10;:12::i;:::-;1650:6;;-1:-1:-1;;;;;1650:6:0;;;:22;;;1642:67;;;;;-1:-1:-1;;;1642:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1642:67:0;;;;;;;;;;;;;;;56311:11:::1;:19:::0;;-1:-1:-1;;56311:19:0::1;::::0;;56255:83::o;45304:31::-;;;;:::o;50244:303::-;1660:12;:10;:12::i;:::-;1650:6;;-1:-1:-1;;;;;1650:6:0;;;:22;;;1642:67;;;;;-1:-1:-1;;;1642:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1642:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;50337:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;::::1;;:40;;::::0;::::1;;;;50329:107;;;;-1:-1:-1::0;;;50329:107:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;50447:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;50447:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;50505:34;;;;;;;::::1;::::0;;;;;;;;::::1;50244:303:::0;;:::o;56526:79::-;1660:12;:10;:12::i;:::-;1650:6;;-1:-1:-1;;;;;1650:6:0;;;:22;;;1642:67;;;;;-1:-1:-1;;;1642:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1642:67:0;;;;;;;;;;;;;;;56581:7:::1;:14:::0;;-1:-1:-1;;;;56581:14:0::1;-1:-1:-1::0;;;56581:14:0::1;::::0;;56526:79::o;54515:83::-;1660:12;:10;:12::i;:::-;1650:6;;-1:-1:-1;;;;;1650:6:0;;;:22;;;1642:67;;;;;-1:-1:-1;;;1642:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1642:67:0;;;;;;;;;;;;;;;54572:8:::1;:16:::0;;-1:-1:-1;;;;54572:16:0::1;::::0;;54515:83::o;50556:303::-;1660:12;:10;:12::i;:::-;1650:6;;-1:-1:-1;;;;;1650:6:0;;;:22;;;1642:67;;;;;-1:-1:-1;;;1642:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1642:67:0;;;;;;;;;;;;;;;50671:9:::1;50667:115;50690:8;:15;50686:1;:19;50667:115;;;50762:8;50727:19;:32;50747:8;50756:1;50747:11;;;;;;;;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;50727:32:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;50727:32:0;:43;;-1:-1:-1;;50727:43:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;50707:3:0::1;50667:115;;;;50800:51;50832:8;50842;50800:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11:::0;;::::1;84:18:::0;71:11;;::::1;64:39:::0;52:2:::1;45:10;8:100;;;12:14;50800:51:0;;;;;;;;;;;;;;;;;;50556:303:::0;;:::o;56162:81::-;1660:12;:10;:12::i;:::-;1650:6;;-1:-1:-1;;;;;1650:6:0;;;:22;;;1642:67;;;;;-1:-1:-1;;;1642:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1642:67:0;;;;;;;;;;;;;;;56217:11:::1;:18:::0;;-1:-1:-1;;56217:18:0::1;56231:4;56217:18;::::0;;56162:81::o;26551:151::-;-1:-1:-1;;;;;26667:18:0;;;26640:7;26667:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;26551:151::o;45243:54::-;;;;:::o;53888:129::-;53970:15;;:39;;;-1:-1:-1;;;53970:39:0;;;;53943:7;;-1:-1:-1;;;;;53970:15:0;;:37;;:39;;;;;;;;;;;;;;:15;:39;;;5:2:-1;;;;30:1;27;20:12;51999:124:0;1660:12;:10;:12::i;:::-;1650:6;;-1:-1:-1;;;;;1650:6:0;;;:22;;;1642:67;;;;;-1:-1:-1;;;1642:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1642:67:0;;;;;;;;;;;;;;;52073:15:::1;::::0;:42:::1;::::0;;-1:-1:-1;;;52073:42:0;;::::1;::::0;::::1;::::0;;;;;-1:-1:-1;;;;;52073:15:0;;::::1;::::0;:31:::1;::::0;:42;;;;;:15:::1;::::0;:42;;;;;;;;:15;;:42;::::1;;5:2:-1::0;::::1;;;30:1;27::::0;20:12:::1;5:2;52073:42:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;52073:42:0;;;;51999:124:::0;:::o;45143:28::-;;;-1:-1:-1;;;45143:28:0;;;;;:::o;53168:328::-;53269:7;53291:6;53312;53333:7;53355;53377;53399;53421;53448:15;;;;;;;;;-1:-1:-1;;;;;53448:15:0;-1:-1:-1;;;;;53448:33:0;;53482:5;53448:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;2383:244:0;1660:12;:10;:12::i;:::-;1650:6;;-1:-1:-1;;;;;1650:6:0;;;:22;;;1642:67;;;;;-1:-1:-1;;;1642:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1642:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;2472:22:0;::::1;2464:73;;;;-1:-1:-1::0;;;2464:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2574:6;::::0;2553:38:::1;::::0;-1:-1:-1;;;;;2553:38:0;;::::1;::::0;2574:6:::1;::::0;2553:38:::1;::::0;2574:6:::1;::::0;2553:38:::1;2602:6;:17:::0;;-1:-1:-1;;;;;;2602:17:0::1;-1:-1:-1::0;;;;;2602:17:0;;;::::1;::::0;;;::::1;::::0;;2383:244::o;45434:36::-;;;;:::o;566:98::-;646:10;566:98;:::o;2924:181::-;2982:7;3014:5;;;3038:6;;;;3030:46;;;;;-1:-1:-1;;;3030:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;3096:1;2924:181;-1:-1:-1;;;2924:181:0:o;32171:380::-;-1:-1:-1;;;;;32307:19:0;;32299:68;;;;-1:-1:-1;;;32299:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32386:21:0;;32378:68;;;;-1:-1:-1;;;32378:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32459:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;32511:32;;;;;;;;;;;;;;;;;32171:380;;;:::o;56719:3869::-;-1:-1:-1;;;;;56851:18:0;;56843:68;;;;-1:-1:-1;;;56843:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;56930:16:0;;56922:64;;;;-1:-1:-1;;;56922:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57020:7;:5;:7::i;:::-;-1:-1:-1;;;;;57012:15:0;:4;-1:-1:-1;;;;;57012:15:0;;57009:67;;57052:11;;;;57043:21;;;;;;57091:11;57088:92;;57119:28;57135:4;57141:2;57145:1;57119:15;:28::i;:::-;57162:7;;57088:92;57186:28;57217:24;57235:4;57217:9;:24::i;:::-;57293:18;;57186:55;;-1:-1:-1;57269:42:0;;;;;;;57328:33;;-1:-1:-1;57353:8:0;;-1:-1:-1;;;57353:8:0;;;;57352:9;57328:33;:82;;;;-1:-1:-1;;;;;;57379:31:0;;;;;;:25;:31;;;;;;;;57378:32;57328:82;:114;;;;;57435:7;:5;:7::i;:::-;-1:-1:-1;;;;;57427:15:0;:4;-1:-1:-1;;;;;57427:15:0;;;57328:114;:144;;;;;57465:7;:5;:7::i;:::-;-1:-1:-1;;;;;57459:13:0;:2;-1:-1:-1;;;;;57459:13:0;;;57328:144;:182;;;;-1:-1:-1;57497:13:0;;-1:-1:-1;;;;;57489:21:0;;;57497:13;;57489:21;57328:182;:229;;;;-1:-1:-1;57541:15:0;;-1:-1:-1;;;;;57527:30:0;;;57541:15;;57527:30;;57328:229;57324:727;;;57584:8;:15;;-1:-1:-1;;;;57584:15:0;-1:-1:-1;;;57584:15:0;;;57689:13;;57667:16;;57584:15;;57642:61;;:42;;:20;;:42;:24;:42;:::i;:::-;:46;:61;:46;:61;:::i;:::-;57616:87;;57718:39;57741:15;57718:22;:39::i;:::-;57774:18;57795:61;57842:13;;57795:42;57820:16;;57795:20;:24;;:42;;;;:::i;:61::-;57774:82;;57871:26;57886:10;57871:14;:26::i;:::-;57914:18;57935:24;57953:4;57935:9;:24::i;:::-;57914:45;;57974:32;57995:10;57974:20;:32::i;:::-;-1:-1:-1;;58023:8:0;:16;;-1:-1:-1;;;;58023:16:0;;;-1:-1:-1;57324:727:0;58085:7;:33;;;;-1:-1:-1;58110:8:0;;-1:-1:-1;;;58110:8:0;;;;58109:9;58085:33;:82;;;;-1:-1:-1;;;;;;58136:31:0;;;;;;:25;:31;;;;;;;;58135:32;58085:82;:114;;;;;58192:7;:5;:7::i;:::-;-1:-1:-1;;;;;58184:15:0;:4;-1:-1:-1;;;;;58184:15:0;;;58085:114;:144;;;;;58222:7;:5;:7::i;:::-;-1:-1:-1;;;;;58216:13:0;:2;-1:-1:-1;;;;;58216:13:0;;;58085:144;:182;;;;-1:-1:-1;58254:13:0;;-1:-1:-1;;;;;58246:21:0;;;58254:13;;58246:21;;58085:182;58081:769;;;58341:12;;58322:13;;58312:51;;58359:3;;58312:42;;58341:12;58312:24;;-1:-1:-1;;;;;58322:13:0;58312:9;:24::i;:::-;:28;:42;:28;:42;:::i;:51::-;58302:6;:61;;58294:70;;;;;;58379:8;:15;;-1:-1:-1;;;;58379:15:0;-1:-1:-1;;;58379:15:0;;;58485:14;;58462:17;;58379:15;;58437:63;;:43;;:20;;:43;:24;:43;:::i;:63::-;58411:89;;58515:39;58538:15;58515:22;:39::i;:::-;58571:18;58592:63;58640:14;;58592:43;58617:17;;58592:20;:24;;:43;;;;:::i;:63::-;58571:84;;58670:26;58685:10;58670:14;:26::i;:::-;58713:18;58734:24;58752:4;58734:9;:24::i;:::-;58713:45;;58773:32;58794:10;58773:20;:32::i;:::-;-1:-1:-1;;58822:8:0;:16;;-1:-1:-1;;;;58822:16:0;;;-1:-1:-1;58081:769:0;58880:8;;-1:-1:-1;;;;;58989:25:0;;58864:12;58989:25;;;:19;:25;;;;;;58880:8;-1:-1:-1;;;58880:8:0;;;;;58879:9;;58989:25;;:52;;-1:-1:-1;;;;;;59018:23:0;;;;;;:19;:23;;;;;;;;58989:52;58986:99;;;-1:-1:-1;59068:5:0;58986:99;59108:8;;-1:-1:-1;;;59108:8:0;;;;:16;;59120:4;59108:16;59105:62;;;-1:-1:-1;59150:5:0;59105:62;59182:7;59179:860;;;59217:13;;-1:-1:-1;;;;;59209:21:0;;;59217:13;;59209:21;:55;;;;-1:-1:-1;59248:15:0;;-1:-1:-1;;;;;59234:30:0;;;59248:15;;59234:30;;59209:55;59206:812;;;59287:6;;-1:-1:-1;;;59287:6:0;;;;59284:338;;;59314:12;59329:34;59359:3;59329:25;59340:13;;59329:6;:10;;:25;;;;:::i;:34::-;-1:-1:-1;;;;;59386:29:0;;;;;;:25;:29;;;;;;59314:49;;-1:-1:-1;59386:29:0;;59383:108;;;59448:22;59466:3;59448:13;:6;59459:1;59448:13;:10;:13;:::i;:22::-;59440:30;59383:108;59519:16;:6;59530:4;59519:16;:10;:16;:::i;:::-;59510:25;;59568:42;59584:4;59598;59605;59568:15;:42::i;:::-;59284:338;;59206:812;;;59680:7;;-1:-1:-1;;;59680:7:0;;;;59677:340;;;59708:12;59723:35;59754:3;59723:26;59734:14;;59723:6;:10;;:26;;;;:::i;:35::-;-1:-1:-1;;;;;59781:29:0;;;;;;:25;:29;;;;;;59708:50;;-1:-1:-1;59781:29:0;;59778:108;;;59843:22;59861:3;59843:13;:6;59854:1;59843:13;:10;:13;:::i;:22::-;59835:30;59778:108;59914:16;:6;59925:4;59914:16;:10;:16;:::i;:::-;59905:25;;59963:42;59979:4;59993;60000;59963:15;:42::i;:::-;59677:340;;60051:33;60067:4;60073:2;60077:6;60051:15;:33::i;:::-;60101:15;;-1:-1:-1;;;;;60101:15:0;:26;60136:4;60143:15;60136:4;60143:9;:15::i;:::-;60101:58;;;;;;;;;;;;;-1:-1:-1;;;;;60101:58:0;-1:-1:-1;;;;;60101:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;60101:58:0;;;;;;;;;;;;;;60097:74;60185:15;;-1:-1:-1;;;;;60185:15:0;:26;60220:2;60225:13;60220:2;60225:9;:13::i;:::-;60185:54;;;;;;;;;;;;;-1:-1:-1;;;;;60185:54:0;-1:-1:-1;;;;;60185:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;60185:54:0;;;;;;;;;;;;;;60181:70;60267:8;;-1:-1:-1;;;60267:8:0;;;;60263:318;;60300:16;;60331:15;;:28;;;-1:-1:-1;;;;;;60331:28:0;;;;;;;;;;-1:-1:-1;;;;;60331:15:0;;;;:23;;:28;;;;;;;;;;;;;;;60286:11;60331:15;:28;;;5:2:-1;;;;30:1;27;20:12;5:2;60331:28:0;;;;;;;;;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;60331:28:0;;;;;;;;;;;;;;;;60327:243;;;;;60448:86;;;;;;;;;;;;;;;;;;;;;;;;;;60524:9;;60513:4;;60448:86;;;;;;;;;60360:184;;;60327:243;60263:318;;56719:3869;;;;;;;:::o;3827:192::-;3913:7;3949:12;3941:6;;;;3933:29;;;;-1:-1:-1;;;3933:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;3933:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;3985:5:0;;;3827:192::o;51149:413::-;-1:-1:-1;;;;;51240:31:0;;;;;;:25;:31;;;;;;;;:40;;;;;;;51232:121;;;;-1:-1:-1;;;51232:121:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;51364:31:0;;;;;;:25;:31;;;;;:39;;-1:-1:-1;;51364:39:0;;;;;;;;;;;;51417:79;;51442:15;;:42;;;-1:-1:-1;;;51442:42:0;;-1:-1:-1;;;;;51442:42:0;;;;;;;;;:15;;;;;:36;;:42;;;;;:15;;:42;;;;;;;:15;;:42;;;5:2:-1;;;;30:1;27;20:12;5:2;51442:42:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;51442:42:0;;;;51417:79;51514:40;;;;;;-1:-1:-1;;;;;51514:40:0;;;;;;;;51149:413;;:::o;29744:573::-;-1:-1:-1;;;;;29884:20:0;;29876:70;;;;-1:-1:-1;;;29876:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29965:23:0;;29957:71;;;;-1:-1:-1;;;29957:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30041:47;30062:6;30070:9;30081:6;30041:20;:47::i;:::-;30121:71;30143:6;30121:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30121:17:0;;:9;:17;;;;;;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;30101:17:0;;;:9;:17;;;;;;;;;;;:91;;;;30226:20;;;;;;;:32;;30251:6;30226:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;30203:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;30274:35;;;;;;;30203:20;;30274:35;;;;;;;;;;;;;29744:573;;;:::o;4278:471::-;4336:7;4581:6;4577:47;;-1:-1:-1;4611:1:0;4604:8;;4577:47;4648:5;;;4652:1;4648;:5;:1;4672:5;;;;;:10;4664:56;;;;-1:-1:-1;;;4664:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5225:132;5283:7;5310:39;5314:1;5317;5310:39;;;;;;;;;;;;;;;;;:3;:39::i;60598:479::-;47458:8;:15;;-1:-1:-1;;;;47458:15:0;-1:-1:-1;;;47458:15:0;;;60705:21:::1;60740:24;60757:6:::0;60740:16:::1;:24::i;:::-;60823:18;60844:41;:21;60870:14:::0;60844:41:::1;:25;:41;:::i;:::-;60823:62:::0;-1:-1:-1;60896:16:0::1;60915:17;60823:62:::0;60930:1:::1;60915:17;:14;:17;:::i;:::-;60944:16;::::0;:35:::1;::::0;60896:36;;-1:-1:-1;60944:16:0::1;::::0;::::1;-1:-1:-1::0;;;;;60944:16:0::1;::::0;:35:::1;::::0;::::1;;::::0;60896:36;;60944:35:::1;::::0;;;60896:36;60944:16;:35;::::1;;;;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;-1:-1:::0;60992:16:0::1;::::0;:35:::1;::::0;:16:::1;::::0;;::::1;-1:-1:-1::0;;;;;60992:16:0::1;::::0;:35:::1;::::0;::::1;;::::0;;;::::1;::::0;;;;:16;:35;::::1;;;;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;-1:-1:::0;61040:10:0::1;::::0;:29:::1;::::0;-1:-1:-1;;;;;61040:10:0;;::::1;::::0;:29;::::1;;;::::0;61060:8;;61040:10:::1;:29:::0;:10;:29;61060:8;61040:10;:29;::::1;;;;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;-1:-1:::0;;47496:8:0;:16;;-1:-1:-1;;;;47496:16:0;;;-1:-1:-1;;;60598:479:0:o;61635:677::-;47458:8;:15;;-1:-1:-1;;;;47458:15:0;-1:-1:-1;;;47458:15:0;;;;61771:13:::1;:6:::0;61782:1:::1;61771:13;:10;:13;:::i;:::-;61756:28:::0;-1:-1:-1;61795:17:0::1;61815:16;:6:::0;61756:28;61815:16:::1;:10;:16;:::i;:::-;61795:36:::0;-1:-1:-1;61869:21:0::1;61935:22;61952:4:::0;61935:16:::1;:22::i;:::-;62088:18;62109:41;:21;62135:14:::0;62109:41:::1;:25;:41;:::i;:::-;62088:62;;62200:35;62213:9;62224:10;62200:12;:35::i;:::-;62261:43;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;::::1;::::0;;;;;;;::::1;-1:-1:-1::0;;47496:8:0;:16;;-1:-1:-1;;;;47496:16:0;;;-1:-1:-1;;;61635:677:0:o;62932:329::-;47458:8;:15;;-1:-1:-1;;;;47458:15:0;-1:-1:-1;;;47458:15:0;;;63008:24:::1;63025:6:::0;63008:16:::1;:24::i;:::-;63121:15;::::0;63113:51:::1;::::0;63063:21:::1;::::0;63043:17:::1;::::0;-1:-1:-1;;;;;63121:15:0;;::::1;::::0;63063:21;;63043:17;63113:51;63043:17;63113:51;63063:21;63121:15;63113:51:::1;;;;;;;12:1:-1;19;14:27;;;;67:4;61:11;56:16;;134:4;130:9;123:4;105:16;101:27;97:43;94:1;90:51;84:4;77:65;157:16;154:1;147:27;211:16;208:1;201:4;198:1;194:12;179:49;5:228;;14:27;32:4;27:9;;5:228;;63095:69:0;;;63181:7;63178:76;;;63210:32;::::0;;;;;::::1;::::0;::::1;::::0;;;;;::::1;::::0;;;;;;;;;::::1;63178:76;-1:-1:-1::0;;47496:8:0;:16;;-1:-1:-1;;;;47496:16:0;;;-1:-1:-1;62932:329:0:o;3388:136::-;3446:7;3473:43;3477:1;3480;3473:43;;;;;;;;;;;;;;;;;:3;:43::i;5853:278::-;5939:7;5974:12;5967:5;5959:28;;;;-1:-1:-1;;;5959:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;5959:28:0;;5998:9;6014:1;6010;:5;;;;;;;5853:278;-1:-1:-1;;;;;5853:278:0:o;62321:600::-;62477:16;;;62491:1;62477:16;;;62453:21;62477:16;;;;;62453:21;62477:16;;;;;105:10:-1;62477:16:0;88:34:-1;136:17;;-1:-1;62477:16:0;62453:40;;62522:4;62504;62509:1;62504:7;;;;;;;;-1:-1:-1;;;;;62504:23:0;;;:7;;;;;;;;;;:23;;;;62548:15;;:22;;;-1:-1:-1;;;62548:22:0;;;;:15;;;;;:20;;:22;;;;;62504:7;;62548:22;;;;;:15;:22;;;5:2:-1;;;;30:1;27;20:12;5:2;62548:22:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;62548:22:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;62548:22:0;62538:7;;:4;;62543:1;;62538:7;;;;;;-1:-1:-1;;;;;62538:32:0;;;:7;;;;;;;;;:32;62616:15;;62584:62;;62601:4;;62616:15;62634:11;62584:8;:62::i;:::-;62686:15;;:224;;-1:-1:-1;;;62686:224:0;;;;;;;;:15;:224;;;;;;62864:4;62686:224;;;;;;62884:15;62686:224;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;62686:15:0;;;;:66;;62767:11;;62837:4;;62864;62884:15;62686:224;;;;;;;;;;;;;;;;:15;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;62686:224:0;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;62686:224:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;61090:533:0;61280:15;;61248:62;;61265:4;;-1:-1:-1;;;;;61280:15:0;61298:11;61248:8;:62::i;:::-;61353:15;;-1:-1:-1;;;;;61353:15:0;:31;61392:9;61425:4;61445:11;61353:15;;61557:7;:5;:7::i;:::-;61579:15;61353:252;;;;;;;;;;;;;-1:-1:-1;;;;;61353:252:0;-1:-1:-1;;;;;61353:252:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;61353:252:0;-1:-1:-1;;;;;61353:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;61353:252:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;61353:252:0;;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;61090:533:0:o
Swarm Source
ipfs://756641d071548365682b0db4fe97765e22ff3541dd0a3d23ede21ab016510d65
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.