ERC-20
Overview
Max Total Supply
70,938,084.47283191559908099 DNA
Holders
3,017
Market
Price
$0.00 @ 0.000001 ETH (-0.06%)
Onchain Market Cap
$125,532.03
Circulating Supply Market Cap
$0.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
16,311.429 DNAValue
$28.86 ( ~0.00926841368566567 Eth) [0.0230%]Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
DNAToken
Compiler Version
v0.7.6+commit.7338295f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-02-05 */ // SPDX-License-Identifier: MIT // DNA Token contract pragma solidity 0.7.6; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: @openzeppelin/contracts/math/SafeMath.sol /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b > a) return (false, 0); return (true, a - b); } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a / b); } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a % b); } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a, "SafeMath: subtraction overflow"); return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) return 0; uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: division by zero"); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: modulo by zero"); return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); return a - b; } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a % b; } } // File: @openzeppelin/contracts/utils/Address.sol /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC20/SafeERC20.sol /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using SafeMath for uint256; using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' // solhint-disable-next-line max-line-length require((value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).add(value); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } // File: contracts/DNAToken.sol contract DNAToken is IERC20 { using SafeMath for uint256; using SafeERC20 for IERC20; uint256 constant private MAX_UINT256 = ~uint256(0); string constant public name = "DNA"; string constant public symbol = "DNA"; uint8 constant public decimals = 18; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; bytes32 public DOMAIN_SEPARATOR; // keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"); bytes32 public constant PERMIT_TYPEHASH = 0x6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9; mapping(address => uint256) public nonces; mapping(address => uint256) public reviewPeriods; mapping(address => uint256) public decisionPeriods; uint256 public reviewPeriod = 604800; // 7 days uint256 public decisionPeriod = 7776000; // 90 days after review period address public governanceBoard; address public pendingGovernanceBoard; bool public paused = true; event Paused(); event Unpaused(); event Reviewing(address indexed account, uint256 reviewUntil, uint256 decideUntil); event Resolved(address indexed account); event ReviewPeriodChanged(uint256 reviewPeriod); event DecisionPeriodChanged(uint256 decisionPeriod); event GovernanceBoardChanged(address indexed from, address indexed to); event GovernedTransfer(address indexed from, address indexed to, uint256 amount); modifier whenNotPaused() { require(!paused || msg.sender == governanceBoard, "Pausable: paused"); _; } modifier onlyGovernanceBoard() { require(msg.sender == governanceBoard, "Sender is not governance board"); _; } modifier onlyPendingGovernanceBoard() { require(msg.sender == pendingGovernanceBoard, "Sender is not the pending governance board"); _; } modifier onlyResolved(address account) { require(decisionPeriods[account] < block.timestamp, "Account is being reviewed"); _; } constructor () public { _setGovernanceBoard(msg.sender); _totalSupply = 70938084472831915599080990; _balances[msg.sender] = _totalSupply; emit Transfer(address(0), msg.sender, _totalSupply); uint256 chainId; assembly { chainId := chainid() } DOMAIN_SEPARATOR = keccak256( abi.encode( keccak256('EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)'), keccak256(bytes(name)), keccak256(bytes('1')), chainId, address(this) ) ); } function pause() public onlyGovernanceBoard { require(!paused, "Pausable: paused"); paused = true; emit Paused(); } function unpause() public onlyGovernanceBoard { require(paused, "Pausable: unpaused"); paused = false; emit Unpaused(); } function review(address account) public onlyGovernanceBoard { _review(account); } function resolve(address account) public onlyGovernanceBoard { _resolve(account); } function electGovernanceBoard(address newGovernanceBoard) public onlyGovernanceBoard { pendingGovernanceBoard = newGovernanceBoard; } function takeGovernance() public onlyPendingGovernanceBoard { _setGovernanceBoard(pendingGovernanceBoard); pendingGovernanceBoard = address(0); } function _setGovernanceBoard(address newGovernanceBoard) internal { emit GovernanceBoardChanged(governanceBoard, newGovernanceBoard); governanceBoard = newGovernanceBoard; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public override onlyResolved(msg.sender) onlyResolved(recipient) whenNotPaused returns (bool) { _transfer(msg.sender, recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view 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 override onlyResolved(msg.sender) onlyResolved(spender) whenNotPaused returns (bool) { _approve(msg.sender, 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 override onlyResolved(msg.sender) onlyResolved(sender) onlyResolved(recipient) whenNotPaused returns (bool) { _transfer(sender, recipient, amount); if (_allowances[sender][msg.sender] < MAX_UINT256) { // treat MAX_UINT256 approve as infinite approval _approve(sender, msg.sender, _allowances[sender][msg.sender].sub(amount, "ERC20: transfer amount exceeds allowance")); } return true; } /** * @dev Allows governance board to transfer funds. * * This allows to transfer tokens after review period have elapsed, * but before decision period is expired. So, basically governanceBoard have a time-window * to move tokens from reviewed account. * After decision period have been expired remaining tokens are unlocked. */ function governedTransfer(address from, address to, uint256 value) public onlyGovernanceBoard returns (bool) { require(block.timestamp > reviewPeriods[from], "Review period is not elapsed"); require(block.timestamp <= decisionPeriods[from], "Decision period expired"); _transfer(from, to, value); emit GovernedTransfer(from, to, value); 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 onlyResolved(msg.sender) onlyResolved(spender) whenNotPaused returns (bool) { _approve(msg.sender, spender, _allowances[msg.sender][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 onlyResolved(msg.sender) onlyResolved(spender) whenNotPaused returns (bool) { _approve(msg.sender, spender, _allowances[msg.sender][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 { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, 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 { require(account != address(0), "ERC20: burn from the zero address"); _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 { 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 Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public onlyResolved(msg.sender) whenNotPaused { _burn(msg.sender, amount); } function transferMany(address[] calldata recipients, uint256[] calldata amounts) onlyResolved(msg.sender) whenNotPaused external { require(recipients.length == amounts.length, "DNAToken: Wrong array length"); uint256 total = 0; for (uint256 i = 0; i < amounts.length; i++) { total = total.add(amounts[i]); } _balances[msg.sender] = _balances[msg.sender].sub(total, "ERC20: transfer amount exceeds balance"); for (uint256 i = 0; i < recipients.length; i++) { address recipient = recipients[i]; uint256 amount = amounts[i]; require(recipient != address(0), "ERC20: transfer to the zero address"); require(decisionPeriods[recipient] < block.timestamp, "Account is being reviewed"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(msg.sender, recipient, amount); } } function permit(address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) external { // Need to unwrap modifiers to eliminate Stack too deep error require(decisionPeriods[owner] < block.timestamp, "Account is being reviewed"); require(decisionPeriods[spender] < block.timestamp, "Account is being reviewed"); require(!paused || msg.sender == governanceBoard, "Pausable: paused"); require(deadline >= block.timestamp, 'DNAToken: EXPIRED'); bytes32 digest = keccak256( abi.encodePacked( '\x19\x01', DOMAIN_SEPARATOR, keccak256(abi.encode(PERMIT_TYPEHASH, owner, spender, value, nonces[owner]++, deadline)) ) ); address recoveredAddress = ecrecover(digest, v, r, s); require(recoveredAddress != address(0) && recoveredAddress == owner, 'DNAToken: INVALID_SIGNATURE'); _approve(owner, spender, value); } function setReviewPeriod(uint256 _reviewPeriod) public onlyGovernanceBoard { reviewPeriod = _reviewPeriod; emit ReviewPeriodChanged(reviewPeriod); } function setDecisionPeriod(uint256 _decisionPeriod) public onlyGovernanceBoard { decisionPeriod = _decisionPeriod; emit DecisionPeriodChanged(decisionPeriod); } function recoverTokens(IERC20 token, address to, uint256 amount) public onlyGovernanceBoard { uint256 balance = token.balanceOf(address(this)); require(balance >= amount, "ERC20: Insufficient balance"); token.safeTransfer(to, amount); } function _review(address account) internal { uint256 reviewUntil = block.timestamp.add(reviewPeriod); uint256 decideUntil = block.timestamp.add(reviewPeriod.add(decisionPeriod)); reviewPeriods[account] = reviewUntil; decisionPeriods[account] = decideUntil; emit Reviewing(account, reviewUntil, decideUntil); } function _resolve(address account) internal { reviewPeriods[account] = 0; decisionPeriods[account] = 0; emit Resolved(account); } }
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":false,"internalType":"uint256","name":"decisionPeriod","type":"uint256"}],"name":"DecisionPeriodChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"GovernanceBoardChanged","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":"amount","type":"uint256"}],"name":"GovernedTransfer","type":"event"},{"anonymous":false,"inputs":[],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"Resolved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"reviewPeriod","type":"uint256"}],"name":"ReviewPeriodChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"reviewUntil","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"decideUntil","type":"uint256"}],"name":"Reviewing","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":[],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decisionPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"decisionPeriods","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"newGovernanceBoard","type":"address"}],"name":"electGovernanceBoard","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"governanceBoard","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"governedTransfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingGovernanceBoard","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"recoverTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"resolve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"review","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reviewPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"reviewPeriods","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_decisionPeriod","type":"uint256"}],"name":"setDecisionPeriod","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_reviewPeriod","type":"uint256"}],"name":"setReviewPeriod","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"takeGovernance","outputs":[],"stateMutability":"nonpayable","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":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"transferMany","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405262093a806007556276a700600855600a805460ff60a01b1916600160a01b17905534801561003157600080fd5b5061003b33610167565b6a3aadb943ce890de8d02e1e600281905533600081815260208181526040808320859055805194855251929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3604080518082018252600380825262444e4160e81b6020928301528251808401845260018152603160f81b9083015282517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f818401527f275eacaeb9030fe498d863e4bb685754e36eb7e18c4f1defdbf7baf9fa04b77c818501527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a0808301919091528451808303909101815260c09091019093528251929091019190912090556101c3565b6009546040516001600160a01b038084169216907fc9236e88ccc318dbded95bbdbed52565112e581abe78292b12344574cd3a267b90600090a3600980546001600160a01b0319166001600160a01b0392909216919091179055565b612964806101d26000396000f3fe608060405234801561001057600080fd5b50600436106102265760003560e01c80635f3e849f1161012a578063a457c2d7116100bd578063b7fc66121161008c578063dd62ed3e11610071578063dd62ed3e146106dc578063e72cfcb81461070a578063ee7429d51461073057610226565b8063b7fc6612146105c9578063d505accf1461068b57610226565b8063a457c2d714610543578063a9059cbb1461056f578063b48edbb41461059b578063b706dc73146105c157610226565b80637ecebe00116100f95780637ecebe00146104f85780638456cb591461051e57806395d89b411461022b578063a1a586b31461052657610226565b80635f3e849f1461047757806370a08231146104ad57806379556d74146104d35780637db1096f146104db57610226565b8063382a3332116101bd57806342966c681161018c57806355ea6c471161017157806355ea6c4714610413578063588ecffd146104395780635c975abb1461046f57610226565b806342966c68146103ee578063453f4e7e1461040b57610226565b8063382a33321461038c57806339509351146103b05780633b249810146103dc5780633f4ba83a146103e457610226565b806323b872dd116101f957806323b872dd1461032857806330adf81f1461035e578063313ce567146103665780633644e5151461038457610226565b806306fdde031461022b578063095ea7b3146102a85780630bb7663a146102e857806318160ddd14610320575b600080fd5b610233610756565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561026d578181015183820152602001610255565b50505050905090810190601f16801561029a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102d4600480360360408110156102be57600080fd5b506001600160a01b03813516906020013561078f565b604080519115158252519081900360200190f35b61030e600480360360208110156102fe57600080fd5b50356001600160a01b03166108bc565b60408051918252519081900360200190f35b61030e6108ce565b6102d46004803603606081101561033e57600080fd5b506001600160a01b038135811691602081013590911690604001356108d4565b61030e610ade565b61036e610b02565b6040805160ff9092168252519081900360200190f35b61030e610b07565b610394610b0d565b604080516001600160a01b039092168252519081900360200190f35b6102d4600480360360408110156103c657600080fd5b506001600160a01b038135169060200135610b1c565b61030e610c68565b6103ec610c6e565b005b6103ec6004803603602081101561040457600080fd5b5035610d63565b6103ec610e29565b6103ec6004803603602081101561042957600080fd5b50356001600160a01b0316610ea6565b6102d46004803603606081101561044f57600080fd5b506001600160a01b03813581169160208101359091169060400135610f11565b6102d46110ad565b6103ec6004803603606081101561048d57600080fd5b506001600160a01b038135811691602081013590911690604001356110bd565b61030e600480360360208110156104c357600080fd5b50356001600160a01b0316611208565b61030e611223565b6103ec600480360360208110156104f157600080fd5b5035611229565b61030e6004803603602081101561050e57600080fd5b50356001600160a01b03166112c3565b6103ec6112d5565b6103ec6004803603602081101561053c57600080fd5b50356113c4565b6102d46004803603604081101561055957600080fd5b506001600160a01b03813516906020013561145e565b6102d46004803603604081101561058557600080fd5b506001600160a01b0381351690602001356115c2565b6103ec600480360360208110156105b157600080fd5b50356001600160a01b03166116e4565b610394611772565b6103ec600480360360408110156105df57600080fd5b8101906020810181356401000000008111156105fa57600080fd5b82018360208201111561060c57600080fd5b8035906020019184602083028401116401000000008311171561062e57600080fd5b91939092909160208101903564010000000081111561064c57600080fd5b82018360208201111561065e57600080fd5b8035906020019184602083028401116401000000008311171561068057600080fd5b509092509050611781565b6103ec600480360360e08110156106a157600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c00135611a7a565b61030e600480360360408110156106f257600080fd5b506001600160a01b0381358116916020013516611dbd565b61030e6004803603602081101561072057600080fd5b50356001600160a01b0316611de8565b6103ec6004803603602081101561074657600080fd5b50356001600160a01b0316611dfa565b6040518060400160405280600381526020017f444e41000000000000000000000000000000000000000000000000000000000081525081565b3360008181526006602052604081205490919042116107e3576040805162461bcd60e51b815260206004820152601960248201526000805160206127b8833981519152604482015290519081900360640190fd5b6001600160a01b0384166000908152600660205260409020548490421161083f576040805162461bcd60e51b815260206004820152601960248201526000805160206127b8833981519152604482015290519081900360640190fd5b600a54600160a01b900460ff16158061086257506009546001600160a01b031633145b6108a6576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6108b1338686611e62565b506001949350505050565b60066020526000908152604090205481565b60025490565b336000818152600660205260408120549091904211610928576040805162461bcd60e51b815260206004820152601960248201526000805160206127b8833981519152604482015290519081900360640190fd5b6001600160a01b03851660009081526006602052604090205485904211610984576040805162461bcd60e51b815260206004820152601960248201526000805160206127b8833981519152604482015290519081900360640190fd5b6001600160a01b038516600090815260066020526040902054859042116109e0576040805162461bcd60e51b815260206004820152601960248201526000805160206127b8833981519152604482015290519081900360640190fd5b600a54600160a01b900460ff161580610a0357506009546001600160a01b031633145b610a47576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b610a52878787611f4e565b6001600160a01b03871660009081526001602090815260408083203384529091529020546000191115610ad157610ad18733610acc8860405180606001604052806028815260200161284e602891396001600160a01b038d166000908152600160209081526040808320338452909152902054919061209e565b611e62565b5060019695505050505050565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b601281565b60035481565b6009546001600160a01b031681565b336000818152600660205260408120549091904211610b70576040805162461bcd60e51b815260206004820152601960248201526000805160206127b8833981519152604482015290519081900360640190fd5b6001600160a01b03841660009081526006602052604090205484904211610bcc576040805162461bcd60e51b815260206004820152601960248201526000805160206127b8833981519152604482015290519081900360640190fd5b600a54600160a01b900460ff161580610bef57506009546001600160a01b031633145b610c33576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b3360008181526001602090815260408083206001600160a01b038a1684529091529020546108b191908790610acc9088612135565b60075481565b6009546001600160a01b03163314610ccd576040805162461bcd60e51b815260206004820152601e60248201527f53656e646572206973206e6f7420676f7665726e616e636520626f6172640000604482015290519081900360640190fd5b600a54600160a01b900460ff16610d2b576040805162461bcd60e51b815260206004820152601260248201527f5061757361626c653a20756e7061757365640000000000000000000000000000604482015290519081900360640190fd5b600a805460ff60a01b191690556040517fa45f47fdea8a1efdd9029a5691c7f759c32b7c698632b563573e155625d1693390600090a1565b336000818152600660205260409020544211610db4576040805162461bcd60e51b815260206004820152601960248201526000805160206127b8833981519152604482015290519081900360640190fd5b600a54600160a01b900460ff161580610dd757506009546001600160a01b031633145b610e1b576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b610e25338361218f565b5050565b600a546001600160a01b03163314610e725760405162461bcd60e51b815260040180806020018281038252602a815260200180612824602a913960400191505060405180910390fd5b600a54610e87906001600160a01b031661227f565b600a805473ffffffffffffffffffffffffffffffffffffffff19169055565b6009546001600160a01b03163314610f05576040805162461bcd60e51b815260206004820152601e60248201527f53656e646572206973206e6f7420676f7665726e616e636520626f6172640000604482015290519081900360640190fd5b610f0e816122e8565b50565b6009546000906001600160a01b03163314610f73576040805162461bcd60e51b815260206004820152601e60248201527f53656e646572206973206e6f7420676f7665726e616e636520626f6172640000604482015290519081900360640190fd5b6001600160a01b0384166000908152600560205260409020544211610fdf576040805162461bcd60e51b815260206004820152601c60248201527f52657669657720706572696f64206973206e6f7420656c617073656400000000604482015290519081900360640190fd5b6001600160a01b03841660009081526006602052604090205442111561104c576040805162461bcd60e51b815260206004820152601760248201527f4465636973696f6e20706572696f642065787069726564000000000000000000604482015290519081900360640190fd5b611057848484611f4e565b826001600160a01b0316846001600160a01b03167ff0ce2c03e8c22e6c0a5077f1eccd528a2f03da3a15bf354d599bfe0910a9c9a1846040518082815260200191505060405180910390a35060015b9392505050565b600a54600160a01b900460ff1681565b6009546001600160a01b0316331461111c576040805162461bcd60e51b815260206004820152601e60248201527f53656e646572206973206e6f7420676f7665726e616e636520626f6172640000604482015290519081900360640190fd5b6000836001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561116b57600080fd5b505afa15801561117f573d6000803e3d6000fd5b505050506040513d602081101561119557600080fd5b50519050818110156111ee576040805162461bcd60e51b815260206004820152601b60248201527f45524332303a20496e73756666696369656e742062616c616e63650000000000604482015290519081900360640190fd5b6112026001600160a01b0385168484612339565b50505050565b6001600160a01b031660009081526020819052604090205490565b60085481565b6009546001600160a01b03163314611288576040805162461bcd60e51b815260206004820152601e60248201527f53656e646572206973206e6f7420676f7665726e616e636520626f6172640000604482015290519081900360640190fd5b60078190556040805182815290517feee6e94da6dbe8c539efcc3dd80f0420aea22e590aad7005b127bd855d6107529181900360200190a150565b60046020526000908152604090205481565b6009546001600160a01b03163314611334576040805162461bcd60e51b815260206004820152601e60248201527f53656e646572206973206e6f7420676f7665726e616e636520626f6172640000604482015290519081900360640190fd5b600a54600160a01b900460ff1615611386576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b600a805460ff60a01b1916600160a01b1790556040517f9e87fac88ff661f02d44f95383c817fece4bce600a3dab7a54406878b965e75290600090a1565b6009546001600160a01b03163314611423576040805162461bcd60e51b815260206004820152601e60248201527f53656e646572206973206e6f7420676f7665726e616e636520626f6172640000604482015290519081900360640190fd5b60088190556040805182815290517f10809cc5ca185b137f7fbda0e2e2791a6b1b5d66fe86d51c10c69c805c9118019181900360200190a150565b3360008181526006602052604081205490919042116114b2576040805162461bcd60e51b815260206004820152601960248201526000805160206127b8833981519152604482015290519081900360640190fd5b6001600160a01b0384166000908152600660205260409020548490421161150e576040805162461bcd60e51b815260206004820152601960248201526000805160206127b8833981519152604482015290519081900360640190fd5b600a54600160a01b900460ff16158061153157506009546001600160a01b031633145b611575576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6108b13386610acc8760405180606001604052806025815260200161290a602591393360009081526001602090815260408083206001600160a01b038f168452909152902054919061209e565b336000818152600660205260408120549091904211611616576040805162461bcd60e51b815260206004820152601960248201526000805160206127b8833981519152604482015290519081900360640190fd5b6001600160a01b03841660009081526006602052604090205484904211611672576040805162461bcd60e51b815260206004820152601960248201526000805160206127b8833981519152604482015290519081900360640190fd5b600a54600160a01b900460ff16158061169557506009546001600160a01b031633145b6116d9576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6108b1338686611f4e565b6009546001600160a01b03163314611743576040805162461bcd60e51b815260206004820152601e60248201527f53656e646572206973206e6f7420676f7665726e616e636520626f6172640000604482015290519081900360640190fd5b600a805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b600a546001600160a01b031681565b3360008181526006602052604090205442116117d2576040805162461bcd60e51b815260206004820152601960248201526000805160206127b8833981519152604482015290519081900360640190fd5b600a54600160a01b900460ff1615806117f557506009546001600160a01b031633145b611839576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b83821461188d576040805162461bcd60e51b815260206004820152601c60248201527f444e41546f6b656e3a2057726f6e67206172726179206c656e67746800000000604482015290519081900360640190fd5b6000805b838110156118c8576118be8585838181106118a857fe5b905060200201358361213590919063ffffffff16565b9150600101611891565b506118fd816040518060600160405280602681526020016127d86026913933600090815260208190526040902054919061209e565b336000908152602081905260408120919091555b85811015611a7157600087878381811061192757fe5b905060200201356001600160a01b03169050600086868481811061194757fe5b60200291909101359150506001600160a01b0382166119975760405162461bcd60e51b81526004018080602001828103825260238152602001806127516023913960400191505060405180910390fd5b6001600160a01b03821660009081526006602052604090205442116119f1576040805162461bcd60e51b815260206004820152601960248201526000805160206127b8833981519152604482015290519081900360640190fd5b6001600160a01b038216600090815260208190526040902054611a149082612135565b6001600160a01b038316600081815260208181526040918290209390935580518481529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050600101611911565b50505050505050565b6001600160a01b0387166000908152600660205260409020544211611ad4576040805162461bcd60e51b815260206004820152601960248201526000805160206127b8833981519152604482015290519081900360640190fd5b6001600160a01b0386166000908152600660205260409020544211611b2e576040805162461bcd60e51b815260206004820152601960248201526000805160206127b8833981519152604482015290519081900360640190fd5b600a54600160a01b900460ff161580611b5157506009546001600160a01b031633145b611b95576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b42841015611bea576040805162461bcd60e51b815260206004820152601160248201527f444e41546f6b656e3a2045585049524544000000000000000000000000000000604482015290519081900360640190fd5b6003546001600160a01b0380891660008181526004602090815260408083208054600180820190925582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98186015280840196909652958d166060860152608085018c905260a085019590955260c08085018b90528151808603909101815260e0850182528051908301207f19010000000000000000000000000000000000000000000000000000000000006101008601526101028501969096526101228085019690965280518085039096018652610142840180825286519683019690962095839052610162840180825286905260ff89166101828501526101a284018890526101c28401879052519193926101e280820193601f1981019281900390910190855afa158015611d20573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811615801590611d565750886001600160a01b0316816001600160a01b0316145b611da7576040805162461bcd60e51b815260206004820152601b60248201527f444e41546f6b656e3a20494e56414c49445f5349474e41545552450000000000604482015290519081900360640190fd5b611db2898989611e62565b505050505050505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60056020526000908152604090205481565b6009546001600160a01b03163314611e59576040805162461bcd60e51b815260206004820152601e60248201527f53656e646572206973206e6f7420676f7665726e616e636520626f6172640000604482015290519081900360640190fd5b610f0e816123be565b6001600160a01b038316611ea75760405162461bcd60e51b81526004018080602001828103825260248152602001806128bc6024913960400191505060405180910390fd5b6001600160a01b038216611eec5760405162461bcd60e51b81526004018080602001828103825260228152602001806127966022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611f935760405162461bcd60e51b81526004018080602001828103825260258152602001806128976025913960400191505060405180910390fd5b6001600160a01b038216611fd85760405162461bcd60e51b81526004018080602001828103825260238152602001806127516023913960400191505060405180910390fd5b612015816040518060600160405280602681526020016127d8602691396001600160a01b038616600090815260208190526040902054919061209e565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546120449082612135565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000818484111561212d5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156120f25781810151838201526020016120da565b50505050905090810190601f16801561211f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828201838110156110a6576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b0382166121d45760405162461bcd60e51b81526004018080602001828103825260218152602001806128766021913960400191505060405180910390fd5b61221181604051806060016040528060228152602001612774602291396001600160a01b038516600090815260208190526040902054919061209e565b6001600160a01b0383166000908152602081905260409020556002546122379082612464565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6009546040516001600160a01b038084169216907fc9236e88ccc318dbded95bbdbed52565112e581abe78292b12344574cd3a267b90600090a36009805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6001600160a01b03811660008181526005602090815260408083208390556006909152808220829055517fd7f9e268a7b73266b018e33a21334c62cd762d663acc0f052eb872992da319db9190a250565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb000000000000000000000000000000000000000000000000000000001790526123b99084906124c1565b505050565b60006123d56007544261213590919063ffffffff16565b905060006123fa6123f360085460075461213590919063ffffffff16565b4290612135565b6001600160a01b038416600081815260056020908152604080832087905560068252918290208490558151868152908101849052815193945091927f5496407254a0eb60bfb0684ce13af563d549d67de6b58eca5805aed0eab2806b9281900390910190a2505050565b6000828211156124bb576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6000612516826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166125729092919063ffffffff16565b8051909150156123b95780806020019051602081101561253557600080fd5b50516123b95760405162461bcd60e51b815260040180806020018281038252602a8152602001806128e0602a913960400191505060405180910390fd5b60606125818484600085612589565b949350505050565b6060824710156125ca5760405162461bcd60e51b81526004018080602001828103825260268152602001806127fe6026913960400191505060405180910390fd5b6125d3856126e4565b612624576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b600080866001600160a01b031685876040518082805190602001908083835b602083106126625780518252601f199092019160209182019101612643565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146126c4576040519150601f19603f3d011682016040523d82523d6000602084013e6126c9565b606091505b50915091506126d98282866126ea565b979650505050505050565b3b151590565b606083156126f95750816110a6565b8251156127095782518084602001fd5b60405162461bcd60e51b81526020600482018181528451602484015284518593919283926044019190850190808383600083156120f25781810151838201526020016120da56fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f20616464726573734163636f756e74206973206265696e672072657669657765640000000000000045524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c53656e646572206973206e6f74207468652070656e64696e6720676f7665726e616e636520626f61726445524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e18b5ce6d877ece88d3a483e94776e0bd15880a9bcc3a9a1b8830caee0de59c764736f6c63430007060033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102265760003560e01c80635f3e849f1161012a578063a457c2d7116100bd578063b7fc66121161008c578063dd62ed3e11610071578063dd62ed3e146106dc578063e72cfcb81461070a578063ee7429d51461073057610226565b8063b7fc6612146105c9578063d505accf1461068b57610226565b8063a457c2d714610543578063a9059cbb1461056f578063b48edbb41461059b578063b706dc73146105c157610226565b80637ecebe00116100f95780637ecebe00146104f85780638456cb591461051e57806395d89b411461022b578063a1a586b31461052657610226565b80635f3e849f1461047757806370a08231146104ad57806379556d74146104d35780637db1096f146104db57610226565b8063382a3332116101bd57806342966c681161018c57806355ea6c471161017157806355ea6c4714610413578063588ecffd146104395780635c975abb1461046f57610226565b806342966c68146103ee578063453f4e7e1461040b57610226565b8063382a33321461038c57806339509351146103b05780633b249810146103dc5780633f4ba83a146103e457610226565b806323b872dd116101f957806323b872dd1461032857806330adf81f1461035e578063313ce567146103665780633644e5151461038457610226565b806306fdde031461022b578063095ea7b3146102a85780630bb7663a146102e857806318160ddd14610320575b600080fd5b610233610756565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561026d578181015183820152602001610255565b50505050905090810190601f16801561029a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102d4600480360360408110156102be57600080fd5b506001600160a01b03813516906020013561078f565b604080519115158252519081900360200190f35b61030e600480360360208110156102fe57600080fd5b50356001600160a01b03166108bc565b60408051918252519081900360200190f35b61030e6108ce565b6102d46004803603606081101561033e57600080fd5b506001600160a01b038135811691602081013590911690604001356108d4565b61030e610ade565b61036e610b02565b6040805160ff9092168252519081900360200190f35b61030e610b07565b610394610b0d565b604080516001600160a01b039092168252519081900360200190f35b6102d4600480360360408110156103c657600080fd5b506001600160a01b038135169060200135610b1c565b61030e610c68565b6103ec610c6e565b005b6103ec6004803603602081101561040457600080fd5b5035610d63565b6103ec610e29565b6103ec6004803603602081101561042957600080fd5b50356001600160a01b0316610ea6565b6102d46004803603606081101561044f57600080fd5b506001600160a01b03813581169160208101359091169060400135610f11565b6102d46110ad565b6103ec6004803603606081101561048d57600080fd5b506001600160a01b038135811691602081013590911690604001356110bd565b61030e600480360360208110156104c357600080fd5b50356001600160a01b0316611208565b61030e611223565b6103ec600480360360208110156104f157600080fd5b5035611229565b61030e6004803603602081101561050e57600080fd5b50356001600160a01b03166112c3565b6103ec6112d5565b6103ec6004803603602081101561053c57600080fd5b50356113c4565b6102d46004803603604081101561055957600080fd5b506001600160a01b03813516906020013561145e565b6102d46004803603604081101561058557600080fd5b506001600160a01b0381351690602001356115c2565b6103ec600480360360208110156105b157600080fd5b50356001600160a01b03166116e4565b610394611772565b6103ec600480360360408110156105df57600080fd5b8101906020810181356401000000008111156105fa57600080fd5b82018360208201111561060c57600080fd5b8035906020019184602083028401116401000000008311171561062e57600080fd5b91939092909160208101903564010000000081111561064c57600080fd5b82018360208201111561065e57600080fd5b8035906020019184602083028401116401000000008311171561068057600080fd5b509092509050611781565b6103ec600480360360e08110156106a157600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c00135611a7a565b61030e600480360360408110156106f257600080fd5b506001600160a01b0381358116916020013516611dbd565b61030e6004803603602081101561072057600080fd5b50356001600160a01b0316611de8565b6103ec6004803603602081101561074657600080fd5b50356001600160a01b0316611dfa565b6040518060400160405280600381526020017f444e41000000000000000000000000000000000000000000000000000000000081525081565b3360008181526006602052604081205490919042116107e3576040805162461bcd60e51b815260206004820152601960248201526000805160206127b8833981519152604482015290519081900360640190fd5b6001600160a01b0384166000908152600660205260409020548490421161083f576040805162461bcd60e51b815260206004820152601960248201526000805160206127b8833981519152604482015290519081900360640190fd5b600a54600160a01b900460ff16158061086257506009546001600160a01b031633145b6108a6576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6108b1338686611e62565b506001949350505050565b60066020526000908152604090205481565b60025490565b336000818152600660205260408120549091904211610928576040805162461bcd60e51b815260206004820152601960248201526000805160206127b8833981519152604482015290519081900360640190fd5b6001600160a01b03851660009081526006602052604090205485904211610984576040805162461bcd60e51b815260206004820152601960248201526000805160206127b8833981519152604482015290519081900360640190fd5b6001600160a01b038516600090815260066020526040902054859042116109e0576040805162461bcd60e51b815260206004820152601960248201526000805160206127b8833981519152604482015290519081900360640190fd5b600a54600160a01b900460ff161580610a0357506009546001600160a01b031633145b610a47576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b610a52878787611f4e565b6001600160a01b03871660009081526001602090815260408083203384529091529020546000191115610ad157610ad18733610acc8860405180606001604052806028815260200161284e602891396001600160a01b038d166000908152600160209081526040808320338452909152902054919061209e565b611e62565b5060019695505050505050565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b601281565b60035481565b6009546001600160a01b031681565b336000818152600660205260408120549091904211610b70576040805162461bcd60e51b815260206004820152601960248201526000805160206127b8833981519152604482015290519081900360640190fd5b6001600160a01b03841660009081526006602052604090205484904211610bcc576040805162461bcd60e51b815260206004820152601960248201526000805160206127b8833981519152604482015290519081900360640190fd5b600a54600160a01b900460ff161580610bef57506009546001600160a01b031633145b610c33576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b3360008181526001602090815260408083206001600160a01b038a1684529091529020546108b191908790610acc9088612135565b60075481565b6009546001600160a01b03163314610ccd576040805162461bcd60e51b815260206004820152601e60248201527f53656e646572206973206e6f7420676f7665726e616e636520626f6172640000604482015290519081900360640190fd5b600a54600160a01b900460ff16610d2b576040805162461bcd60e51b815260206004820152601260248201527f5061757361626c653a20756e7061757365640000000000000000000000000000604482015290519081900360640190fd5b600a805460ff60a01b191690556040517fa45f47fdea8a1efdd9029a5691c7f759c32b7c698632b563573e155625d1693390600090a1565b336000818152600660205260409020544211610db4576040805162461bcd60e51b815260206004820152601960248201526000805160206127b8833981519152604482015290519081900360640190fd5b600a54600160a01b900460ff161580610dd757506009546001600160a01b031633145b610e1b576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b610e25338361218f565b5050565b600a546001600160a01b03163314610e725760405162461bcd60e51b815260040180806020018281038252602a815260200180612824602a913960400191505060405180910390fd5b600a54610e87906001600160a01b031661227f565b600a805473ffffffffffffffffffffffffffffffffffffffff19169055565b6009546001600160a01b03163314610f05576040805162461bcd60e51b815260206004820152601e60248201527f53656e646572206973206e6f7420676f7665726e616e636520626f6172640000604482015290519081900360640190fd5b610f0e816122e8565b50565b6009546000906001600160a01b03163314610f73576040805162461bcd60e51b815260206004820152601e60248201527f53656e646572206973206e6f7420676f7665726e616e636520626f6172640000604482015290519081900360640190fd5b6001600160a01b0384166000908152600560205260409020544211610fdf576040805162461bcd60e51b815260206004820152601c60248201527f52657669657720706572696f64206973206e6f7420656c617073656400000000604482015290519081900360640190fd5b6001600160a01b03841660009081526006602052604090205442111561104c576040805162461bcd60e51b815260206004820152601760248201527f4465636973696f6e20706572696f642065787069726564000000000000000000604482015290519081900360640190fd5b611057848484611f4e565b826001600160a01b0316846001600160a01b03167ff0ce2c03e8c22e6c0a5077f1eccd528a2f03da3a15bf354d599bfe0910a9c9a1846040518082815260200191505060405180910390a35060015b9392505050565b600a54600160a01b900460ff1681565b6009546001600160a01b0316331461111c576040805162461bcd60e51b815260206004820152601e60248201527f53656e646572206973206e6f7420676f7665726e616e636520626f6172640000604482015290519081900360640190fd5b6000836001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561116b57600080fd5b505afa15801561117f573d6000803e3d6000fd5b505050506040513d602081101561119557600080fd5b50519050818110156111ee576040805162461bcd60e51b815260206004820152601b60248201527f45524332303a20496e73756666696369656e742062616c616e63650000000000604482015290519081900360640190fd5b6112026001600160a01b0385168484612339565b50505050565b6001600160a01b031660009081526020819052604090205490565b60085481565b6009546001600160a01b03163314611288576040805162461bcd60e51b815260206004820152601e60248201527f53656e646572206973206e6f7420676f7665726e616e636520626f6172640000604482015290519081900360640190fd5b60078190556040805182815290517feee6e94da6dbe8c539efcc3dd80f0420aea22e590aad7005b127bd855d6107529181900360200190a150565b60046020526000908152604090205481565b6009546001600160a01b03163314611334576040805162461bcd60e51b815260206004820152601e60248201527f53656e646572206973206e6f7420676f7665726e616e636520626f6172640000604482015290519081900360640190fd5b600a54600160a01b900460ff1615611386576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b600a805460ff60a01b1916600160a01b1790556040517f9e87fac88ff661f02d44f95383c817fece4bce600a3dab7a54406878b965e75290600090a1565b6009546001600160a01b03163314611423576040805162461bcd60e51b815260206004820152601e60248201527f53656e646572206973206e6f7420676f7665726e616e636520626f6172640000604482015290519081900360640190fd5b60088190556040805182815290517f10809cc5ca185b137f7fbda0e2e2791a6b1b5d66fe86d51c10c69c805c9118019181900360200190a150565b3360008181526006602052604081205490919042116114b2576040805162461bcd60e51b815260206004820152601960248201526000805160206127b8833981519152604482015290519081900360640190fd5b6001600160a01b0384166000908152600660205260409020548490421161150e576040805162461bcd60e51b815260206004820152601960248201526000805160206127b8833981519152604482015290519081900360640190fd5b600a54600160a01b900460ff16158061153157506009546001600160a01b031633145b611575576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6108b13386610acc8760405180606001604052806025815260200161290a602591393360009081526001602090815260408083206001600160a01b038f168452909152902054919061209e565b336000818152600660205260408120549091904211611616576040805162461bcd60e51b815260206004820152601960248201526000805160206127b8833981519152604482015290519081900360640190fd5b6001600160a01b03841660009081526006602052604090205484904211611672576040805162461bcd60e51b815260206004820152601960248201526000805160206127b8833981519152604482015290519081900360640190fd5b600a54600160a01b900460ff16158061169557506009546001600160a01b031633145b6116d9576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6108b1338686611f4e565b6009546001600160a01b03163314611743576040805162461bcd60e51b815260206004820152601e60248201527f53656e646572206973206e6f7420676f7665726e616e636520626f6172640000604482015290519081900360640190fd5b600a805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b600a546001600160a01b031681565b3360008181526006602052604090205442116117d2576040805162461bcd60e51b815260206004820152601960248201526000805160206127b8833981519152604482015290519081900360640190fd5b600a54600160a01b900460ff1615806117f557506009546001600160a01b031633145b611839576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b83821461188d576040805162461bcd60e51b815260206004820152601c60248201527f444e41546f6b656e3a2057726f6e67206172726179206c656e67746800000000604482015290519081900360640190fd5b6000805b838110156118c8576118be8585838181106118a857fe5b905060200201358361213590919063ffffffff16565b9150600101611891565b506118fd816040518060600160405280602681526020016127d86026913933600090815260208190526040902054919061209e565b336000908152602081905260408120919091555b85811015611a7157600087878381811061192757fe5b905060200201356001600160a01b03169050600086868481811061194757fe5b60200291909101359150506001600160a01b0382166119975760405162461bcd60e51b81526004018080602001828103825260238152602001806127516023913960400191505060405180910390fd5b6001600160a01b03821660009081526006602052604090205442116119f1576040805162461bcd60e51b815260206004820152601960248201526000805160206127b8833981519152604482015290519081900360640190fd5b6001600160a01b038216600090815260208190526040902054611a149082612135565b6001600160a01b038316600081815260208181526040918290209390935580518481529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050600101611911565b50505050505050565b6001600160a01b0387166000908152600660205260409020544211611ad4576040805162461bcd60e51b815260206004820152601960248201526000805160206127b8833981519152604482015290519081900360640190fd5b6001600160a01b0386166000908152600660205260409020544211611b2e576040805162461bcd60e51b815260206004820152601960248201526000805160206127b8833981519152604482015290519081900360640190fd5b600a54600160a01b900460ff161580611b5157506009546001600160a01b031633145b611b95576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b42841015611bea576040805162461bcd60e51b815260206004820152601160248201527f444e41546f6b656e3a2045585049524544000000000000000000000000000000604482015290519081900360640190fd5b6003546001600160a01b0380891660008181526004602090815260408083208054600180820190925582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98186015280840196909652958d166060860152608085018c905260a085019590955260c08085018b90528151808603909101815260e0850182528051908301207f19010000000000000000000000000000000000000000000000000000000000006101008601526101028501969096526101228085019690965280518085039096018652610142840180825286519683019690962095839052610162840180825286905260ff89166101828501526101a284018890526101c28401879052519193926101e280820193601f1981019281900390910190855afa158015611d20573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811615801590611d565750886001600160a01b0316816001600160a01b0316145b611da7576040805162461bcd60e51b815260206004820152601b60248201527f444e41546f6b656e3a20494e56414c49445f5349474e41545552450000000000604482015290519081900360640190fd5b611db2898989611e62565b505050505050505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60056020526000908152604090205481565b6009546001600160a01b03163314611e59576040805162461bcd60e51b815260206004820152601e60248201527f53656e646572206973206e6f7420676f7665726e616e636520626f6172640000604482015290519081900360640190fd5b610f0e816123be565b6001600160a01b038316611ea75760405162461bcd60e51b81526004018080602001828103825260248152602001806128bc6024913960400191505060405180910390fd5b6001600160a01b038216611eec5760405162461bcd60e51b81526004018080602001828103825260228152602001806127966022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611f935760405162461bcd60e51b81526004018080602001828103825260258152602001806128976025913960400191505060405180910390fd5b6001600160a01b038216611fd85760405162461bcd60e51b81526004018080602001828103825260238152602001806127516023913960400191505060405180910390fd5b612015816040518060600160405280602681526020016127d8602691396001600160a01b038616600090815260208190526040902054919061209e565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546120449082612135565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000818484111561212d5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156120f25781810151838201526020016120da565b50505050905090810190601f16801561211f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828201838110156110a6576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b0382166121d45760405162461bcd60e51b81526004018080602001828103825260218152602001806128766021913960400191505060405180910390fd5b61221181604051806060016040528060228152602001612774602291396001600160a01b038516600090815260208190526040902054919061209e565b6001600160a01b0383166000908152602081905260409020556002546122379082612464565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6009546040516001600160a01b038084169216907fc9236e88ccc318dbded95bbdbed52565112e581abe78292b12344574cd3a267b90600090a36009805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6001600160a01b03811660008181526005602090815260408083208390556006909152808220829055517fd7f9e268a7b73266b018e33a21334c62cd762d663acc0f052eb872992da319db9190a250565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb000000000000000000000000000000000000000000000000000000001790526123b99084906124c1565b505050565b60006123d56007544261213590919063ffffffff16565b905060006123fa6123f360085460075461213590919063ffffffff16565b4290612135565b6001600160a01b038416600081815260056020908152604080832087905560068252918290208490558151868152908101849052815193945091927f5496407254a0eb60bfb0684ce13af563d549d67de6b58eca5805aed0eab2806b9281900390910190a2505050565b6000828211156124bb576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6000612516826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166125729092919063ffffffff16565b8051909150156123b95780806020019051602081101561253557600080fd5b50516123b95760405162461bcd60e51b815260040180806020018281038252602a8152602001806128e0602a913960400191505060405180910390fd5b60606125818484600085612589565b949350505050565b6060824710156125ca5760405162461bcd60e51b81526004018080602001828103825260268152602001806127fe6026913960400191505060405180910390fd5b6125d3856126e4565b612624576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b600080866001600160a01b031685876040518082805190602001908083835b602083106126625780518252601f199092019160209182019101612643565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146126c4576040519150601f19603f3d011682016040523d82523d6000602084013e6126c9565b606091505b50915091506126d98282866126ea565b979650505050505050565b3b151590565b606083156126f95750816110a6565b8251156127095782518084602001fd5b60405162461bcd60e51b81526020600482018181528451602484015284518593919283926044019190850190808383600083156120f25781810151838201526020016120da56fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f20616464726573734163636f756e74206973206265696e672072657669657765640000000000000045524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c53656e646572206973206e6f74207468652070656e64696e6720676f7665726e616e636520626f61726445524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e18b5ce6d877ece88d3a483e94776e0bd15880a9bcc3a9a1b8830caee0de59c764736f6c63430007060033
Deployed Bytecode Sourcemap
21945:14641:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22105:35;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27038:256;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;27038:256:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;22768:50;;;;;;;;;;;;;;;;-1:-1:-1;22768:50:0;-1:-1:-1;;;;;22768:50:0;;:::i;:::-;;;;;;;;;;;;;;;;25925:100;;;:::i;27768:565::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;27768:565:0;;;;;;;;;;;;;;;;;:::i;22544:108::-;;;:::i;22191:35::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;22401:31;;;:::i;22955:30::-;;;:::i;:::-;;;;-1:-1:-1;;;;;22955:30:0;;;;;;;;;;;;;;29550:304;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29550:304:0;;;;;;;;:::i;22825:36::-;;;:::i;24964:153::-;;;:::i;:::-;;33245:144;;;;;;;;;;;;;;;;-1:-1:-1;33245:144:0;;:::i;25488:168::-;;;:::i;25228:97::-;;;;;;;;;;;;;;;;-1:-1:-1;25228:97:0;-1:-1:-1;;;;;25228:97:0;;:::i;28719:422::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;28719:422:0;;;;;;;;;;;;;;;;;:::i;23036:25::-;;;:::i;35779:268::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;35779:268:0;;;;;;;;;;;;;;;;;:::i;26088:119::-;;;;;;;;;;;;;;;;-1:-1:-1;26088:119:0;-1:-1:-1;;;;;26088:119:0;;:::i;22878:39::-;;;:::i;35409:171::-;;;;;;;;;;;;;;;;-1:-1:-1;35409:171:0;;:::i;22659:41::-;;;;;;;;;;;;;;;;-1:-1:-1;22659:41:0;-1:-1:-1;;;;;22659:41:0;;:::i;24809:147::-;;;:::i;35588:183::-;;;;;;;;;;;;;;;;-1:-1:-1;35588:183:0;;:::i;30357:355::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30357:355:0;;;;;;;;:::i;26420:265::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;26420:265:0;;;;;;;;:::i;25333:147::-;;;;;;;;;;;;;;;;-1:-1:-1;25333:147:0;-1:-1:-1;;;;;25333:147:0;;:::i;22992:37::-;;;:::i;33397:979::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33397:979:0;;-1:-1:-1;33397:979:0;-1:-1:-1;33397:979:0;:::i;34384:1017::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;34384:1017:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;26748:143::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;26748:143:0;;;;;;;;;;:::i;22713:48::-;;;;;;;;;;;;;;;;-1:-1:-1;22713:48:0;-1:-1:-1;;;;;22713:48:0;;:::i;25125:95::-;;;;;;;;;;;;;;;;-1:-1:-1;25125:95:0;-1:-1:-1;;;;;25125:95:0;;:::i;22105:35::-;;;;;;;;;;;;;;;;;;;:::o;27038:256::-;27126:10;27210:4;24028:24;;;:15;:24;;;;;;27210:4;;27126:10;24055:15;-1:-1:-1;24020:80:0;;;;;-1:-1:-1;;;24020:80:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;24020:80:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;24028:24:0;::::1;;::::0;;;:15:::1;:24;::::0;;;;;27160:7;;24055:15:::1;-1:-1:-1::0;24020:80:0::1;;;::::0;;-1:-1:-1;;;24020:80:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;;;;;24020:80:0;;;;;;;;;;;;;::::1;;23572:6:::2;::::0;-1:-1:-1;;;23572:6:0;::::2;;;23571:7;::::0;:40:::2;;-1:-1:-1::0;23596:15:0::2;::::0;-1:-1:-1;;;;;23596:15:0::2;23582:10;:29;23571:40;23563:69;;;::::0;;-1:-1:-1;;;23563:69:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;23563:69:0;;;;;;;;;;;;;::::2;;27227:37:::3;27236:10;27248:7;27257:6;27227:8;:37::i;:::-;-1:-1:-1::0;27282:4:0::3;::::0;27038:256;-1:-1:-1;;;;27038:256:0:o;22768:50::-;;;;;;;;;;;;;:::o;25925:100::-;26005:12;;25925:100;:::o;27768:565::-;27879:10;27995:4;24028:24;;;:15;:24;;;;;;27995:4;;27879:10;24055:15;-1:-1:-1;24020:80:0;;;;;-1:-1:-1;;;24020:80:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;24020:80:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;24028:24:0;::::1;;::::0;;;:15:::1;:24;::::0;;;;;27913:6;;24055:15:::1;-1:-1:-1::0;24020:80:0::1;;;::::0;;-1:-1:-1;;;24020:80:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;;;;;24020:80:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;24028:24:0;::::2;;::::0;;;:15:::2;:24;::::0;;;;;27943:9;;24055:15:::2;-1:-1:-1::0;24020:80:0::2;;;::::0;;-1:-1:-1;;;24020:80:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;;;;;;;;;24020:80:0;;;;;;;;;;;;;::::2;;23572:6:::3;::::0;-1:-1:-1;;;23572:6:0;::::3;;;23571:7;::::0;:40:::3;;-1:-1:-1::0;23596:15:0::3;::::0;-1:-1:-1;;;;;23596:15:0::3;23582:10;:29;23571:40;23563:69;;;::::0;;-1:-1:-1;;;23563:69:0;;::::3;;::::0;::::3;::::0;::::3;::::0;;;;-1:-1:-1;;;23563:69:0;;;;;;;;;;;;;::::3;;28012:36:::4;28022:6;28030:9;28041:6;28012:9;:36::i;:::-;-1:-1:-1::0;;;;;28063:19:0;::::4;22096:1;28063:19:::0;;;:11:::4;:19;::::0;;;;;;;28083:10:::4;28063:31:::0;;;;;;;;-1:-1:-1;;;28059:245:0::4;;;28175:117;28184:6;28192:10;28204:87;28240:6;28204:87;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;28204:19:0;::::4;;::::0;;;:11:::4;:19;::::0;;;;;;;28224:10:::4;28204:31:::0;;;;;;;;;:87;:35:::4;:87::i;:::-;28175:8;:117::i;:::-;-1:-1:-1::0;28321:4:0::4;::::0;27768:565;-1:-1:-1;;;;;;27768:565:0:o;22544:108::-;22586:66;22544:108;:::o;22191:35::-;22224:2;22191:35;:::o;22401:31::-;;;;:::o;22955:30::-;;;-1:-1:-1;;;;;22955:30:0;;:::o;29550:304::-;29644:10;29728:4;24028:24;;;:15;:24;;;;;;29728:4;;29644:10;24055:15;-1:-1:-1;24020:80:0;;;;;-1:-1:-1;;;24020:80:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;24020:80:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;24028:24:0;::::1;;::::0;;;:15:::1;:24;::::0;;;;;29678:7;;24055:15:::1;-1:-1:-1::0;24020:80:0::1;;;::::0;;-1:-1:-1;;;24020:80:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;;;;;24020:80:0;;;;;;;;;;;;;::::1;;23572:6:::2;::::0;-1:-1:-1;;;23572:6:0;::::2;;;23571:7;::::0;:40:::2;;-1:-1:-1::0;23596:15:0::2;::::0;-1:-1:-1;;;;;23596:15:0::2;23582:10;:29;23571:40;23563:69;;;::::0;;-1:-1:-1;;;23563:69:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;23563:69:0;;;;;;;;;;;;;::::2;;29754:10:::3;29775:23;::::0;;;:11:::3;:23;::::0;;;;;;;-1:-1:-1;;;;;29775:32:0;::::3;::::0;;;;;;;;29745:79:::3;::::0;29754:10;29766:7;;29775:48:::3;::::0;29812:10;29775:36:::3;:48::i;22825:36::-:0;;;;:::o;24964:153::-;23724:15;;-1:-1:-1;;;;;23724:15:0;23710:10;:29;23702:72;;;;;-1:-1:-1;;;23702:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;25029:6:::1;::::0;-1:-1:-1;;;25029:6:0;::::1;;;25021:37;;;::::0;;-1:-1:-1;;;25021:37:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;25069:6;:14:::0;;-1:-1:-1;;;;25069:14:0::1;::::0;;25099:10:::1;::::0;::::1;::::0;25078:5:::1;::::0;25099:10:::1;24964:153::o:0;33245:144::-;33305:10;24028:24;;;;:15;:24;;;;;;24055:15;-1:-1:-1;24020:80:0;;;;;-1:-1:-1;;;24020:80:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;24020:80:0;;;;;;;;;;;;;;;23572:6:::1;::::0;-1:-1:-1;;;23572:6:0;::::1;;;23571:7;::::0;:40:::1;;-1:-1:-1::0;23596:15:0::1;::::0;-1:-1:-1;;;;;23596:15:0::1;23582:10;:29;23571:40;23563:69;;;::::0;;-1:-1:-1;;;23563:69:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;23563:69:0;;;;;;;;;;;;;::::1;;33356:25:::2;33362:10;33374:6;33356:5;:25::i;:::-;33245:144:::0;;:::o;25488:168::-;23873:22;;-1:-1:-1;;;;;23873:22:0;23859:10;:36;23851:91;;;;-1:-1:-1;;;23851:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25579:22:::1;::::0;25559:43:::1;::::0;-1:-1:-1;;;;;25579:22:0::1;25559:19;:43::i;:::-;25613:22;:35:::0;;-1:-1:-1;;25613:35:0::1;::::0;;25488:168::o;25228:97::-;23724:15;;-1:-1:-1;;;;;23724:15:0;23710:10;:29;23702:72;;;;;-1:-1:-1;;;23702:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;25300:17:::1;25309:7;25300:8;:17::i;:::-;25228:97:::0;:::o;28719:422::-;23724:15;;28840:4;;-1:-1:-1;;;;;23724:15:0;23710:10;:29;23702:72;;;;;-1:-1:-1;;;23702:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28884:19:0;::::1;;::::0;;;:13:::1;:19;::::0;;;;;28865:15:::1;:38;28857:79;;;::::0;;-1:-1:-1;;;28857:79:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;28974:21:0;::::1;;::::0;;;:15:::1;:21;::::0;;;;;28955:15:::1;:40;;28947:76;;;::::0;;-1:-1:-1;;;28947:76:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;29036:26;29046:4;29052:2;29056:5;29036:9;:26::i;:::-;29101:2;-1:-1:-1::0;;;;;29078:33:0::1;29095:4;-1:-1:-1::0;;;;;29078:33:0::1;;29105:5;29078:33;;;;;;;;;;;;;;;;;;-1:-1:-1::0;29129:4:0::1;23785:1;28719:422:::0;;;;;:::o;23036:25::-;;;-1:-1:-1;;;23036:25:0;;;;;:::o;35779:268::-;23724:15;;-1:-1:-1;;;;;23724:15:0;23710:10;:29;23702:72;;;;;-1:-1:-1;;;23702:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;35882:15:::1;35900:5;-1:-1:-1::0;;;;;35900:15:0::1;;35924:4;35900:30;;;;;;;;;;;;;-1:-1:-1::0;;;;;35900:30:0::1;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;35900:30:0;;-1:-1:-1;35949:17:0;;::::1;;35941:57;;;::::0;;-1:-1:-1;;;35941:57:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;36009:30;-1:-1:-1::0;;;;;36009:18:0;::::1;36028:2:::0;36032:6;36009:18:::1;:30::i;:::-;23785:1;35779:268:::0;;;:::o;26088:119::-;-1:-1:-1;;;;;26181:18:0;26154:7;26181:18;;;;;;;;;;;;26088:119::o;22878:39::-;;;;:::o;35409:171::-;23724:15;;-1:-1:-1;;;;;23724:15:0;23710:10;:29;23702:72;;;;;-1:-1:-1;;;23702:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;35495:12:::1;:28:::0;;;35539:33:::1;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;35409:171:::0;:::o;22659:41::-;;;;;;;;;;;;;:::o;24809:147::-;23724:15;;-1:-1:-1;;;;;23724:15:0;23710:10;:29;23702:72;;;;;-1:-1:-1;;;23702:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;24873:6:::1;::::0;-1:-1:-1;;;24873:6:0;::::1;;;24872:7;24864:36;;;::::0;;-1:-1:-1;;;24864:36:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;24864:36:0;;;;;;;;;;;;;::::1;;24911:6;:13:::0;;-1:-1:-1;;;;24911:13:0::1;-1:-1:-1::0;;;24911:13:0::1;::::0;;24940:8:::1;::::0;::::1;::::0;24911:13;;24940:8:::1;24809:147::o:0;35588:183::-;23724:15;;-1:-1:-1;;;;;23724:15:0;23710:10;:29;23702:72;;;;;-1:-1:-1;;;23702:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;35678:14:::1;:32:::0;;;35726:37:::1;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;35588:183:::0;:::o;30357:355::-;30456:10;30540:4;24028:24;;;:15;:24;;;;;;30540:4;;30456:10;24055:15;-1:-1:-1;24020:80:0;;;;;-1:-1:-1;;;24020:80:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;24020:80:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;24028:24:0;::::1;;::::0;;;:15:::1;:24;::::0;;;;;30490:7;;24055:15:::1;-1:-1:-1::0;24020:80:0::1;;;::::0;;-1:-1:-1;;;24020:80:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;;;;;24020:80:0;;;;;;;;;;;;;::::1;;23572:6:::2;::::0;-1:-1:-1;;;23572:6:0;::::2;;;23571:7;::::0;:40:::2;;-1:-1:-1::0;23596:15:0::2;::::0;-1:-1:-1;;;;;23596:15:0::2;23582:10;:29;23571:40;23563:69;;;::::0;;-1:-1:-1;;;23563:69:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;23563:69:0;;;;;;;;;;;;;::::2;;30557:125:::3;30566:10;30578:7;30587:94;30624:15;30587:94;;;;;;;;;;;;;;;;;30599:10;30587:23;::::0;;;:11:::3;:23;::::0;;;;;;;-1:-1:-1;;;;;30587:32:0;::::3;::::0;;;;;;;;;:94;:36:::3;:94::i;26420:265::-:0;26512:10;26598:4;24028:24;;;:15;:24;;;;;;26598:4;;26512:10;24055:15;-1:-1:-1;24020:80:0;;;;;-1:-1:-1;;;24020:80:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;24020:80:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;24028:24:0;::::1;;::::0;;;:15:::1;:24;::::0;;;;;26546:9;;24055:15:::1;-1:-1:-1::0;24020:80:0::1;;;::::0;;-1:-1:-1;;;24020:80:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;;;;;24020:80:0;;;;;;;;;;;;;::::1;;23572:6:::2;::::0;-1:-1:-1;;;23572:6:0;::::2;;;23571:7;::::0;:40:::2;;-1:-1:-1::0;23596:15:0::2;::::0;-1:-1:-1;;;;;23596:15:0::2;23582:10;:29;23571:40;23563:69;;;::::0;;-1:-1:-1;;;23563:69:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;23563:69:0;;;;;;;;;;;;;::::2;;26615:40:::3;26625:10;26637:9;26648:6;26615:9;:40::i;25333:147::-:0;23724:15;;-1:-1:-1;;;;;23724:15:0;23710:10;:29;23702:72;;;;;-1:-1:-1;;;23702:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;25429:22:::1;:43:::0;;-1:-1:-1;;25429:43:0::1;-1:-1:-1::0;;;;;25429:43:0;;;::::1;::::0;;;::::1;::::0;;25333:147::o;22992:37::-;;;-1:-1:-1;;;;;22992:37:0;;:::o;33397:979::-;33500:10;24028:24;;;;:15;:24;;;;;;24055:15;-1:-1:-1;24020:80:0;;;;;-1:-1:-1;;;24020:80:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;24020:80:0;;;;;;;;;;;;;;;23572:6:::1;::::0;-1:-1:-1;;;23572:6:0;::::1;;;23571:7;::::0;:40:::1;;-1:-1:-1::0;23596:15:0::1;::::0;-1:-1:-1;;;;;23596:15:0::1;23582:10;:29;23571:40;23563:69;;;::::0;;-1:-1:-1;;;23563:69:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;23563:69:0;;;;;;;;;;;;;::::1;;33572:35:::0;;::::2;33564:76;;;::::0;;-1:-1:-1;;;33564:76:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;::::2;::::0;;;;;;;;;;;;;::::2;;33653:13;33686:9:::0;33681:101:::2;33701:18:::0;;::::2;33681:101;;;33749:21;33759:7;;33767:1;33759:10;;;;;;;;;;;;;33749:5;:9;;:21;;;;:::i;:::-;33741:29:::0;-1:-1:-1;33721:3:0::2;;33681:101;;;;33818:74;33844:5;33818:74;;;;;;;;;;;;;;;;;33828:10;33818:9;:21:::0;;;::::2;::::0;;;;;;;;:74;:25:::2;:74::i;:::-;33804:10;33794:9;:21:::0;;;::::2;::::0;;;;;;:98;;;;33905:464:::2;33925:21:::0;;::::2;33905:464;;;33968:17;33988:10;;33999:1;33988:13;;;;;;;;;;;;;-1:-1:-1::0;;;;;33988:13:0::2;33968:33;;34016:14;34033:7;;34041:1;34033:10;;;;;;;;;::::0;;;::::2;;::::0;-1:-1:-1;;;;;;;34066:23:0;::::2;34058:71;;;;-1:-1:-1::0;;;34058:71:0::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;34152:26:0;::::2;;::::0;;;:15:::2;:26;::::0;;;;;34181:15:::2;-1:-1:-1::0;34144:82:0::2;;;::::0;;-1:-1:-1;;;34144:82:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;;;;;;;;;34144:82:0;;;;;;;;;;;;;::::2;;-1:-1:-1::0;;;;;34266:20:0;::::2;:9;:20:::0;;;::::2;::::0;;;;;;;:32:::2;::::0;34291:6;34266:24:::2;:32::i;:::-;-1:-1:-1::0;;;;;34243:20:0;::::2;:9;:20:::0;;;::::2;::::0;;;;;;;;:55;;;;34318:39;;;;;;;34243:20;;34327:10:::2;::::0;34318:39:::2;::::0;;;;;;;;::::2;-1:-1:-1::0;;33948:3:0::2;;33905:464;;;;23643:1;33397:979:::0;;;;;:::o;34384:1017::-;-1:-1:-1;;;;;34595:22:0;;;;;;:15;:22;;;;;;34620:15;-1:-1:-1;34587:78:0;;;;;-1:-1:-1;;;34587:78:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;34587:78:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;34684:24:0;;;;;;:15;:24;;;;;;34711:15;-1:-1:-1;34676:80:0;;;;;-1:-1:-1;;;34676:80:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;34676:80:0;;;;;;;;;;;;;;;34776:6;;-1:-1:-1;;;34776:6:0;;;;34775:7;;:40;;-1:-1:-1;34800:15:0;;-1:-1:-1;;;;;34800:15:0;34786:10;:29;34775:40;34767:69;;;;;-1:-1:-1;;;34767:69:0;;;;;;;;;;;;-1:-1:-1;;;34767:69:0;;;;;;;;;;;;;;;34867:15;34855:8;:27;;34847:57;;;;;-1:-1:-1;;;34847:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;35024:16;;-1:-1:-1;;;;;35120:13:0;;;34919:14;35120:13;;;:6;:13;;;;;;;;:15;;;;;;;;;35069:77;;22586:66;35069:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35059:88;;;;;;34960:202;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34936:237;;;;;;;;;35213:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34919:14;;35120:15;35213:26;;;;;-1:-1:-1;;35213:26:0;;;;;;;;;;35120:15;35213:26;;;;;;;;;;;;;;;-1:-1:-1;;35213:26:0;;-1:-1:-1;;35213:26:0;;;-1:-1:-1;;;;;;;35260:30:0;;;;;;:59;;;35314:5;-1:-1:-1;;;;;35294:25:0;:16;-1:-1:-1;;;;;35294:25:0;;35260:59;35252:99;;;;;-1:-1:-1;;;35252:99:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;35362:31;35371:5;35378:7;35387:5;35362:8;:31::i;:::-;34384:1017;;;;;;;;;:::o;26748:143::-;-1:-1:-1;;;;;26856:18:0;;;26829:7;26856:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;26748:143::o;22713:48::-;;;;;;;;;;;;;:::o;25125:95::-;23724:15;;-1:-1:-1;;;;;23724:15:0;23710:10;:29;23702:72;;;;;-1:-1:-1;;;23702:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;25196:16:::1;25204:7;25196;:16::i;32791:338::-:0;-1:-1:-1;;;;;32885:19:0;;32877:68;;;;-1:-1:-1;;;32877:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32964:21:0;;32956:68;;;;-1:-1:-1;;;32956:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33037:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;33089:32;;;;;;;;;;;;;;;;;32791:338;;;:::o;31202:471::-;-1:-1:-1;;;;;31300:20:0;;31292:70;;;;-1:-1:-1;;;31292:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31381:23:0;;31373:71;;;;-1:-1:-1;;;31373:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31477;31499:6;31477:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31477:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;31457:17:0;;;:9;:17;;;;;;;;;;;:91;;;;31582:20;;;;;;;:32;;31607:6;31582:24;:32::i;:::-;-1:-1:-1;;;;;31559:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;31630:35;;;;;;;31559:20;;31630:35;;;;;;;;;;;;;31202:471;;;:::o;8382:166::-;8468:7;8504:12;8496:6;;;;8488:29;;;;-1:-1:-1;;;8488:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;8535:5:0;;;8382:166::o;5555:179::-;5613:7;5645:5;;;5669:6;;;;5661:46;;;;;-1:-1:-1;;;5661:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;32005:348;-1:-1:-1;;;;;32081:21:0;;32073:67;;;;-1:-1:-1;;;32073:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32174:68;32197:6;32174:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32174:18:0;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;32153:18:0;;:9;:18;;;;;;;;;;:89;32268:12;;:24;;32285:6;32268:16;:24::i;:::-;32253:12;:39;32308:37;;;;;;;;32334:1;;-1:-1:-1;;;;;32308:37:0;;;;;;;;;;;;32005:348;;:::o;25664:196::-;25769:15;;25746:59;;-1:-1:-1;;;;;25746:59:0;;;;25769:15;;25746:59;;25769:15;;25746:59;25816:15;:36;;-1:-1:-1;;25816:36:0;-1:-1:-1;;;;;25816:36:0;;;;;;;;;;25664:196::o;36422:161::-;-1:-1:-1;;;;;36477:22:0;;36502:1;36477:22;;;:13;:22;;;;;;;;:26;;;36514:15;:24;;;;;;:28;;;36558:17;;;36502:1;36558:17;36422:161;:::o;18837:177::-;18947:58;;;-1:-1:-1;;;;;18947:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18970:23;18947:58;;;18920:86;;18940:5;;18920:19;:86::i;:::-;18837:177;;;:::o;36055:359::-;36109:19;36131:33;36151:12;;36131:15;:19;;:33;;;;:::i;:::-;36109:55;;36175:19;36197:53;36217:32;36234:14;;36217:12;;:16;;:32;;;;:::i;:::-;36197:15;;:19;:53::i;:::-;-1:-1:-1;;;;;36261:22:0;;;;;;:13;:22;;;;;;;;:36;;;36308:15;:24;;;;;;:38;;;36362:44;;;;;;;;;;;;;36175:75;;-1:-1:-1;36261:22:0;;36362:44;;;;;;;;;;36055:359;;;:::o;6017:158::-;6075:7;6108:1;6103;:6;;6095:49;;;;;-1:-1:-1;;;6095:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6162:5:0;;;6017:158::o;21142:761::-;21566:23;21592:69;21620:4;21592:69;;;;;;;;;;;;;;;;;21600:5;-1:-1:-1;;;;;21592:27:0;;;:69;;;;;:::i;:::-;21676:17;;21566:95;;-1:-1:-1;21676:21:0;21672:224;;21818:10;21807:30;;;;;;;;;;;;;;;-1:-1:-1;21807:30:0;21799:85;;;;-1:-1:-1;;;21799:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13875:195;13978:12;14010:52;14032:6;14040:4;14046:1;14049:12;14010:21;:52::i;:::-;14003:59;13875:195;-1:-1:-1;;;;13875:195:0:o;14927:530::-;15054:12;15112:5;15087:21;:30;;15079:81;;;;-1:-1:-1;;;15079:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15179:18;15190:6;15179:10;:18::i;:::-;15171:60;;;;;-1:-1:-1;;;15171:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;15305:12;15319:23;15346:6;-1:-1:-1;;;;;15346:11:0;15366:5;15374:4;15346:33;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;15346:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15304:75;;;;15397:52;15415:7;15424:10;15436:12;15397:17;:52::i;:::-;15390:59;14927:530;-1:-1:-1;;;;;;;14927:530:0:o;10957:422::-;11324:20;11363:8;;;10957:422::o;17467:742::-;17582:12;17611:7;17607:595;;;-1:-1:-1;17642:10:0;17635:17;;17607:595;17756:17;;:21;17752:439;;18019:10;18013:17;18080:15;18067:10;18063:2;18059:19;18052:44;17967:148;18155:20;;-1:-1:-1;;;18155:20:0;;;;;;;;;;;;;;;;;18162:12;;18155:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Swarm Source
ipfs://e18b5ce6d877ece88d3a483e94776e0bd15880a9bcc3a9a1b8830caee0de59c7
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.