import sys
sys.path.insert(0,'/tmp/claude-0/-root-ants/f0a0d69c-fbe4-4887-8c0d-a5302a0da398/scratchpad')
from meta import *
L=[literal(i) for i in range(NLIT)]
open('/root/ants/string_literals.txt','w').write('\n'.join(L))
import re
urls=sorted({x for x in L if re.search(r'https?://|wss?://|\.com|\.net|\.io\b|\.org|ws://',x)})
print('total literals',len(L),' url-ish',len(urls))
for u in urls: print(repr(u))
