Skip to content

Commit

Permalink
Do not upload files to anonfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
waybackarchiver committed Aug 10, 2024
1 parent 3a5b1d0 commit 4199e19
Show file tree
Hide file tree
Showing 10 changed files with 19 additions and 69 deletions.
24 changes: 8 additions & 16 deletions reduxer/example.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,57 +16,49 @@ func BundleExample() Reduxer {
Img: Asset{
Local: "/path/to/image",
Remote: Remote{
Anonfile: "https://anonfiles.com/FbZfSa9eu4",
Catbox: "https://files.catbox.moe/9u6yvu.png",
Catbox: "https://files.catbox.moe/9u6yvu.png",
},
},
PDF: Asset{
Local: "/path/to/pdf",
Remote: Remote{
Anonfile: "https://anonfiles.com/r4G8Sb90ud",
Catbox: "https://files.catbox.moe/q73uqh.pdf",
Catbox: "https://files.catbox.moe/q73uqh.pdf",
},
},
Raw: Asset{
Local: "/path/to/htm",
Remote: Remote{
Anonfile: "https://anonfiles.com/pbG4Se94ua",
Catbox: "https://files.catbox.moe/bph1g6.htm",
Catbox: "https://files.catbox.moe/bph1g6.htm",
},
},
Txt: Asset{
Local: "/path/to/txt",
Remote: Remote{
Anonfile: "https://anonfiles.com/naG6S09bu1",
Catbox: "https://files.catbox.moe/wwrby6.txt",
Catbox: "https://files.catbox.moe/wwrby6.txt",
},
},
HAR: Asset{
Local: "/path/to/har",
Remote: Remote{
Anonfile: "https://anonfiles.com/n1paZfB3ub",
Catbox: "https://files.catbox.moe/3agtva.har",
Catbox: "https://files.catbox.moe/3agtva.har",
},
},
HTM: Asset{
Local: "/path/to/single-htm",
Remote: Remote{
Anonfile: "https://anonfiles.com/v4G4S09abc",
Catbox: "",
Catbox: "",
},
},
WARC: Asset{
Local: "/path/to/warc",
Remote: Remote{
Anonfile: "https://anonfiles.com/v4G4S09auc",
Catbox: "invalid-url-moe/kkai0w.warc",
Catbox: "invalid-url-moe/kkai0w.warc",
},
},
Media: Asset{
Local: "",
Remote: Remote{
Anonfile: "",
Catbox: "",
Catbox: "",
},
},
},
Expand Down
27 changes: 7 additions & 20 deletions reduxer/reduxer.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ import (

"github.com/go-shiori/go-readability"
"github.com/go-shiori/obelisk"
"github.com/wabarc/go-anonfile"
"github.com/wabarc/go-catbox"
"github.com/wabarc/helper"
"github.com/wabarc/logger"
Expand Down Expand Up @@ -73,8 +72,7 @@ type Asset struct {

// Remote represents the file on the remote server.
type Remote struct {
Anonfile string
Catbox string
Catbox string
}

// Src represents the requested url.
Expand Down Expand Up @@ -317,7 +315,6 @@ func remotely(ctx context.Context, artifact *Artifact) (err error) {
}

cat := catbox.New(ingress.Client())
anon := anonfile.NewAnonfile(ingress.Client())
g, _ := errgroup.WithContext(ctx)

var mu sync.RWMutex
Expand All @@ -333,22 +330,12 @@ func remotely(ctx context.Context, artifact *Artifact) (err error) {
g.Go(func() error {
var remote Remote
mu.Lock()
func() {
r, e := anon.Upload(asset.Local)
if e != nil {
err = errors.Wrap(err, fmt.Sprintf("upload %s to anonfiles failed: %v", asset.Local, e))
} else {
remote.Anonfile = r.Short()
}
}()
func() {
c, e := cat.Upload(asset.Local)
if e != nil {
err = errors.Wrap(err, fmt.Sprintf("upload %s to catbox failed: %v", asset.Local, e))
} else {
remote.Catbox = c
}
}()
c, e := cat.Upload(asset.Local)
if e != nil {
err = errors.Wrap(err, fmt.Sprintf("upload %s to catbox failed: %v", asset.Local, e))
} else {
remote.Catbox = c
}
asset.Remote = remote
mu.Unlock()
return nil
Expand Down
7 changes: 1 addition & 6 deletions template/render/github.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,7 @@ func (gh *GitHub) ForPublish() *Render {
}

func (gh *GitHub) parseArtifact(assets reduxer.Artifact, tmplBytes *bytes.Buffer) {
tmpl := `**[AnonFiles](https://anonfiles.com/)** - [ [IMG]({{ .Img.Remote.Anonfile | url -}}
) ¦ [PDF]({{ .PDF.Remote.Anonfile | url }}) ¦ [RAW]({{ .Raw.Remote.Anonfile | url -}}
) ¦ [TXT]({{ .Txt.Remote.Anonfile | url }}) ¦ [HAR]({{ .HAR.Remote.Anonfile | url -}}
) ¦ [HTM]({{ .HTM.Remote.Anonfile | url }}) ¦ [WARC]({{ .WARC.Remote.Anonfile | url -}}
) ¦ [MEDIA]({{ .Media.Remote.Anonfile | url }}) ]
**[Catbox](https://catbox.moe/)** - [ [IMG]({{ .Img.Remote.Catbox | url -}}
tmpl := `**[Catbox](https://catbox.moe/)** - [ [IMG]({{ .Img.Remote.Catbox | url -}}
) ¦ [PDF]({{ .PDF.Remote.Catbox | url }}) ¦ [RAW]({{ .Raw.Remote.Catbox | url -}}
) ¦ [TXT]({{ .Txt.Remote.Catbox | url }}) ¦ [HAR]({{ .HAR.Remote.Catbox | url -}}
) ¦ [HTM]({{ .HTM.Remote.Catbox | url }}) ¦ [WARC]({{ .WARC.Remote.Catbox | url -}}
Expand Down
1 change: 0 additions & 1 deletion template/render/github_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,6 @@ More information...
> source: [https://example.com/](https://example.com/)
> archived: [http://telegra.ph/title-01-01](http://telegra.ph/title-01-01)
**[AnonFiles](https://anonfiles.com/)** - [ [IMG](https://anonfiles.com/FbZfSa9eu4) ¦ [PDF](https://anonfiles.com/r4G8Sb90ud) ¦ [RAW](https://anonfiles.com/pbG4Se94ua) ¦ [TXT](https://anonfiles.com/naG6S09bu1) ¦ [HAR](https://anonfiles.com/n1paZfB3ub) ¦ [HTM](https://anonfiles.com/v4G4S09abc) ¦ [WARC](https://anonfiles.com/v4G4S09auc) ¦ [MEDIA]() ]
**[Catbox](https://catbox.moe/)** - [ [IMG](https://files.catbox.moe/9u6yvu.png) ¦ [PDF](https://files.catbox.moe/q73uqh.pdf) ¦ [RAW](https://files.catbox.moe/bph1g6.htm) ¦ [TXT](https://files.catbox.moe/wwrby6.txt) ¦ [HAR](https://files.catbox.moe/3agtva.har) ¦ [HTM]() ¦ [WARC]() ¦ [MEDIA]() ]`

got := ForPublish(&GitHub{Cols: collects, Data: bundleExample}).String()
Expand Down
7 changes: 1 addition & 6 deletions template/render/matrix.go
Original file line number Diff line number Diff line change
Expand Up @@ -100,12 +100,7 @@ func (m *Matrix) ForPublish() *Render {
}

func (m *Matrix) parseArtifact(assets reduxer.Artifact, tmplBytes *bytes.Buffer) {
tmpl := `<b><a href="https://anonfiles.com/">AnonFiles</a></b> - [ <a href="{{ .Img.Remote.Anonfile | url -}}
">IMG</a> ¦ <a href="{{ .PDF.Remote.Anonfile | url }}">PDF</a> ¦ <a href="{{ .Raw.Remote.Anonfile | url -}}
">RAW</a> ¦ <a href="{{ .Txt.Remote.Anonfile | url }}">TXT</a> ¦ <a href="{{ .HAR.Remote.Anonfile | url -}}
">HAR</a> ¦ <a href="{{ .HTM.Remote.Anonfile | url }}">HTM</a> ¦ <a href="{{ .WARC.Remote.Anonfile | url -}}
">WARC</a> ¦ <a href="{{ .Media.Remote.Anonfile | url }}">MEDIA</a> ]<br>
<b><a href="https://catbox.moe/">Catbox</a></b> - [ <a href="{{ .Img.Remote.Catbox | url -}}
tmpl := `<b><a href="https://catbox.moe/">Catbox</a></b> - [ <a href="{{ .Img.Remote.Catbox | url -}}
">IMG</a> ¦ <a href="{{ .PDF.Remote.Catbox | url }}">PDF</a> ¦ <a href="{{ .Raw.Remote.Catbox | url -}}
">RAW</a> ¦ <a href="{{ .Txt.Remote.Catbox | url }}">TXT</a> ¦ <a href="{{ .HAR.Remote.Catbox | url -}}
">HAR</a> ¦ <a href="{{ .HTM.Remote.Catbox | url }}">HTM</a> ¦ <a href="{{ .WARC.Remote.Catbox | url -}}
Expand Down
3 changes: 0 additions & 3 deletions template/render/matrix_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ More information...<br><br><b><a href='https://web.archive.org/'>Internet Archiv
<b><a href='https://telegra.ph/'>Telegraph</a></b>:<br>
• <a href="https://example.com/">source</a> - http://telegra.ph/title-01-01<br>
<br>
<b><a href="https://anonfiles.com/">AnonFiles</a></b> - [ <a href="https://anonfiles.com/FbZfSa9eu4">IMG</a> ¦ <a href="https://anonfiles.com/r4G8Sb90ud">PDF</a> ¦ <a href="https://anonfiles.com/pbG4Se94ua">RAW</a> ¦ <a href="https://anonfiles.com/naG6S09bu1">TXT</a> ¦ <a href="https://anonfiles.com/n1paZfB3ub">HAR</a> ¦ <a href="https://anonfiles.com/v4G4S09abc">HTM</a> ¦ <a href="https://anonfiles.com/v4G4S09auc">WARC</a> ¦ <a href="">MEDIA</a> ]<br>
<b><a href="https://catbox.moe/">Catbox</a></b> - [ <a href="https://files.catbox.moe/9u6yvu.png">IMG</a> ¦ <a href="https://files.catbox.moe/q73uqh.pdf">PDF</a> ¦ <a href="https://files.catbox.moe/bph1g6.htm">RAW</a> ¦ <a href="https://files.catbox.moe/wwrby6.txt">TXT</a> ¦ <a href="https://files.catbox.moe/3agtva.har">HAR</a> ¦ <a href="">HTM</a> ¦ <a href="">WARC</a> ¦ <a href="">MEDIA</a> ]`

got := ForPublish(&Matrix{Cols: collects, Data: bundleExample}).String()
Expand All @@ -47,7 +46,6 @@ More information...<br><br><b><a href='https://web.archive.org/'>Internet Archiv
<b><a href='https://telegra.ph/'>Telegraph</a></b>:<br>
• <a href="https://example.com/">source</a> - http://telegra.ph/title-01-01<br>
<br>
<b><a href="https://anonfiles.com/">AnonFiles</a></b> - [ <a href="https://anonfiles.com/FbZfSa9eu4">IMG</a> ¦ <a href="https://anonfiles.com/r4G8Sb90ud">PDF</a> ¦ <a href="https://anonfiles.com/pbG4Se94ua">RAW</a> ¦ <a href="https://anonfiles.com/naG6S09bu1">TXT</a> ¦ <a href="https://anonfiles.com/n1paZfB3ub">HAR</a> ¦ <a href="https://anonfiles.com/v4G4S09abc">HTM</a> ¦ <a href="https://anonfiles.com/v4G4S09auc">WARC</a> ¦ <a href="">MEDIA</a> ]<br>
<b><a href="https://catbox.moe/">Catbox</a></b> - [ <a href="https://files.catbox.moe/9u6yvu.png">IMG</a> ¦ <a href="https://files.catbox.moe/q73uqh.pdf">PDF</a> ¦ <a href="https://files.catbox.moe/bph1g6.htm">RAW</a> ¦ <a href="https://files.catbox.moe/wwrby6.txt">TXT</a> ¦ <a href="https://files.catbox.moe/3agtva.har">HAR</a> ¦ <a href="">HTM</a> ¦ <a href="">WARC</a> ¦ <a href="">MEDIA</a> ]`

got := ForPublish(&Matrix{Cols: collects, Data: bundleExample}).String()
Expand All @@ -69,7 +67,6 @@ func TestRenderMatrixForReply(t *testing.T) {
<b><a href='https://telegra.ph/'>Telegraph</a></b>:<br>
• <a href="https://example.com/">source</a> - http://telegra.ph/title-01-01<br>
<br>
<b><a href="https://anonfiles.com/">AnonFiles</a></b> - [ <a href="https://anonfiles.com/FbZfSa9eu4">IMG</a> ¦ <a href="https://anonfiles.com/r4G8Sb90ud">PDF</a> ¦ <a href="https://anonfiles.com/pbG4Se94ua">RAW</a> ¦ <a href="https://anonfiles.com/naG6S09bu1">TXT</a> ¦ <a href="https://anonfiles.com/n1paZfB3ub">HAR</a> ¦ <a href="https://anonfiles.com/v4G4S09abc">HTM</a> ¦ <a href="https://anonfiles.com/v4G4S09auc">WARC</a> ¦ <a href="">MEDIA</a> ]<br>
<b><a href="https://catbox.moe/">Catbox</a></b> - [ <a href="https://files.catbox.moe/9u6yvu.png">IMG</a> ¦ <a href="https://files.catbox.moe/q73uqh.pdf">PDF</a> ¦ <a href="https://files.catbox.moe/bph1g6.htm">RAW</a> ¦ <a href="https://files.catbox.moe/wwrby6.txt">TXT</a> ¦ <a href="https://files.catbox.moe/3agtva.har">HAR</a> ¦ <a href="">HTM</a> ¦ <a href="">WARC</a> ¦ <a href="">MEDIA</a> ]`

got := ForReply(&Matrix{Cols: collects, Data: bundleExample}).String()
Expand Down
7 changes: 1 addition & 6 deletions template/render/slack.go
Original file line number Diff line number Diff line change
Expand Up @@ -90,12 +90,7 @@ func (s *Slack) ForPublish() (r *Render) {
}

func (s *Slack) parseArtifact(assets reduxer.Artifact, tmplBytes *bytes.Buffer) {
tmpl := `<https://anonfiles.com/|AnonFiles> - [ <{{ .Img.Remote.Anonfile | url -}}
|IMG> ¦ <{{ .PDF.Remote.Anonfile | url }}|PDF> ¦ <{{ .Raw.Remote.Anonfile | url -}}
|RAW> ¦ <{{ .Txt.Remote.Anonfile | url }}|TXT> ¦ <{{ .HAR.Remote.Anonfile | url -}}
|HAR> ¦ <{{ .HTM.Remote.Anonfile | url }}|HTM> ¦ <{{ .WARC.Remote.Anonfile | url -}}
|WARC> ¦ <{{ .Media.Remote.Anonfile | url }}|MEDIA> ]
<https://catbox.moe/|Catbox> - [ <{{ .Img.Remote.Catbox | url -}}
tmpl := `<https://catbox.moe/|Catbox> - [ <{{ .Img.Remote.Catbox | url -}}
|IMG> ¦ <{{ .PDF.Remote.Catbox | url }}|PDF> ¦ <{{ .Raw.Remote.Catbox | url -}}
|RAW> ¦ <{{ .Txt.Remote.Catbox | url }}|TXT> ¦ <{{ .HAR.Remote.Catbox | url -}}
|HAR> ¦ <{{ .HTM.Remote.Catbox | url }}|HTM> ¦ <{{ .WARC.Remote.Catbox | url -}}
Expand Down
2 changes: 0 additions & 2 deletions template/render/slack_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ Telegraph:
• http://telegra.ph/title-01-01
<https://anonfiles.com/|AnonFiles> - [ <https://anonfiles.com/FbZfSa9eu4|IMG> ¦ <https://anonfiles.com/r4G8Sb90ud|PDF> ¦ <https://anonfiles.com/pbG4Se94ua|RAW> ¦ <https://anonfiles.com/naG6S09bu1|TXT> ¦ <https://anonfiles.com/n1paZfB3ub|HAR> ¦ <https://anonfiles.com/v4G4S09abc|HTM> ¦ <https://anonfiles.com/v4G4S09auc|WARC> ¦ <|MEDIA> ]
<https://catbox.moe/|Catbox> - [ <https://files.catbox.moe/9u6yvu.png|IMG> ¦ <https://files.catbox.moe/q73uqh.pdf|PDF> ¦ <https://files.catbox.moe/bph1g6.htm|RAW> ¦ <https://files.catbox.moe/wwrby6.txt|TXT> ¦ <https://files.catbox.moe/3agtva.har|HAR> ¦ <|HTM> ¦ <|WARC> ¦ <|MEDIA> ]`

got := ForPublish(&Slack{Cols: collects, Data: bundleExample}).String()
Expand Down Expand Up @@ -70,7 +69,6 @@ archive.today:
• http://archive.today/abc
<https://anonfiles.com/|AnonFiles> - [ <https://anonfiles.com/FbZfSa9eu4|IMG> ¦ <https://anonfiles.com/r4G8Sb90ud|PDF> ¦ <https://anonfiles.com/pbG4Se94ua|RAW> ¦ <https://anonfiles.com/naG6S09bu1|TXT> ¦ <https://anonfiles.com/n1paZfB3ub|HAR> ¦ <https://anonfiles.com/v4G4S09abc|HTM> ¦ <https://anonfiles.com/v4G4S09auc|WARC> ¦ <|MEDIA> ]
<https://catbox.moe/|Catbox> - [ <https://files.catbox.moe/9u6yvu.png|IMG> ¦ <https://files.catbox.moe/q73uqh.pdf|PDF> ¦ <https://files.catbox.moe/bph1g6.htm|RAW> ¦ <https://files.catbox.moe/wwrby6.txt|TXT> ¦ <https://files.catbox.moe/3agtva.har|HAR> ¦ <|HTM> ¦ <|WARC> ¦ <|MEDIA> ]`

got := ForReply(&Slack{Cols: multi, Data: bundleExample}).String()
Expand Down
7 changes: 1 addition & 6 deletions template/render/telegram.go
Original file line number Diff line number Diff line change
Expand Up @@ -100,12 +100,7 @@ func (t *Telegram) ForPublish() (r *Render) {
}

func (t *Telegram) parseArtifact(assets reduxer.Artifact, tmplBytes *bytes.Buffer) {
tmpl := `<b><a href="https://anonfiles.com/">AnonFiles</a></b> - [ <a href="{{ .Img.Remote.Anonfile | url -}}
">IMG</a> ¦ <a href="{{ .PDF.Remote.Anonfile | url }}">PDF</a> ¦ <a href="{{ .Raw.Remote.Anonfile | url -}}
">RAW</a> ¦ <a href="{{ .Txt.Remote.Anonfile | url }}">TXT</a> ¦ <a href="{{ .HAR.Remote.Anonfile | url -}}
">HAR</a> ¦ <a href="{{ .HTM.Remote.Anonfile | url }}">HTM</a> ¦ <a href="{{ .WARC.Remote.Anonfile | url -}}
">WARC</a> ¦ <a href="{{ .Media.Remote.Anonfile | url }}">MEDIA</a> ]
<b><a href="https://catbox.moe/">Catbox</a></b> - [ <a href="{{ .Img.Remote.Catbox | url -}}
tmpl := `<b><a href="https://catbox.moe/">Catbox</a></b> - [ <a href="{{ .Img.Remote.Catbox | url -}}
">IMG</a> ¦ <a href="{{ .PDF.Remote.Catbox | url }}">PDF</a> ¦ <a href="{{ .Raw.Remote.Catbox | url -}}
">RAW</a> ¦ <a href="{{ .Txt.Remote.Catbox | url }}">TXT</a> ¦ <a href="{{ .HAR.Remote.Catbox | url -}}
">HAR</a> ¦ <a href="{{ .HTM.Remote.Catbox | url }}">HTM</a> ¦ <a href="{{ .WARC.Remote.Catbox | url -}}
Expand Down
3 changes: 0 additions & 3 deletions template/render/telegram_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ More information...

func TestRenderTelegram(t *testing.T) {
message := message + `
<b><a href="https://anonfiles.com/">AnonFiles</a></b> - [ <a href="https://anonfiles.com/FbZfSa9eu4">IMG</a> ¦ <a href="https://anonfiles.com/r4G8Sb90ud">PDF</a> ¦ <a href="https://anonfiles.com/pbG4Se94ua">RAW</a> ¦ <a href="https://anonfiles.com/naG6S09bu1">TXT</a> ¦ <a href="https://anonfiles.com/n1paZfB3ub">HAR</a> ¦ <a href="https://anonfiles.com/v4G4S09abc">HTM</a> ¦ <a href="https://anonfiles.com/v4G4S09auc">WARC</a> ¦ <a href="">MEDIA</a> ]
<b><a href="https://catbox.moe/">Catbox</a></b> - [ <a href="https://files.catbox.moe/9u6yvu.png">IMG</a> ¦ <a href="https://files.catbox.moe/q73uqh.pdf">PDF</a> ¦ <a href="https://files.catbox.moe/bph1g6.htm">RAW</a> ¦ <a href="https://files.catbox.moe/wwrby6.txt">TXT</a> ¦ <a href="https://files.catbox.moe/3agtva.har">HAR</a> ¦ <a href="">HTM</a> ¦ <a href="">WARC</a> ¦ <a href="">MEDIA</a> ]
#wayback #存档`
Expand All @@ -43,7 +42,6 @@ func TestRenderTelegram(t *testing.T) {

func TestRenderTelegramForPublishWithArtifact(t *testing.T) {
message := message + `
<b><a href="https://anonfiles.com/">AnonFiles</a></b> - [ <a href="https://anonfiles.com/FbZfSa9eu4">IMG</a> ¦ <a href="https://anonfiles.com/r4G8Sb90ud">PDF</a> ¦ <a href="https://anonfiles.com/pbG4Se94ua">RAW</a> ¦ <a href="https://anonfiles.com/naG6S09bu1">TXT</a> ¦ <a href="https://anonfiles.com/n1paZfB3ub">HAR</a> ¦ <a href="https://anonfiles.com/v4G4S09abc">HTM</a> ¦ <a href="https://anonfiles.com/v4G4S09auc">WARC</a> ¦ <a href="">MEDIA</a> ]
<b><a href="https://catbox.moe/">Catbox</a></b> - [ <a href="https://files.catbox.moe/9u6yvu.png">IMG</a> ¦ <a href="https://files.catbox.moe/q73uqh.pdf">PDF</a> ¦ <a href="https://files.catbox.moe/bph1g6.htm">RAW</a> ¦ <a href="https://files.catbox.moe/wwrby6.txt">TXT</a> ¦ <a href="https://files.catbox.moe/3agtva.har">HAR</a> ¦ <a href="">HTM</a> ¦ <a href="">WARC</a> ¦ <a href="">MEDIA</a> ]
#wayback #存档`
Expand Down Expand Up @@ -84,7 +82,6 @@ func TestRenderTelegramForReply(t *testing.T) {
• <a href="https://example.com/">source</a> - <a href="http://archive.today/abcdE">http://archive.today/abcdE</a>
• <a href="https://example.org/">source</a> - <a href="http://archive.today/abc">http://archive.today/abc</a>
<b><a href="https://anonfiles.com/">AnonFiles</a></b> - [ <a href="https://anonfiles.com/FbZfSa9eu4">IMG</a> ¦ <a href="https://anonfiles.com/r4G8Sb90ud">PDF</a> ¦ <a href="https://anonfiles.com/pbG4Se94ua">RAW</a> ¦ <a href="https://anonfiles.com/naG6S09bu1">TXT</a> ¦ <a href="https://anonfiles.com/n1paZfB3ub">HAR</a> ¦ <a href="https://anonfiles.com/v4G4S09abc">HTM</a> ¦ <a href="https://anonfiles.com/v4G4S09auc">WARC</a> ¦ <a href="">MEDIA</a> ]
<b><a href="https://catbox.moe/">Catbox</a></b> - [ <a href="https://files.catbox.moe/9u6yvu.png">IMG</a> ¦ <a href="https://files.catbox.moe/q73uqh.pdf">PDF</a> ¦ <a href="https://files.catbox.moe/bph1g6.htm">RAW</a> ¦ <a href="https://files.catbox.moe/wwrby6.txt">TXT</a> ¦ <a href="https://files.catbox.moe/3agtva.har">HAR</a> ¦ <a href="">HTM</a> ¦ <a href="">WARC</a> ¦ <a href="">MEDIA</a> ]
#wayback #存档`
Expand Down

0 comments on commit 4199e19

Please sign in to comment.