This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {"question":"Will US BTC spot ETFs have net positive inflows on May 5, 2026 per Farside Investors?","outcomes":["Yes","No"],"model":{"model_identifier":"Qwen/Qwen3-32B","prompt_context":"You are a prediction market settlement judge. Determine the outcome using ONLY the evidence provided below. Do not use outside knowledge. Do not guess.\n\nQUESTION: Will US BTC spot ETFs have net positive inflows on May 5, 2026 per Farside Investors\n\nDATA SOURCES:\n- Farside Investors BTC ETF flow table (https://farside.co.uk/btc/)\n\nSETTLEMENT RULES:\n- Use ONLY the evidence appended below.\n- Locate the Total net flow value (USD millions) for trading date Tuesday, May 5, 2026.\n- Output \"Yes\" if: the Total net flow is strictly greater than zero (positive inflows)\n- Output \"No\" if: the Total net flow is zero or negative (zero inflows or net outflows)\n\nVALID OUTCOMES — output exactly one and nothing else:\nYes\nNo\n\nSource data below:\n"},"initial_liquidity":"1000000","initial_pool":"707107","refund":"292893","mark |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| postfix operator ~ | |
| protocol StaticallyAccessible { } | |
| extension StaticallyAccessible { | |
| static postfix func ~ (c: Self) -> Self.Type { | |
| return type(of: c) | |
| } | |
| var 🌩: Self.Type { | |
| return type(of: self) | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import Foundation | |
| import UIKit | |
| class PassThroughView: UIView { | |
| override func pointInside(point: CGPoint, withEvent event: UIEvent?) -> Bool { | |
| for subview in subviews as [UIView] { | |
| if !subview.hidden && subview.alpha > 0 && subview.userInteractionEnabled && subview.pointInside(convertPoint(point, toView: subview), withEvent: event) { | |
| return true | |
| } | |
| } |