Home page job while browse page is protected

This commit is contained in:
Dylan Knutson
2023-07-07 11:08:08 -07:00
parent 09f1db712d
commit 0977ac4343
9 changed files with 1726 additions and 18 deletions

View File

@@ -47,7 +47,8 @@ task :periodic_tasks => [:environment, :set_logger_stdout] do
Thread.new do
loop do
Rake::Task["fa:browse_page_job"].execute
puts "emitted browse page job"
Rake::Task["fa:home_page_job"].execute
puts "emitted browse page and home page job"
sleep 1.minute
end
end

View File

@@ -79,14 +79,19 @@ class Domain::Fa::Job::Base < Scraper::JobBase
enqueue_page_scan: true,
enqueue_gallery_scan: true,
page_desc: nil,
fill_id_gaps: false
fill_id_gaps: false,
continue_for: nil
)
fatal_error("not a listings page") unless page.probably_listings_page?
submissions = page.submissions_parsed
fa_ids_to_manually_enqueue = []
fa_ids_to_manually_enqueue = Set.new
fa_ids = Set.new(submissions.map(&:id))
create_unseen_posts = false
if fill_id_gaps && submissions.any?
fa_ids = submissions.map(&:id)
create_unseen_posts = true
max_fa_id, min_fa_id = fa_ids.max, fa_ids.min
# sanity check so we don't enqueue too many post jobs
if max_fa_id - min_fa_id <= 250
@@ -96,6 +101,15 @@ class Domain::Fa::Job::Base < Scraper::JobBase
end
end
if continue_for && submissions.any?
max_fa_id = fa_ids.max
min_fa_id = [max_fa_id - continue_for, 0].max
fa_ids_to_manually_enqueue = Set.new(min_fa_id..max_fa_id)
fa_ids_to_manually_enqueue.subtract(fa_ids)
existing = Domain::Fa::Post.where("fa_id >= ? AND fa_id <= ?", min_fa_id, max_fa_id).pluck(:fa_id)
fa_ids_to_manually_enqueue.subtract(existing)
end
page_desc = if page_desc
"page #{page_desc.to_s.bold}"
else
@@ -131,12 +145,16 @@ class Domain::Fa::Job::Base < Scraper::JobBase
end
end
fa_ids_to_manually_enqueue.each do |fa_id|
# when filling gaps, only enqueue if the post wasn't found
post = Domain::Fa::Post.find_or_initialize_by(fa_id: fa_id)
if post.new_record?
post.save!
enqueue_post_scan(post, caused_by_entry, enqueue_posts_pri)
fa_ids_to_manually_enqueue.to_a.sort.reverse.each do |fa_id|
if create_unseen_posts
# when filling gaps, only enqueue if the post wasn't found
post = Domain::Fa::Post.find_or_initialize_by(fa_id: fa_id)
if post.new_record?
post.save!
enqueue_post_scan(post, caused_by_entry, enqueue_posts_pri)
end
else
enqueue_fa_id_scan(fa_id, caused_by_entry, enqueue_posts_pri)
end
end
@@ -202,14 +220,31 @@ class Domain::Fa::Job::Base < Scraper::JobBase
end
end
def enqueue_post_scan(post, caused_by_entry, enqueue_pri)
enqueue_pri = case enqueue_pri
when :low then -5
when :high then -15
else -10
end
def normalize_enqueue_pri(enqueue_pri)
case enqueue_pri
when :low then -5
when :high then -15
else -10
end
end
def enqueue_fa_id_scan(fa_id, caused_by_entry, enqueue_pri)
enqueue_pri = normalize_enqueue_pri(enqueue_pri)
@posts_enqueued_for_scan ||= Set.new
if @posts_enqueued_for_scan.add?(fa_id)
logger.info "enqueue post scan for fa_id #{fa_id}"
defer_job(Domain::Fa::Job::ScanPostJob, {
fa_id: fa_id,
caused_by_entry: caused_by_entry,
}, { priority: enqueue_pri })
end
end
def enqueue_post_scan(post, caused_by_entry, enqueue_pri)
enqueue_pri = normalize_enqueue_pri(enqueue_pri)
@posts_enqueued_for_scan ||= Set.new
if @posts_enqueued_for_scan.add?(post.fa_id)
fa_id_str = (post.fa_id || "(nil)").to_s.bold
if !post.scanned?

View File

@@ -0,0 +1,40 @@
class Domain::Fa::Job::HomePageJob < Domain::Fa::Job::Base
queue_as :fa_browse_page
ignore_signature_args :caused_by_entry
def perform(args)
@caused_by_entry = args[:caused_by_entry]
@first_entry = nil
@continue_for = args[:continue_for] || 1024
@total_num_new_posts_seen = 0
@total_num_posts_seen = 0
scan_home_page
logger.info("finished, #{@total_num_new_posts_seen.to_s.bold} new, #{@total_num_posts_seen.to_s.bold} total posts")
end
private
def scan_home_page
url = "https://www.furaffinity.net/"
response = http_client.get(url, caused_by_entry: @first_entry || @caused_by_entry)
log_entry = response.log_entry
@first_entry ||= log_entry
if response.status_code != 200
fatal_error("non 200 response for /: #{response.status_code.to_s.underline}")
end
page = Domain::Fa::Parser::Page.new(response.body)
listing_page_stats = update_and_enqueue_posts_from_listings_page(
:browse_page, page, log_entry,
enqueue_posts_pri: :high,
page_desc: "HomePage",
continue_for: @continue_for,
)
@total_num_new_posts_seen += listing_page_stats.new_seen
@total_num_posts_seen += listing_page_stats.total_seen
end
end

View File

@@ -94,9 +94,14 @@ class Domain::Fa::Parser::Page < Domain::Fa::Parser::Base
"#gallery-browse > figure",
# favorites list
"#gallery-favorites > figure",
# home page
"#gallery-frontpage-submissions > figure",
"#gallery-frontpage-writing > figure",
"#gallery-frontpage-music > figure",
"#gallery-frontpage-crafts > figure",
].lazy.map do |css|
@page.css(css)
end.reject(&:empty?).first || []
end.reject(&:empty?).to_a.flatten
else unimplemented_version!
end
end
@@ -127,7 +132,8 @@ class Domain::Fa::Parser::Page < Domain::Fa::Parser::Base
when VERSION_2
(@page.css(".submission-list").first ||
@page.css("#gallery-browse").first ||
@page.css("#gallery-favorites").first) ? true : false
@page.css("#gallery-favorites").first ||
@page.css("#gallery-frontpage-submissions").first) ? true : false
else unimplemented_version!
end
end

View File

@@ -140,6 +140,14 @@ namespace :fa do
puts "#{Time.now} - browse_page_job - Domain::Fa::Job::BrowsePageJob"
end
desc "run a single home page job"
task :home_page_job => [:set_logger_stdout, :environment] do
Domain::Fa::Job::HomePageJob.
set(priority: -20, queue: "manual").
perform_later({})
puts "#{Time.now} - home_page_job - Domain::Fa::Job::HomePageJob"
end
desc "run a single post scan job"
task :scan_post_job => [:set_logger_stdout, :environment] do |t, args|
fa_id = ENV["fa_id"] || raise("must provide fa_id")

View File

@@ -0,0 +1,211 @@
require "rails_helper"
describe Domain::Fa::Job::HomePageJob do
let(:default_args) { { continue_for: 4 } }
let(:http_client_mock) { instance_double("::Scraper::HttpClient") }
before do
Scraper::ClientFactory.http_client_mock = http_client_mock
end
shared_context "user and post getters" do
let(:user) { proc { Domain::Fa::User.find_by(url_name: "lemontastictobster") } }
let(:post) { proc { Domain::Fa::Post.find_by(fa_id: 52807274) } }
before do
expect(post.call).to be_nil
expect(user.call).to be_nil
end
end
shared_context "create user and post" do
before do
creator = Domain::Fa::User.create!({
name: "LemontasticTobster",
url_name: "lemontastictobster",
})
Domain::Fa::Post.create!({
fa_id: 52807274,
creator: creator,
})
end
end
shared_examples "enqueue post scan" do |expect_to_enqueue|
it "enqueues post scan job" do
expect(SpecUtil.enqueued_jobs(Domain::Fa::Job::ScanPostJob)).to match([
including(args: [{
post: post.call,
caused_by_entry: log_entries[0],
}]),
])
end if expect_to_enqueue
it "does not enqueue post scan job" do
expect(SpecUtil.enqueued_jobs(Domain::Fa::Job::ScanPostJob)).to eq([])
end unless expect_to_enqueue
end
shared_examples "enqueue file scan" do |expect_to_enqueue|
it "enqueues file scan job" do
expect(SpecUtil.enqueued_jobs(Domain::Fa::Job::ScanFileJob)).to match([
including(args: [{
post: post.call,
caused_by_entry: log_entries[0],
}]),
])
end if expect_to_enqueue
it "does not enqueue post scan job" do
expect(SpecUtil.enqueued_jobs(Domain::Fa::Job::ScanFileJob)).to eq([])
end unless expect_to_enqueue
end
shared_examples "enqueue user page scan" do |expect_to_enqueue|
it "enqueues user page job" do
expect(SpecUtil.enqueued_jobs(Domain::Fa::Job::UserPageJob)).to match([
including(args: [{
user: user.call,
caused_by_entry: log_entries[0],
}]),
])
end if expect_to_enqueue
it "does not enqueue user page job" do
expect(SpecUtil.enqueued_jobs(Domain::Fa::Job::UserPageJob)).to eq([])
end unless expect_to_enqueue
end
shared_examples "enqueue user gallery scan" do |expect_to_enqueue|
it "enqueues user gallery job" do
expect(SpecUtil.enqueued_jobs(Domain::Fa::Job::UserGalleryJob)).to match([
including(args: [{
user: user.call,
caused_by_entry: log_entries[0],
}]),
])
end if expect_to_enqueue
it "does not enqueue user gallery job" do
expect(SpecUtil.enqueued_jobs(Domain::Fa::Job::UserGalleryJob)).to eq([])
end unless expect_to_enqueue
end
it "enqueues one" do
expect do
ret = described_class.perform_later({})
expect(ret).not_to be(Exception)
end.to change(GoodJob::Job, :count).by(1)
end
it "does not enqueue more than one" do
expect do
described_class.perform_later({})
described_class.perform_later({})
end.to change(GoodJob::Job, :count).by(1)
end
it "can be enqueued in a bulk GoodJob batch" do
expect do
GoodJob::Bulk.enqueue do
described_class.perform_later({})
described_class.perform_later({})
end
end.to change(GoodJob::Job, :count).by(1)
end
context "with one unseen post" do
include_context "user and post getters"
let! :log_entries do
SpecUtil.init_http_client_mock(
http_client_mock, [
{
uri: "https://www.furaffinity.net/",
status_code: 200,
content_type: "text/html",
contents: SpecUtil.read_fixture_file("domain/fa/job/home_page.html"),
caused_by_entry_idx: nil,
},
]
)
end
it "creates a new post" do
expect do
perform_now(default_args)
end.to change(Domain::Fa::Post, :count).by(1)
end
it "creates a new user" do
expect do
perform_now(default_args)
end.to change(Domain::Fa::User, :count).by(1)
end
it "creates a post with the right attributes" do
perform_now(default_args)
expect(post.call.state).to eq("ok")
expect(post.call.title).to eq("FREE OC Animatronic Raffle! (READ DESC)")
expect(post.call.creator).to eq(user.call)
end
it "creates a user with the right attributes" do
perform_now(default_args)
expect(user.call.name).to eq("LemontasticTobster")
end
it "enqueues post scan job" do
perform_now(default_args)
expect(SpecUtil.enqueued_jobs(Domain::Fa::Job::ScanPostJob).length).to eq(5)
expect(SpecUtil.enqueued_jobs(Domain::Fa::Job::ScanPostJob)).to match(
[
including(args: [{
post: post,
caused_by_entry: log_entries[0],
}]),
including(args: [{
fa_id: 52807273,
caused_by_entry: log_entries[0],
}]),
including(args: [{
fa_id: 52807272,
caused_by_entry: log_entries[0],
}]),
including(args: [{
fa_id: 52807271,
caused_by_entry: log_entries[0],
}]),
including(args: [{
fa_id: 52807270,
caused_by_entry: log_entries[0],
}]),
]
)
end
it "does not enqueue if a post already exists" do
Domain::Fa::Post.create!({ fa_id: 52807272, creator: SpecUtil.create_domain_fa_user })
perform_now(default_args)
expect(SpecUtil.enqueued_jobs(Domain::Fa::Job::ScanPostJob).length).to eq(4)
expect(SpecUtil.enqueued_jobs(Domain::Fa::Job::ScanPostJob)).to match(
[
including(args: [{
post: post,
caused_by_entry: log_entries[0],
}]),
including(args: [{
fa_id: 52807273,
caused_by_entry: log_entries[0],
}]),
# note that 52807272 not enqueued
including(args: [{
fa_id: 52807271,
caused_by_entry: log_entries[0],
}]),
including(args: [{
fa_id: 52807270,
caused_by_entry: log_entries[0],
}]),
]
)
end
end
end

View File

@@ -292,6 +292,22 @@ describe Domain::Fa::Parser::Page do
assert_equal "~Nicky~", user_list.last.name
end
it "parses home page correctly" do
parser = get_parser("home.html", require_logged_in: true)
assert_page_type parser, :probably_listings_page?
listings = parser.submissions_parsed
assert_equal 112, listings.length
assert_equal 52807274, listings.first.id
first_listing = listings.first
assert_equal "LemontasticTobster", first_listing.artist
assert_equal "/user/lemontastictobster/", first_listing.artist_user_page_path
assert_equal "FREE OC Animatronic Raffle! (READ DESC)", first_listing.title
assert_equal "/view/52807274/", first_listing.view_path
assert_equal "//t.furaffinity.net/52807274@200-1688750295.jpg", first_listing.thumb_path
end
def get_parser(file, require_logged_in: true)
path = File.join("domain/fa/parser/redux", file)
contents = SpecUtil.read_fixture_file(path) || raise("Couldn't open #{path}")

View File

@@ -0,0 +1,584 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="en" class="no-js" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title>Index -- Fur Affinity [dot] net</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Fur Affinity | For all things fluff, scaled, and feathered!" />
<meta name="keywords" content="fur furry furries fursuit fursuits cosplay brony bronies zootopia scalies kemono anthro anthropormophic art online gallery portfolio" />
<meta name="distribution" content="global" />
<meta name="copyright" content="Frost Dragon Art LLC" />
<meta name="robots" content="noai, noimageai" />
<link rel="icon" href="/themes/beta/img/favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="/themes/beta/img/favicon.ico" type="image/x-icon" />
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,500,500i,600,600i,700,700i" rel="stylesheet">
<meta http-equiv="X-UA-Compatible" content="IE=9; IE=EDGE" />
<!-- og -->
<meta property="og:image" content="https://www.furaffinity.net/themes/beta/img/banners/fa_logo.png?v2" />
<!-- twitter -->
<meta name="twitter:image" content="https://www.furaffinity.net/themes/beta/img/banners/fa_logo.png?v2" />
<script type="text/javascript">
var _faurl={d:'//d.furaffinity.net',a:'//a.furaffinity.net',r:'//rv.furaffinity.net',t:'//t.furaffinity.net',pb:'/themes/beta/js/prebid-6.13.0-fa.js'};
</script>
<script type="text/javascript" src="/themes/beta/js/common.js?u=2023052501"></script>
<link type="text/css" rel="stylesheet" href="/themes/beta/css/ui_theme_dark.css?u=2023052501" />
<!-- browser hints -->
<link rel="preconnect" href="//t.furaffinity.net" />
<link rel="preconnect" href="//a.furaffinity.net" />
<link rel="preconnect" href="//rv.furaffinity.net" />
<link rel="preconnect" href="https://www15.smartadserver.com" />
<link rel="preload" href="/themes/beta/js/prototype.1.7.3.min.js" as="script" />
<link rel="preload" href="/themes/beta/js/script.js?u=2023052501" as="script" />
</head>
<!-- EU request: no -->
<body data-static-path="/themes/beta" id="pageid-frontpage">
<!-- sidebar -->
<div class="mobile-navigation">
<div class="mobile-nav-container">
<div class="mobile-nav-container-item left">
<label for="mobile-menu-nav" class="css-menu-toggle only-one"><img class="burger-menu" src="/themes/beta/img/fa-burger-menu-icon.png"></label>
</div>
<div class="mobile-nav-container-item center"><a class="mobile-nav-logo" href="/"><img class="site-logo" src="/themes/beta/img/banners/fa_logo.png?v2"></a></div>
<div class="mobile-nav-container-item right">
</div>
</div>
<div class="nav-ac-container">
<input id="mobile-menu-nav" name="accordion-1" type="checkbox" />
<article class="nav-ac-content mobile-menu">
<div class="mobile-nav-content-container">
<div class="aligncenter">
<a href="/user/zzreg/"><img class="loggedin_user_avatar avatar" alt="zzreg" src="//a.furaffinity.net/1424255659/zzreg.gif"/></a>
<h2 style="margin-bottom:0"><a href="/user/zzreg/">zzreg</a></h2>
<a href="/user/zzreg/">Userpage</a> |
<a href="/msg/pms/">Notes</a> |
<a href="/controls/journal/">Journals</a> |
<a href="/plus/"><img style="position:relative;top:4px" src="/themes/beta/img/the-golden-pawb.png"> FA+</a>
<br>
</div>
<hr>
<h2><a href="/browse/">Browse</a></h2>
<h2><a href="/search/">Search</a></h2>
<h2><a href="/submit/">Upload</a></h2>
<div class="nav-ac-container">
<label for="mobile-menu-submenu-0"><h2 style="margin-top:0;padding-top:0">Support &#x25BC;</h2></label>
<input id="mobile-menu-submenu-0" name="accordion-1" type="checkbox" />
<article class="nav-ac-content nav-ac-content-dropdown">
<a href="/journals/fender">News & Updates</a><br>
<a href="/help/">Help & Support</a><br>
<a href="/advertising.html">Advertising</a><br>
<a href="/blm">Black Lives Matter</a>
<h3>SUPPORT FA</h3>
<a href="/plus/">Subscribe to FA+ </a><br>
<a href="https://shop.furaffinity.net/">FA Merch Store</a>
<h3>RULES & POLICIES</h3>
<a href="/tos">Terms of Service</a><br>
<a href="/privacy">Privacy</a><br>
<a href="/coc">Code of Conduct</a><br>
<a href="/aup">Upload Policy</a>
<h3>SOCIAL</h3>
<a href="https://discord.gg/fur-affinity">Discord</a><br>
<a href="https://www.twitter.com/furaffinity/">Twitter</a>
<h3>Support</h3>
<a href="/controls/troubletickets/">REPORT A PROBLEM</a>
</article>
</div>
<div class="mobile-sfw-toggle">
<h2>SFW Mode</h2>
<div class="sfw-toggle type-slider slider-button-wrapper">
<input type="checkbox" id="sfw-toggle-mobile" class="slider-toggle" />
<label class="slider-viewport" for="sfw-toggle-mobile">
<div class="slider">
<div class="slider-button">&nbsp;</div>
<div class="slider-content left"><span>SFW</span></div>
<div class="slider-content right"><span>NSFW</span></div>
</div>
</label>
</div>
</div>
<div class="nav-ac-container">
<label for="mobile-menu-submenu-1"><h2 style="margin-top:0;padding-top:0">Settings &#x25BC;</h2></label>
<input id="mobile-menu-submenu-1" name="accordion-1" type="checkbox" />
<article class="nav-ac-content nav-ac-content-dropdown">
<h3>ACCOUNT INFORMATION</h3>
<a href="/controls/settings/">Account Settings</a><br>
<a href="/controls/site-settings/">Global Site Settings</a><br>
<a href="/controls/user-settings/">User Settings</a>
<h3>CUSTOMIZE USER PROFILE</h3>
<a href="/controls/profile/">Profile Info</a><br>
<a href="/controls/profilebanner/">Profile Banner</a><br>
<a href="/controls/contacts/">Contacts and Social Media</a><br>
<a href="/controls/avatar/">Avatar Management</a>
<h3>MANAGE MY CONTENT</h3>
<a href="/controls/submissions/">Submissions</a><br>
<a href="/controls/folders/submissions/">Folders</a><br>
<a href="/controls/journal/">Journals</a><br>
<a href="/controls/favorites/">Favorites</a><br>
<a href="/controls/buddylist/">Watches</a><br>
<a href="/controls/shouts/">Shouts</a><br>
<a href="/controls/badges/">Badges</a>
<h3>SECURITY</h3>
<a href="/controls/sessions/logins/">Active Sessions</a><br>
<a href="/controls/sessions/logs/">Activity Log</a><br>
<a href="/controls/sessions/labels/">Browser Labels</a>
</article>
</div>
<hr>
<hr>
<h2><form class="post-btn logout-link" method="post" action="/logout/"><button type="submit">Log Out</button><input type="hidden" name="key" value="3d571edd3040f6bd34d5c9de2c26f676a79464e8"/></form>
<script type="text/javascript">
_fajs.push(['init_logout_button', '.logout-link button']);
</script>
</h2>
<h2></h2>
</div>
</article>
</div>
</div>
<div class="mobile-notification-bar">
<a class="notification-container inline" href="/msg/submissions/" title="42,182 Submission Notifications">42182S</a>
<a class="notification-container inline" href="/msg/others/#journals" title="15,689 Journal Notifications">15689J</a>
</div>
<nav id="ddmenu">
<div class="mobile-nav navhideondesktop hideonmobile hideontablet">
<div class="mobile-nav-logo"><a class="mobile-nav-logo" href="/"><img src="/themes/beta/img/banners/fa_logo.png?v2"></a></div>
<div class="mobile-nav-header-item"><a href="/browse/">Browse</a></div>
<div class="mobile-nav-header-item"><a href="/search/">Search</a></div>
</div>
<div class="menu-icon"></div>
<ul class="navhideonmobile">
<li class="lileft"><div class="lileft hideonmobile" style="vertical-align:middle;line-height:0 !important" ><a class="top-heading" href="/"><img class="nav-bar-logo" src="/themes/beta/img/banners/fa_logo.png?v2"></a></div></li>
<li class="lileft"><a class="top-heading" href="/browse/"><div class="sprite-paw menu-space-saver hideonmobile"></div>Browse</a></li>
<li class="lileft"><a class="top-heading hideondesktop" href="/search/">Search</a></li>
<li class="lileft"><a class="top-heading" href="/submit/"><div class="sprite-upload menu-space-saver hideonmobile"></div> Upload</a></li>
<li class="lileft">
<a class="top-heading" href="#"><div class="sprite-news menu-space-saver hideonmobile"></div>Support</a>
<i class="caret"></i>
<div class="dropdown dropdown-left ">
<div class="dd-inner">
<div class="column">
<h3>Community</h3>
<a href="/journals/fender">News & Updates</a>
<a href="/help/">Help & Support</a>
<a href="/advertising.html">Advertising</a>
<a href="/blm/">Black Lives Matter</a>
<h3>Rules & Policies</h3>
<a href="/tos">Terms of Service</a>
<a href="/privacy">Privacy</a>
<a href="/coc">Code of Conduct</a>
<a href="/aup">Upload Policy</a>
<h3>Social</h3>
<a href="https://discord.gg/fur-affinity">Discord</a>
<a href="https://www.twitter.com/furaffinity/">Twitter</a>
<h3>Trouble Tickets</h3>
<a href="/controls/troubletickets/">Report a Problem</a>
</div>
</div>
</div>
</li>
<li class="lileft menu-space-saver"><a class="top-heading hideontablet" href="/plus/"><img style="position:relative;top:3px" src="/themes/beta/img/the-golden-pawb.png"> FA+</a></li>
<div class="lileft hideonmobile">
<form id="searchbox" method="get" action="/search/">
<input type="search" name="q" placeholder="SEARCH">
<a href="/search">&nbsp;</a>
</form>
</div>
<li class="message-bar-desktop">
<a class="notification-container inline" href="/msg/submissions/" title="42,182 Submission Notifications">42182S</a>
<a class="notification-container inline" href="/msg/others/#journals" title="15,689 Journal Notifications">15689J</a>
</li>
<li>
<div class="floatleft hideonmobile">
<a href="/user/zzreg"><img class="loggedin_user_avatar menubar-icon-resize avatar" style="cursor:pointer" alt="zzreg" src="//a.furaffinity.net/1424255659/zzreg.gif"/></a>
</div>
</li>
<li class="submenu-trigger">
<div class="floatleft hideonmobile">
<svg class="avatar-submenu-trigger banner-svg" xmlns="http://www.w3.org/2000/svg" width="36" height="36" viewBox="0 0 24 24"><path d="M4 6h16v2H4zm0 5h16v2H4zm0 5h16v2H4z"></path></svg>
</div>
<a id="my-username" class="top-heading hideondesktop" href="#"><span class="hideondesktop">My FA ( </span>zzreg<span class="hideondesktop"> )</span></a>
<div class="dropdown dropdown-right">
<div class="dd-inner">
<div class="column">
<h3>Account</h3>
<a href="/user/zzreg/">My Userpage</a>
<a href="/msg/pms/">Check My Notes</a>
<a href="/controls/journal/">Create a Journal</a>
<a href="/commissions/zzreg/">My Commission Info</a>
<h3>Support Fur Affinity</h3>
<a href="/plus/">Subscribe to FA+ </a>
<a href="https://shop.furaffinity.net/">Merch Store</a>
<h3>Trouble Tickets</h3>
<a href="/controls/troubletickets/">Report a Problem</a>
<div class="mobile-sfw-toggle">
<h3 class="padding-top:10px">Toggle SFW</h3>
<div class="sfw-toggle type-slider slider-button-wrapper" style="position:relative;top:5px">
<input type="checkbox" id="sfw-toggle-mobile" class="slider-toggle" />
<label class="slider-viewport" for="sfw-toggle-mobile">
<div class="slider">
<div class="slider-button">&nbsp;</div>
<div class="slider-content left"><span>SFW</span></div>
<div class="slider-content right"><span>NSFW</span></div>
</div>
</label>
</div>
</div>
<hr>
<form class="post-btn logout-link" method="post" action="/logout/"><button type="submit">Log Out</button><input type="hidden" name="key" value="3d571edd3040f6bd34d5c9de2c26f676a79464e8"/></form>
<script type="text/javascript">
_fajs.push(['init_logout_button', '.logout-link button']);
</script>
</div>
</div>
</div>
</li>
<li class="submenu-trigger">
<a class="top-heading" href="#"><svg class="banner-svg" xmlns="http://www.w3.org/2000/svg" width="36" height="36" viewBox="0 0 24 24" style="transform: ;msFilter:;"><path d="M12 16c2.206 0 4-1.794 4-4s-1.794-4-4-4-4 1.794-4 4 1.794 4 4 4zm0-6c1.084 0 2 .916 2 2s-.916 2-2 2-2-.916-2-2 .916-2 2-2z"></path><path d="m2.845 16.136 1 1.73c.531.917 1.809 1.261 2.73.73l.529-.306A8.1 8.1 0 0 0 9 19.402V20c0 1.103.897 2 2 2h2c1.103 0 2-.897 2-2v-.598a8.132 8.132 0 0 0 1.896-1.111l.529.306c.923.53 2.198.188 2.731-.731l.999-1.729a2.001 2.001 0 0 0-.731-2.732l-.505-.292a7.718 7.718 0 0 0 0-2.224l.505-.292a2.002 2.002 0 0 0 .731-2.732l-.999-1.729c-.531-.92-1.808-1.265-2.731-.732l-.529.306A8.1 8.1 0 0 0 15 4.598V4c0-1.103-.897-2-2-2h-2c-1.103 0-2 .897-2 2v.598a8.132 8.132 0 0 0-1.896 1.111l-.529-.306c-.924-.531-2.2-.187-2.731.732l-.999 1.729a2.001 2.001 0 0 0 .731 2.732l.505.292a7.683 7.683 0 0 0 0 2.223l-.505.292a2.003 2.003 0 0 0-.731 2.733zm3.326-2.758A5.703 5.703 0 0 1 6 12c0-.462.058-.926.17-1.378a.999.999 0 0 0-.47-1.108l-1.123-.65.998-1.729 1.145.662a.997.997 0 0 0 1.188-.142 6.071 6.071 0 0 1 2.384-1.399A1 1 0 0 0 11 5.3V4h2v1.3a1 1 0 0 0 .708.956 6.083 6.083 0 0 1 2.384 1.399.999.999 0 0 0 1.188.142l1.144-.661 1 1.729-1.124.649a1 1 0 0 0-.47 1.108c.112.452.17.916.17 1.378 0 .461-.058.925-.171 1.378a1 1 0 0 0 .471 1.108l1.123.649-.998 1.729-1.145-.661a.996.996 0 0 0-1.188.142 6.071 6.071 0 0 1-2.384 1.399A1 1 0 0 0 13 18.7l.002 1.3H11v-1.3a1 1 0 0 0-.708-.956 6.083 6.083 0 0 1-2.384-1.399.992.992 0 0 0-1.188-.141l-1.144.662-1-1.729 1.124-.651a1 1 0 0 0 .471-1.108z"></path></svg></a>
<div class="dropdown dropdown-right">
<div class="dd-inner">
<div class="column">
<h3>Account Information</h3>
<a href="/controls/settings/">Account Settings</a>
<a href="/controls/site-settings/">Global Site Settings</a>
<a href="/controls/user-settings/">User Settings</a>
<h3>Customize User Profile</h3>
<a href="/controls/profile/">Profile Info</a>
<a href="/controls/profilebanner/">Profile Banner</a>
<a href="/controls/contacts/">Contacts & Social Media</a>
<a href="/controls/avatar/">Avatar Management</a>
<h3>Manage My Content</h3>
<a href="/controls/submissions/">Submissions</a>
<a href="/controls/folders/submissions/">Folders</a>
<a href="/controls/journal/">Journals</a>
<a href="/controls/favorites/">Favorites</a>
<a href="/controls/buddylist/">Watches</a>
<a href="/controls/shouts/">Shouts</a>
<a href="/controls/badges/">Badges</a>
<h3>Security</h3>
<a href="/controls/sessions/logins/">Active Sessions</a>
<a href="/controls/sessions/logs/">Activity Log</a>
<a href="/controls/sessions/labels/">Browser Labels</a>
</div>
</div>
</div>
</li>
</ul>
<script type="text/javascript">
_fajs.push(['init_sfw_button', '.sfw-toggle']);
</script>
</nav>
<script type="text/javascript">
_fajs.push(function(){
// all menus that should be opened only one at a time
$$('.css-menu-toggle.only-one').invoke('observe', 'click', function(evt) {
var curr_input = $(evt.findElement('label').getAttribute('for'));
curr_input.next('.nav-ac-content').removeClassName('no-transition');
if(curr_input.checked === false) {
$$('.css-menu-toggle.only-one').each(function(elm){
var elm_input = $(elm.getAttribute('for'));
if(elm_input.checked === true) {
elm_input.next('.nav-ac-content').addClassName('no-transition');
elm_input.checked = false;
}
});
}
});
});
</script>
<div class="news-block">
</div>
<div id="main-window" class="footer-mobile-tweak g-wrapper">
<div id="header">
<!-- site banner -->
<site-banner>
<a href="/"><img src="/themes/beta/img/banners/logo/fa-banner-spring.jpg"></a>
</site-banner>
<a name="top"></a>
</div>
<div id="site-content">
<!-- /header -->
<div id="frontpage">
<div id="columnpage">
<div class="content">
<div class="leaderboardAd">
<div data-id="header_middle" class="leaderboardAd__slot format--leaderboard jsAdSlot"></div>
</div>
<section class="gallery-section">
<div class="section-header">
<h2>Recent Submissions</h2>
</div>
<div class="section-body">
<div class="gallery-frontpage-submission-margin">
<section id="gallery-frontpage-submissions" class="gallery no-padding submissions rows-3 s-200 nodesc">
<figure id="sid-52807274" class="r-general t-image u-lemontastictobster"><b><u><a href="/view/52807274/"><img alt="" src="//t.furaffinity.net/52807274@200-1688750295.jpg" data-width="146.827" data-height="200" style="width:146.827px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52807274/" title="FREE OC Animatronic Raffle! (READ DESC)">FREE OC Animatronic Raffle! (READ DESC)</a></p><p><i>by</i> <a href="/user/lemontastictobster/" title="LemontasticTobster">LemontasticTobster</a></p></figcaption></figure>
</section>
</div>
<script type="text/javascript">
_fajs.push(['init_gallery', 'gallery-frontpage-submissions']);
</script>
</div>
</section>
<section class="gallery-section">
<div class="section-header">
<h2>Recent Writing & Poetry</h2>
</div>
<div class="section-body">
<div class="gallery-frontpage-submission-margin">
<section id="gallery-frontpage-writing" class="gallery stories rows-2 s-200">
</section>
</div>
<script type="text/javascript">
_fajs.push(['init_gallery', 'gallery-frontpage-writing']);
</script>
</div>
</section>
<section class="gallery-section">
<div class="section-header">
<h2>Recent Music & Audio</h2>
</div>
<div class="section-body">
<div class="gallery-frontpage-submission-margin">
<section id="gallery-frontpage-music" class="gallery music rows-2 s-200">
</section>
</div>
<script type="text/javascript">
_fajs.push(['init_gallery', 'gallery-frontpage-music']);
</script>
</div>
</section>
<section class="gallery-section">
<div class="section-header">
<h2>Fursuiting & Crafts</h2>
</div>
<div class="section-body">
<div class="gallery-frontpage-submission-margin">
<section id="gallery-frontpage-crafts" class="gallery crafts rows-2 s-200 nodesc">
</section>
</div>
<script type="text/javascript">
_fajs.push(['init_gallery', 'gallery-frontpage-crafts']);
</script>
</div>
</section>
</div>
</div>
</div>
</div>
<!-- /<div id="site-content"> -->
<div id="footer">
<div class="auto_link footer-links">
<span class="hideonmobile">
<a href="/advertising">Advertise</a> |
<a href="/plus"><img style="position:relative;top:4px" src="/themes/beta/img/the-golden-pawb.png"> Get FA+</a> |
<a href="https://shop.furaffinity.net/">Merch Store</a> |
<a href="/tos">Terms of Service</a> |
<a href="/privacy">Privacy</a> |
<a href="/coc">Code of Conduct</a> |
<a href="/aup">Upload Policy</a>
</span>
</div>
<div class="footerAds">
<div class="footerAds__column">
<div class="footerAds__slot format--faMediumRectangle jsAdSlot" data-id="footer_left"></div>
</div>
<div class="footerAds__column">
<div class="footerAds__slot footerAds__slot--faLogo">
<img src="/themes/beta/img/banners/fa_logo.png?v2">
</div>
</div>
<div class="footerAds__column">
<div class="footerAds__slot format--faSmallRectangle jsAdSlot" data-id="footer_right_top"></div>
<div class="footerAds__slot format--faSmallRectangle jsAdSlot" data-id="footer_right_bottom"></div>
</div>
</div>
<div class="online-stats">
42455 <strong><span title="Measured in the last 900 seconds">Users online</span></strong> &mdash;
2951 <strong>guests</strong>,
15527 <strong>registered</strong>
and 23977 <strong>other</strong>
<!-- Online Counter Last Update: Fri, 07 Jul 2023 10:18:00 -0700 -->
</div>
<small>Limit bot activity to periods with less than 10k registered users online.</small>
<br><br>
<strong>&copy; 2005-2023 Frost Dragon Art LLC</strong>
<div class="footnote">
Server Time: Jul 7, 2023 10:18 AM </div>
</div>
<div id="cookie-notification" class="default-hidden">
<div class="text-container">This website uses cookies to enhance your browsing experience. <a href="/privacy" target="_blank">Learn More</a></div>
<div class="button-container"><button class="accept">I Consent</button></div>
</div>
<script type="text/javascript">
_fajs.push(function(){
$$('#cookie-notification button').invoke('observe', 'click', function() {
setCookie('cc', 1, expiryyear, '/');
$('cookie-notification').addClassName('default-hidden');
});
$('cookie-notification').removeClassName('default-hidden');
});
</script>
</div>
<!-- <div id="main-window"> -->
<!--
Server Local Time: Jul 7, 2023 10:18 AM <br />
Page generated in 0.012 seconds [ 39.7% PHP, 60.3% SQL ] (17 queries) -->
<script type="text/javascript">
_fajs.push(function() {
var exists = getCookie('sz');
var saved = save_viewport_size();
if((!exists && saved) || (exists && saved && exists != saved)) {
//window.location.reload();
}
});
</script>
<script type="text/javascript" src="/themes/beta/js/prototype.1.7.3.min.js"></script>
<script type="text/javascript" src="/themes/beta/js/script.js?u=2023052501"></script>
<script type="text/javascript">
var server_timestamp = 1688750308;
var client_timestamp = ((new Date()).getTime())/1000;
var server_timestamp_delta = server_timestamp - client_timestamp;
var sfw_cookie_name = 'sfw';
var news_cookie_name = 'n';
var adData = {"sizeConfig":[{"labels":["desktopWide"],"mediaQuery":"(min-width: 1065px)","sizesSupported":[[728,90],[300,250],[300,168],[300,600],[160,600]]},{"labels":["desktopNarrow"],"mediaQuery":"(min-width: 720px) and (max-width: 1064px)","sizesSupported":[[728,90],[300,250],[300,168]]},{"labels":["mobile"],"mediaQuery":"(min-width: 0px) and (max-width: 719px)","sizesSupported":[[320,50],[300,50],[320,100]]}],"slotConfig":{"header_middle":{"containerSize":{"desktopWide":[728,100],"desktopNarrow":[728,100],"mobile":[320,100]},"providerPriority":["inhouse"]},"above_content":{"containerSize":{"desktopWide":[728,100],"desktopNarrow":[728,100],"mobile":[320,100]},"providerPriority":["inhouse"]},"sidebar":{"containerSize":{"desktopWide":[300,250]},"providerPriority":["inhouse"]},"sidebar_tall":{"containerSize":{"desktopWide":[300,600]},"providerPriority":["inhouse"]},"footer_left":{"containerSize":{"desktopWide":[300,200],"desktopNarrow":[300,200],"mobile":[300,200]},"providerPriority":["inhouse"]},"footer_right_top":{"containerSize":{"desktopWide":[300,90],"desktopNarrow":[300,90],"mobile":[300,90]},"providerPriority":["inhouse"]},"footer_right_bottom":{"containerSize":{"desktopWide":[300,90],"desktopNarrow":[300,90],"mobile":[300,90]},"providerPriority":["inhouse"]},"header_right_left":{"containerSize":{"desktopWide":[300,90]},"providerPriority":["inhouse"]},"header_right_right":{"containerSize":{"desktopWide":[300,90]},"providerPriority":["inhouse"]},"sidebar_top":{"containerSize":{"desktopWide":[300,90]},"providerPriority":["inhouse"]},"sidebar_bottom":{"containerSize":{"desktopWide":[300,90]},"providerPriority":["inhouse"]}},"providerConfig":{"inhouse":{"domain":"https:\/\/rv.furaffinity.net","dataPath":"\/live\/www\/delivery\/spc.php","dataVariableName":"OA_output"}},"adConfig":{"inhouse":{"header_middle":{"default":{"tagId":11,"tagSize":[728,90]},"sizeOverride":{"mobile":{"tagId":19,"tagSize":[300,90]}}},"above_content":{"default":{"tagId":15,"tagSize":[728,90]},"sizeOverride":{"mobile":{"tagId":17,"tagSize":[300,90]}}},"sidebar":{"default":{"tagId":13,"tagSize":[300,250]}},"sidebar_tall":{"default":{"tagId":13,"tagSize":[300,250]}},"footer_left":{"default":{"tagId":10,"tagSize":[300,200]}},"footer_right_top":{"default":{"tagId":5,"tagSize":[300,90]}},"footer_right_bottom":{"default":{"tagId":6,"tagSize":[300,90]}},"header_right_left":{"default":{"tagId":2,"tagSize":[300,90]}},"header_right_right":{"default":{"tagId":4,"tagSize":[300,90]}},"sidebar_top":{"default":{"tagId":2,"tagSize":[300,90]}},"sidebar_bottom":{"default":{"tagId":4,"tagSize":[300,90]}}}}};
window.fad = new adManager(adData.sizeConfig, adData.slotConfig, adData.providerConfig, adData.adConfig, 1);
</script>
<script type="text/javascript">
_fajs.push(function() {
var ddmenuOptions = {
menuId: "ddmenu",
linkIdToMenuHtml: null,
open: "onmouseover", // or "onclick"
delay: 1,
speed: 1,
keysNav: true,
license: "2c1f72"
};
var ddmenu = new Ddmenu(ddmenuOptions);
});
</script>
</body>
<!---
|\ /|
/_^ ^_\
\v/
The fox goes "moo!"
--->
</html>

View File

@@ -0,0 +1,807 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="en" class="no-js" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title>Index -- Fur Affinity [dot] net</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Fur Affinity | For all things fluff, scaled, and feathered!" />
<meta name="keywords" content="fur furry furries fursuit fursuits cosplay brony bronies zootopia scalies kemono anthro anthropormophic art online gallery portfolio" />
<meta name="distribution" content="global" />
<meta name="copyright" content="Frost Dragon Art LLC" />
<meta name="robots" content="noai, noimageai" />
<link rel="icon" href="/themes/beta/img/favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="/themes/beta/img/favicon.ico" type="image/x-icon" />
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,500,500i,600,600i,700,700i" rel="stylesheet">
<meta http-equiv="X-UA-Compatible" content="IE=9; IE=EDGE" />
<!-- og -->
<meta property="og:image" content="https://www.furaffinity.net/themes/beta/img/banners/fa_logo.png?v2" />
<!-- twitter -->
<meta name="twitter:image" content="https://www.furaffinity.net/themes/beta/img/banners/fa_logo.png?v2" />
<script type="text/javascript">
var _faurl={d:'//d.furaffinity.net',a:'//a.furaffinity.net',r:'//rv.furaffinity.net',t:'//t.furaffinity.net',pb:'/themes/beta/js/prebid-6.13.0-fa.js'};
</script>
<script type="text/javascript" src="/themes/beta/js/common.js?u=2023052501"></script>
<link type="text/css" rel="stylesheet" href="/themes/beta/css/ui_theme_dark.css?u=2023052501" />
<!-- browser hints -->
<link rel="preconnect" href="//t.furaffinity.net" />
<link rel="preconnect" href="//a.furaffinity.net" />
<link rel="preconnect" href="//rv.furaffinity.net" />
<link rel="preconnect" href="https://www15.smartadserver.com" />
<link rel="preload" href="/themes/beta/js/prototype.1.7.3.min.js" as="script" />
<link rel="preload" href="/themes/beta/js/script.js?u=2023052501" as="script" />
</head>
<!-- EU request: no -->
<body data-static-path="/themes/beta" id="pageid-frontpage">
<!-- sidebar -->
<div class="mobile-navigation">
<div class="mobile-nav-container">
<div class="mobile-nav-container-item left">
<label for="mobile-menu-nav" class="css-menu-toggle only-one"><img class="burger-menu" src="/themes/beta/img/fa-burger-menu-icon.png"></label>
</div>
<div class="mobile-nav-container-item center"><a class="mobile-nav-logo" href="/"><img class="site-logo" src="/themes/beta/img/banners/fa_logo.png?v2"></a></div>
<div class="mobile-nav-container-item right">
</div>
</div>
<div class="nav-ac-container">
<input id="mobile-menu-nav" name="accordion-1" type="checkbox" />
<article class="nav-ac-content mobile-menu">
<div class="mobile-nav-content-container">
<div class="aligncenter">
<a href="/user/zzreg/"><img class="loggedin_user_avatar avatar" alt="zzreg" src="//a.furaffinity.net/1424255659/zzreg.gif"/></a>
<h2 style="margin-bottom:0"><a href="/user/zzreg/">zzreg</a></h2>
<a href="/user/zzreg/">Userpage</a> |
<a href="/msg/pms/">Notes</a> |
<a href="/controls/journal/">Journals</a> |
<a href="/plus/"><img style="position:relative;top:4px" src="/themes/beta/img/the-golden-pawb.png"> FA+</a>
<br>
</div>
<hr>
<h2><a href="/browse/">Browse</a></h2>
<h2><a href="/search/">Search</a></h2>
<h2><a href="/submit/">Upload</a></h2>
<div class="nav-ac-container">
<label for="mobile-menu-submenu-0"><h2 style="margin-top:0;padding-top:0">Support &#x25BC;</h2></label>
<input id="mobile-menu-submenu-0" name="accordion-1" type="checkbox" />
<article class="nav-ac-content nav-ac-content-dropdown">
<a href="/journals/fender">News & Updates</a><br>
<a href="/help/">Help & Support</a><br>
<a href="/advertising.html">Advertising</a><br>
<a href="/blm">Black Lives Matter</a>
<h3>SUPPORT FA</h3>
<a href="/plus/">Subscribe to FA+ </a><br>
<a href="https://shop.furaffinity.net/">FA Merch Store</a>
<h3>RULES & POLICIES</h3>
<a href="/tos">Terms of Service</a><br>
<a href="/privacy">Privacy</a><br>
<a href="/coc">Code of Conduct</a><br>
<a href="/aup">Upload Policy</a>
<h3>SOCIAL</h3>
<a href="https://discord.gg/fur-affinity">Discord</a><br>
<a href="https://www.twitter.com/furaffinity/">Twitter</a>
<h3>Support</h3>
<a href="/controls/troubletickets/">REPORT A PROBLEM</a>
</article>
</div>
<div class="mobile-sfw-toggle">
<h2>SFW Mode</h2>
<div class="sfw-toggle type-slider slider-button-wrapper">
<input type="checkbox" id="sfw-toggle-mobile" class="slider-toggle" />
<label class="slider-viewport" for="sfw-toggle-mobile">
<div class="slider">
<div class="slider-button">&nbsp;</div>
<div class="slider-content left"><span>SFW</span></div>
<div class="slider-content right"><span>NSFW</span></div>
</div>
</label>
</div>
</div>
<div class="nav-ac-container">
<label for="mobile-menu-submenu-1"><h2 style="margin-top:0;padding-top:0">Settings &#x25BC;</h2></label>
<input id="mobile-menu-submenu-1" name="accordion-1" type="checkbox" />
<article class="nav-ac-content nav-ac-content-dropdown">
<h3>ACCOUNT INFORMATION</h3>
<a href="/controls/settings/">Account Settings</a><br>
<a href="/controls/site-settings/">Global Site Settings</a><br>
<a href="/controls/user-settings/">User Settings</a>
<h3>CUSTOMIZE USER PROFILE</h3>
<a href="/controls/profile/">Profile Info</a><br>
<a href="/controls/profilebanner/">Profile Banner</a><br>
<a href="/controls/contacts/">Contacts and Social Media</a><br>
<a href="/controls/avatar/">Avatar Management</a>
<h3>MANAGE MY CONTENT</h3>
<a href="/controls/submissions/">Submissions</a><br>
<a href="/controls/folders/submissions/">Folders</a><br>
<a href="/controls/journal/">Journals</a><br>
<a href="/controls/favorites/">Favorites</a><br>
<a href="/controls/buddylist/">Watches</a><br>
<a href="/controls/shouts/">Shouts</a><br>
<a href="/controls/badges/">Badges</a>
<h3>SECURITY</h3>
<a href="/controls/sessions/logins/">Active Sessions</a><br>
<a href="/controls/sessions/logs/">Activity Log</a><br>
<a href="/controls/sessions/labels/">Browser Labels</a>
</article>
</div>
<hr>
<hr>
<h2><form class="post-btn logout-link" method="post" action="/logout/"><button type="submit">Log Out</button><input type="hidden" name="key" value="3d571edd3040f6bd34d5c9de2c26f676a79464e8"/></form>
<script type="text/javascript">
_fajs.push(['init_logout_button', '.logout-link button']);
</script>
</h2>
<h2></h2>
</div>
</article>
</div>
</div>
<div class="mobile-notification-bar">
<a class="notification-container inline" href="/msg/submissions/" title="42,182 Submission Notifications">42182S</a>
<a class="notification-container inline" href="/msg/others/#journals" title="15,689 Journal Notifications">15689J</a>
</div>
<nav id="ddmenu">
<div class="mobile-nav navhideondesktop hideonmobile hideontablet">
<div class="mobile-nav-logo"><a class="mobile-nav-logo" href="/"><img src="/themes/beta/img/banners/fa_logo.png?v2"></a></div>
<div class="mobile-nav-header-item"><a href="/browse/">Browse</a></div>
<div class="mobile-nav-header-item"><a href="/search/">Search</a></div>
</div>
<div class="menu-icon"></div>
<ul class="navhideonmobile">
<li class="lileft"><div class="lileft hideonmobile" style="vertical-align:middle;line-height:0 !important" ><a class="top-heading" href="/"><img class="nav-bar-logo" src="/themes/beta/img/banners/fa_logo.png?v2"></a></div></li>
<li class="lileft"><a class="top-heading" href="/browse/"><div class="sprite-paw menu-space-saver hideonmobile"></div>Browse</a></li>
<li class="lileft"><a class="top-heading hideondesktop" href="/search/">Search</a></li>
<li class="lileft"><a class="top-heading" href="/submit/"><div class="sprite-upload menu-space-saver hideonmobile"></div> Upload</a></li>
<li class="lileft">
<a class="top-heading" href="#"><div class="sprite-news menu-space-saver hideonmobile"></div>Support</a>
<i class="caret"></i>
<div class="dropdown dropdown-left ">
<div class="dd-inner">
<div class="column">
<h3>Community</h3>
<a href="/journals/fender">News & Updates</a>
<a href="/help/">Help & Support</a>
<a href="/advertising.html">Advertising</a>
<a href="/blm/">Black Lives Matter</a>
<h3>Rules & Policies</h3>
<a href="/tos">Terms of Service</a>
<a href="/privacy">Privacy</a>
<a href="/coc">Code of Conduct</a>
<a href="/aup">Upload Policy</a>
<h3>Social</h3>
<a href="https://discord.gg/fur-affinity">Discord</a>
<a href="https://www.twitter.com/furaffinity/">Twitter</a>
<h3>Trouble Tickets</h3>
<a href="/controls/troubletickets/">Report a Problem</a>
</div>
</div>
</div>
</li>
<li class="lileft menu-space-saver"><a class="top-heading hideontablet" href="/plus/"><img style="position:relative;top:3px" src="/themes/beta/img/the-golden-pawb.png"> FA+</a></li>
<div class="lileft hideonmobile">
<form id="searchbox" method="get" action="/search/">
<input type="search" name="q" placeholder="SEARCH">
<a href="/search">&nbsp;</a>
</form>
</div>
<li class="message-bar-desktop">
<a class="notification-container inline" href="/msg/submissions/" title="42,182 Submission Notifications">42182S</a>
<a class="notification-container inline" href="/msg/others/#journals" title="15,689 Journal Notifications">15689J</a>
</li>
<li>
<div class="floatleft hideonmobile">
<a href="/user/zzreg"><img class="loggedin_user_avatar menubar-icon-resize avatar" style="cursor:pointer" alt="zzreg" src="//a.furaffinity.net/1424255659/zzreg.gif"/></a>
</div>
</li>
<li class="submenu-trigger">
<div class="floatleft hideonmobile">
<svg class="avatar-submenu-trigger banner-svg" xmlns="http://www.w3.org/2000/svg" width="36" height="36" viewBox="0 0 24 24"><path d="M4 6h16v2H4zm0 5h16v2H4zm0 5h16v2H4z"></path></svg>
</div>
<a id="my-username" class="top-heading hideondesktop" href="#"><span class="hideondesktop">My FA ( </span>zzreg<span class="hideondesktop"> )</span></a>
<div class="dropdown dropdown-right">
<div class="dd-inner">
<div class="column">
<h3>Account</h3>
<a href="/user/zzreg/">My Userpage</a>
<a href="/msg/pms/">Check My Notes</a>
<a href="/controls/journal/">Create a Journal</a>
<a href="/commissions/zzreg/">My Commission Info</a>
<h3>Support Fur Affinity</h3>
<a href="/plus/">Subscribe to FA+ </a>
<a href="https://shop.furaffinity.net/">Merch Store</a>
<h3>Trouble Tickets</h3>
<a href="/controls/troubletickets/">Report a Problem</a>
<div class="mobile-sfw-toggle">
<h3 class="padding-top:10px">Toggle SFW</h3>
<div class="sfw-toggle type-slider slider-button-wrapper" style="position:relative;top:5px">
<input type="checkbox" id="sfw-toggle-mobile" class="slider-toggle" />
<label class="slider-viewport" for="sfw-toggle-mobile">
<div class="slider">
<div class="slider-button">&nbsp;</div>
<div class="slider-content left"><span>SFW</span></div>
<div class="slider-content right"><span>NSFW</span></div>
</div>
</label>
</div>
</div>
<hr>
<form class="post-btn logout-link" method="post" action="/logout/"><button type="submit">Log Out</button><input type="hidden" name="key" value="3d571edd3040f6bd34d5c9de2c26f676a79464e8"/></form>
<script type="text/javascript">
_fajs.push(['init_logout_button', '.logout-link button']);
</script>
</div>
</div>
</div>
</li>
<li class="submenu-trigger">
<a class="top-heading" href="#"><svg class="banner-svg" xmlns="http://www.w3.org/2000/svg" width="36" height="36" viewBox="0 0 24 24" style="transform: ;msFilter:;"><path d="M12 16c2.206 0 4-1.794 4-4s-1.794-4-4-4-4 1.794-4 4 1.794 4 4 4zm0-6c1.084 0 2 .916 2 2s-.916 2-2 2-2-.916-2-2 .916-2 2-2z"></path><path d="m2.845 16.136 1 1.73c.531.917 1.809 1.261 2.73.73l.529-.306A8.1 8.1 0 0 0 9 19.402V20c0 1.103.897 2 2 2h2c1.103 0 2-.897 2-2v-.598a8.132 8.132 0 0 0 1.896-1.111l.529.306c.923.53 2.198.188 2.731-.731l.999-1.729a2.001 2.001 0 0 0-.731-2.732l-.505-.292a7.718 7.718 0 0 0 0-2.224l.505-.292a2.002 2.002 0 0 0 .731-2.732l-.999-1.729c-.531-.92-1.808-1.265-2.731-.732l-.529.306A8.1 8.1 0 0 0 15 4.598V4c0-1.103-.897-2-2-2h-2c-1.103 0-2 .897-2 2v.598a8.132 8.132 0 0 0-1.896 1.111l-.529-.306c-.924-.531-2.2-.187-2.731.732l-.999 1.729a2.001 2.001 0 0 0 .731 2.732l.505.292a7.683 7.683 0 0 0 0 2.223l-.505.292a2.003 2.003 0 0 0-.731 2.733zm3.326-2.758A5.703 5.703 0 0 1 6 12c0-.462.058-.926.17-1.378a.999.999 0 0 0-.47-1.108l-1.123-.65.998-1.729 1.145.662a.997.997 0 0 0 1.188-.142 6.071 6.071 0 0 1 2.384-1.399A1 1 0 0 0 11 5.3V4h2v1.3a1 1 0 0 0 .708.956 6.083 6.083 0 0 1 2.384 1.399.999.999 0 0 0 1.188.142l1.144-.661 1 1.729-1.124.649a1 1 0 0 0-.47 1.108c.112.452.17.916.17 1.378 0 .461-.058.925-.171 1.378a1 1 0 0 0 .471 1.108l1.123.649-.998 1.729-1.145-.661a.996.996 0 0 0-1.188.142 6.071 6.071 0 0 1-2.384 1.399A1 1 0 0 0 13 18.7l.002 1.3H11v-1.3a1 1 0 0 0-.708-.956 6.083 6.083 0 0 1-2.384-1.399.992.992 0 0 0-1.188-.141l-1.144.662-1-1.729 1.124-.651a1 1 0 0 0 .471-1.108z"></path></svg></a>
<div class="dropdown dropdown-right">
<div class="dd-inner">
<div class="column">
<h3>Account Information</h3>
<a href="/controls/settings/">Account Settings</a>
<a href="/controls/site-settings/">Global Site Settings</a>
<a href="/controls/user-settings/">User Settings</a>
<h3>Customize User Profile</h3>
<a href="/controls/profile/">Profile Info</a>
<a href="/controls/profilebanner/">Profile Banner</a>
<a href="/controls/contacts/">Contacts & Social Media</a>
<a href="/controls/avatar/">Avatar Management</a>
<h3>Manage My Content</h3>
<a href="/controls/submissions/">Submissions</a>
<a href="/controls/folders/submissions/">Folders</a>
<a href="/controls/journal/">Journals</a>
<a href="/controls/favorites/">Favorites</a>
<a href="/controls/buddylist/">Watches</a>
<a href="/controls/shouts/">Shouts</a>
<a href="/controls/badges/">Badges</a>
<h3>Security</h3>
<a href="/controls/sessions/logins/">Active Sessions</a>
<a href="/controls/sessions/logs/">Activity Log</a>
<a href="/controls/sessions/labels/">Browser Labels</a>
</div>
</div>
</div>
</li>
</ul>
<script type="text/javascript">
_fajs.push(['init_sfw_button', '.sfw-toggle']);
</script>
</nav>
<script type="text/javascript">
_fajs.push(function(){
// all menus that should be opened only one at a time
$$('.css-menu-toggle.only-one').invoke('observe', 'click', function(evt) {
var curr_input = $(evt.findElement('label').getAttribute('for'));
curr_input.next('.nav-ac-content').removeClassName('no-transition');
if(curr_input.checked === false) {
$$('.css-menu-toggle.only-one').each(function(elm){
var elm_input = $(elm.getAttribute('for'));
if(elm_input.checked === true) {
elm_input.next('.nav-ac-content').addClassName('no-transition');
elm_input.checked = false;
}
});
}
});
});
</script>
<div class="news-block">
</div>
<div id="main-window" class="footer-mobile-tweak g-wrapper">
<div id="header">
<!-- site banner -->
<site-banner>
<a href="/"><img src="/themes/beta/img/banners/logo/fa-banner-spring.jpg"></a>
</site-banner>
<a name="top"></a>
</div>
<div id="site-content">
<!-- /header -->
<div id="frontpage">
<div id="columnpage">
<div class="content">
<div class="leaderboardAd">
<div data-id="header_middle" class="leaderboardAd__slot format--leaderboard jsAdSlot"></div>
</div>
<section class="gallery-section">
<div class="section-header">
<h2>Recent Submissions</h2>
</div>
<div class="section-body">
<div class="gallery-frontpage-submission-margin">
<section id="gallery-frontpage-submissions" class="gallery no-padding submissions rows-3 s-200 nodesc">
<figure id="sid-52807274" class="r-general t-image u-lemontastictobster"><b><u><a href="/view/52807274/"><img alt="" src="//t.furaffinity.net/52807274@200-1688750295.jpg" data-width="146.827" data-height="200" style="width:146.827px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52807274/" title="FREE OC Animatronic Raffle! (READ DESC)">FREE OC Animatronic Raffle! (READ DESC)</a></p><p><i>by</i> <a href="/user/lemontastictobster/" title="LemontasticTobster">LemontasticTobster</a></p></figcaption></figure><!--
-->
<figure id="sid-52807273" class="r-mature t-image u-lilwuffler"><b><u><a href="/view/52807273/"><img alt="" src="//t.furaffinity.net/52807273@300-1688750294.jpg" data-width="277.301" data-height="200" style="width:277.301px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52807273/" title="Powershell Chip Belly (Commission)">Powershell Chip Belly (Commission)</a></p><p><i>by</i> <a href="/user/lilwuffler/" title="LilWuffler">LilWuffler</a></p></figcaption></figure><!--
-->
<figure id="sid-52807272" class="r-adult t-image u-amberwind"><b><u><a href="/view/52807272/"><img alt="" src="//t.furaffinity.net/52807272@400-1688750290.jpg" data-width="355.556" data-height="200" style="width:355.556px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52807272/" title="Farm pets YCH [open]">Farm pets YCH [open]</a></p><p><i>by</i> <a href="/user/amberwind/" title="Amber_Wind">Amber_Wind</a></p></figcaption></figure><!--
-->
<figure id="sid-52807271" class="r-mature t-image u-kayruna900"><b><u><a href="/view/52807271/"><img alt="" src="//t.furaffinity.net/52807271@300-1688750286.jpg" data-width="253.262" data-height="200" style="width:253.262px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52807271/" title="Relaxing">Relaxing</a></p><p><i>by</i> <a href="/user/kayruna900/" title="Kayruna900">Kayruna900</a></p></figcaption></figure><!--
-->
<figure id="sid-52807270" class="r-general t-image u-jaymisc"><b><u><a href="/view/52807270/"><img alt="" src="//t.furaffinity.net/52807270@200-1688750288.jpg" data-width="169.851" data-height="200" style="width:169.851px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52807270/" title="Raco doodle">Raco doodle</a></p><p><i>by</i> <a href="/user/jaymisc/" title="JayMisc">JayMisc</a></p></figcaption></figure><!--
-->
<figure id="sid-52807269" class="r-mature t-image u-lunarcey"><b><u><a href="/view/52807269/"><img alt="" src="//t.furaffinity.net/52807269@200-1688750276.jpg" data-width="131.868" data-height="200" style="width:131.868px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52807269/" title="Jammed Session 24">Jammed Session 24</a></p><p><i>by</i> <a href="/user/lunarcey/" title="Lunarcey">Lunarcey</a></p></figcaption></figure><!--
-->
<figure id="sid-52807268" class="r-general t-image u-felaimaster"><b><u><a href="/view/52807268/"><img alt="" src="//t.furaffinity.net/52807268@200-1688750269.jpg" data-width="200" data-height="200" style="width:200px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52807268/" title="Madam Bondyz">Madam Bondyz</a></p><p><i>by</i> <a href="/user/felaimaster/" title="FelaiMaster">FelaiMaster</a></p></figcaption></figure><!--
-->
<figure id="sid-52807267" class="r-general t-image u-zenaquaria"><b><u><a href="/view/52807267/"><img alt="" src="//t.furaffinity.net/52807267@300-1688750257.jpg" data-width="262.123" data-height="200" style="width:262.123px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52807267/" title="ArtFight2023: Team Vampires">ArtFight2023: Team Vampires</a></p><p><i>by</i> <a href="/user/zenaquaria/" title="zenaquaria">zenaquaria</a></p></figcaption></figure><!--
-->
<figure id="sid-52807266" class="r-general t-image u-batalathewolf"><b><u><a href="/view/52807266/"><img alt="" src="//t.furaffinity.net/52807266@400-1688750255.jpg" data-width="340.136" data-height="200" style="width:340.136px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52807266/" title="Radio">Radio</a></p><p><i>by</i> <a href="/user/batalathewolf/" title="Batalathewolf">Batalathewolf</a></p></figcaption></figure><!--
-->
<figure id="sid-52807265" class="r-general t-image u-mdsf"><b><u><a href="/view/52807265/"><img alt="" src="//t.furaffinity.net/52807265@200-1688750254.jpg" data-width="154.919" data-height="200" style="width:154.919px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52807265/" title="ice">ice</a></p><p><i>by</i> <a href="/user/mdsf/" title="MDsf">MDsf</a></p></figcaption></figure><!--
-->
<figure id="sid-52807264" class="r-general t-image u-jackydaw"><b><u><a href="/view/52807264/"><img alt="" src="//t.furaffinity.net/52807264@200-1688750244.jpg" data-width="200" data-height="200" style="width:200px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52807264/" title="Fun with Grim at the Pool">Fun with Grim at the Pool</a></p><p><i>by</i> <a href="/user/jackydaw/" title="Jackydaw">Jackydaw</a></p></figcaption></figure><!--
-->
<figure id="sid-52807263" class="r-adult t-image u-whitefeathersrain"><b><u><a href="/view/52807263/"><img alt="" src="//t.furaffinity.net/52807263@300-1688750242.jpg" data-width="256.132" data-height="200" style="width:256.132px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52807263/" title="FlASH SALE">FlASH SALE</a></p><p><i>by</i> <a href="/user/whitefeathersrain/" title="whitefeathersrain">whitefeathersrain</a></p></figcaption></figure><!--
-->
<figure id="sid-52807262" class="r-mature t-image u-frayze"><b><u><a href="/view/52807262/"><img alt="" src="//t.furaffinity.net/52807262@300-1688750241.jpg" data-width="225" data-height="200" style="width:225px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52807262/" title="Kandis headshot">Kandis headshot</a></p><p><i>by</i> <a href="/user/frayze/" title="Frayze">Frayze</a></p></figcaption></figure><!--
-->
<figure id="sid-52807261" class="r-mature t-image u-daisy-pink71"><b><u><a href="/view/52807261/"><img alt="" src="//t.furaffinity.net/52807261@200-1688750242.jpg" data-width="171.467" data-height="200" style="width:171.467px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52807261/" title="Juliet Facesits Tealeaf">Juliet Facesits Tealeaf</a></p><p><i>by</i> <a href="/user/daisy-pink71/" title="Daisy-pink71">Daisy-pink71</a></p></figcaption></figure><!--
-->
<figure id="sid-52807260" class="r-mature t-image u-tykehictow"><b><u><a href="/view/52807260/"><img alt="" src="//t.furaffinity.net/52807260@300-1688750239.jpg" data-width="246.127" data-height="200" style="width:246.127px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52807260/" title="Runnin' (ahnik)">Runnin' (ahnik)</a></p><p><i>by</i> <a href="/user/tykehictow/" title="TykeHicTow">TykeHicTow</a></p></figcaption></figure><!--
-->
<figure id="sid-52807259" class="r-adult t-image u-chupig"><b><u><a href="/view/52807259/"><img alt="" src="//t.furaffinity.net/52807259@200-1688750233.jpg" data-width="152.113" data-height="200" style="width:152.113px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52807259/" title="Loosing all my stuffing">Loosing all my stuffing</a></p><p><i>by</i> <a href="/user/chupig/" title="Chupig">Chupig</a></p></figcaption></figure><!--
-->
<figure id="sid-52807258" class="r-general t-image u-mintotodile"><b><u><a href="/view/52807258/"><img alt="" src="//t.furaffinity.net/52807258@200-1688750226.jpg" data-width="128.434" data-height="200" style="width:128.434px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52807258/" title="hello!">hello!</a></p><p><i>by</i> <a href="/user/mintotodile/" title="mintotodile">mintotodile</a></p></figcaption></figure><!--
-->
<figure id="sid-52807257" class="r-mature t-image u-heymayaart"><b><u><a href="/view/52807257/"><img alt="" src="//t.furaffinity.net/52807257@400-1688750224.jpg" data-width="400" data-height="196.96" style="width:400px; height:196.96px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52807257/" title="2 SLOTS LEFT">2 SLOTS LEFT</a></p><p><i>by</i> <a href="/user/heymayaart/" title="heymayaart">heymayaart</a></p></figcaption></figure><!--
-->
<figure id="sid-52807256" class="r-general t-image u-amber1118"><b><u><a href="/view/52807256/"><img alt="" src="//t.furaffinity.net/52807256@200-1688750221.jpg" data-width="156.262" data-height="200" style="width:156.262px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52807256/" title="Ivan">Ivan</a></p><p><i>by</i> <a href="/user/amber1118/" title="amber1118">amber1118</a></p></figcaption></figure><!--
-->
<figure id="sid-52807255" class="r-mature t-image u-rodent-blood"><b><u><a href="/view/52807255/"><img alt="" src="//t.furaffinity.net/52807255@200-1688750221.jpg" data-width="133.833" data-height="200" style="width:133.833px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52807255/" title="Heartbeat beat beat - AF">Heartbeat beat beat - AF</a></p><p><i>by</i> <a href="/user/rodent-blood/" title="Rodent-blood">Rodent-blood</a></p></figcaption></figure><!--
-->
<figure id="sid-52807254" class="r-mature t-image u-elcid"><b><u><a href="/view/52807254/"><img alt="" src="//t.furaffinity.net/52807254@200-1688750217.jpg" data-width="165.931" data-height="200" style="width:165.931px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52807254/" title="Arabella di Aranea">Arabella di Aranea</a></p><p><i>by</i> <a href="/user/elcid/" title="ElCid">ElCid</a></p></figcaption></figure><!--
-->
<figure id="sid-52807253" class="r-adult t-image u-zelles"><b><u><a href="/view/52807253/"><img alt="" src="//t.furaffinity.net/52807253@200-1688750214.jpg" data-width="173.743" data-height="200" style="width:173.743px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52807253/" title="Ych footjob reminder">Ych footjob reminder</a></p><p><i>by</i> <a href="/user/zelles/" title="Zelles">Zelles</a></p></figcaption></figure><!--
-->
<figure id="sid-52807252" class="r-general t-image u-lunarcey"><b><u><a href="/view/52807252/"><img alt="" src="//t.furaffinity.net/52807252@300-1688750202.jpg" data-width="252.821" data-height="200" style="width:252.821px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52807252/" title="Jammed Session Update!">Jammed Session Update!</a></p><p><i>by</i> <a href="/user/lunarcey/" title="Lunarcey">Lunarcey</a></p></figcaption></figure><!--
-->
<figure id="sid-52807251" class="r-general t-image u-nordbuster"><b><u><a href="/view/52807251/"><img alt="" src="//t.furaffinity.net/52807251@400-1688750193.jpg" data-width="383.55" data-height="200" style="width:383.55px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52807251/" title="Military pin-up YCH reminder">Military pin-up YCH reminder</a></p><p><i>by</i> <a href="/user/nordbuster/" title="NORDBUSTER">NORDBUSTER</a></p></figcaption></figure><!--
-->
<figure id="sid-52807250" class="r-mature t-image u-woomyboi736"><b><u><a href="/view/52807250/"><img alt="" src="//t.furaffinity.net/52807250@300-1688750193.jpg" data-width="280" data-height="200" style="width:280px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52807250/" title="Domi da racer Bab (ripped)">Domi da racer Bab (ripped)</a></p><p><i>by</i> <a href="/user/woomyboi736/" title="Woomyboi736">Woomyboi736</a></p></figcaption></figure><!--
-->
<figure id="sid-52807248" class="r-adult t-image u-riversausage"><b><u><a href="/view/52807248/"><img alt="" src="//t.furaffinity.net/52807248@200-1688750181.jpg" data-width="176.471" data-height="200" style="width:176.471px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52807248/" title="April Commission #2">April Commission #2</a></p><p><i>by</i> <a href="/user/riversausage/" title="RiverSausage">RiverSausage</a></p></figcaption></figure><!--
-->
<figure id="sid-52807247" class="r-general t-image u-kouunvi"><b><u><a href="/view/52807247/"><img alt="" src="//t.furaffinity.net/52807247@200-1688750170.jpg" data-width="141.311" data-height="200" style="width:141.311px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52807247/" title="Custom character design">Custom character design</a></p><p><i>by</i> <a href="/user/kouunvi/" title="KouunVi">KouunVi</a></p></figcaption></figure><!--
-->
<figure id="sid-52807246" class="r-mature t-image u-theflubbernator"><b><u><a href="/view/52807246/"><img alt="" src="//t.furaffinity.net/52807246@300-1688750169.jpg" data-width="211.34" data-height="200" style="width:211.34px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52807246/" title="Massive Rock Finish">Massive Rock Finish</a></p><p><i>by</i> <a href="/user/theflubbernator/" title="TheFlubbernator">TheFlubbernator</a></p></figcaption></figure><!--
-->
<figure id="sid-52807245" class="r-mature t-image u-studioevergreenart"><b><u><a href="/view/52807245/"><img alt="" src="//t.furaffinity.net/52807245@200-1688750164.jpg" data-width="121.168" data-height="200" style="width:121.168px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52807245/" title="nightclub commission">nightclub commission</a></p><p><i>by</i> <a href="/user/studioevergreenart/" title="StudioEverGreenArt">StudioEverGreenArt</a></p></figcaption></figure><!--
-->
<figure id="sid-52807244" class="r-adult t-image u-spazywolf"><b><u><a href="/view/52807244/"><img alt="" src="//t.furaffinity.net/52807244@200-1688750154.jpg" data-width="200" data-height="200" style="width:200px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52807244/" title="Take a seat YCH OPEN">Take a seat YCH OPEN</a></p><p><i>by</i> <a href="/user/spazywolf/" title="spazywolf">spazywolf</a></p></figcaption></figure><!--
-->
<figure id="sid-52807243" class="r-general t-image u-kaemn"><b><u><a href="/view/52807243/"><img alt="" src="//t.furaffinity.net/52807243@300-1688750150.jpg" data-width="288.18" data-height="200" style="width:288.18px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52807243/" title="20230708">20230708</a></p><p><i>by</i> <a href="/user/kaemn/" title="kaemn">kaemn</a></p></figcaption></figure><!--
-->
<figure id="sid-52807242" class="r-general t-image u-maniczombiedreamg1rl"><b><u><a href="/view/52807242/"><img alt="" src="//t.furaffinity.net/52807242@200-1688750147.jpg" data-width="150.496" data-height="200" style="width:150.496px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52807242/" title="Art Fight 2023 - Audrey">Art Fight 2023 - Audrey</a></p><p><i>by</i> <a href="/user/maniczombiedreamg1rl/" title="maniczombiedreamg1rl">maniczombiedreamg1rl</a></p></figcaption></figure><!--
-->
<figure id="sid-52807241" class="r-adult t-image u-apohorseremind"><b><u><a href="/view/52807241/"><img alt="" src="//t.furaffinity.net/52807241@400-1688750144.jpg" data-width="400" data-height="134.259" style="width:400px; height:134.259px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52807241/" title="YCH Submarine Reminder">YCH Submarine Reminder</a></p><p><i>by</i> <a href="/user/apohorseremind/" title="ApoHorse_Remind">ApoHorse_Remind</a></p></figcaption></figure><!--
-->
<figure id="sid-52807240" class="r-general t-image u-pinkookie"><b><u><a href="/view/52807240/"><img alt="" src="//t.furaffinity.net/52807240@200-1688750143.jpg" data-width="150" data-height="200" style="width:150px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52807240/" title="[YCH] Big boy (open)">[YCH] Big boy (open)</a></p><p><i>by</i> <a href="/user/pinkookie/" title="Pinkookie">Pinkookie</a></p></figcaption></figure><!--
-->
<figure id="sid-52807239" class="r-adult t-image u-browntail"><b><u><a href="/view/52807239/"><img alt="" src="//t.furaffinity.net/52807239@300-1688750143.jpg" data-width="266.314" data-height="200" style="width:266.314px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52807239/" title="Itty Bitty Kitty on a BIG Titty Part 2">Itty Bitty Kitty on a BIG Titty Part 2</a></p><p><i>by</i> <a href="/user/browntail/" title="Browntail">Browntail</a></p></figcaption></figure><!--
-->
<figure id="sid-52807238" class="r-general t-image u-lavochnica"><b><u><a href="/view/52807238/"><img alt="" src="//t.furaffinity.net/52807238@300-1688750128.jpg" data-width="292.119" data-height="200" style="width:292.119px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52807238/" title="YCH auction [open]">YCH auction [open]</a></p><p><i>by</i> <a href="/user/lavochnica/" title="Lavochnica">Lavochnica</a></p></figcaption></figure><!--
-->
<figure id="sid-52807237" class="r-adult t-image u-hexentatze"><b><u><a href="/view/52807237/"><img alt="" src="//t.furaffinity.net/52807237@300-1688750120.jpg" data-width="266.667" data-height="200" style="width:266.667px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52807237/" title="Vore ych reminder">Vore ych reminder</a></p><p><i>by</i> <a href="/user/hexentatze/" title="Hexentatze">Hexentatze</a></p></figcaption></figure><!--
-->
<figure id="sid-52807236" class="r-mature t-image u-morrirylet"><b><u><a href="/view/52807236/"><img alt="" src="//t.furaffinity.net/52807236@200-1688750130.jpg" data-width="115.246" data-height="200" style="width:115.246px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52807236/" title="[cmm] offspring cmm for TheAkimboNinja">[cmm] offspring cmm for TheAkimboNinja</a></p><p><i>by</i> <a href="/user/morrirylet/" title="morrirylet">morrirylet</a></p></figcaption></figure><!--
-->
<figure id="sid-52807235" class="r-mature t-image u-tommy13"><b><u><a href="/view/52807235/"><img alt="" src="//t.furaffinity.net/52807235@200-1688750115.jpg" data-width="144.248" data-height="200" style="width:144.248px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52807235/" title="Chaingagged">Chaingagged</a></p><p><i>by</i> <a href="/user/tommy13/" title="Tommy13">Tommy13</a></p></figcaption></figure><!--
-->
<figure id="sid-52807234" class="r-adult t-image u-rajii"><b><u><a href="/view/52807234/"><img alt="" src="//t.furaffinity.net/52807234@400-1688750111.jpg" data-width="355.556" data-height="200" style="width:355.556px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52807234/" title="CumDrunk">CumDrunk</a></p><p><i>by</i> <a href="/user/rajii/" title="rajii">rajii</a></p></figcaption></figure><!--
-->
</section>
</div>
<script type="text/javascript">
_fajs.push(['init_gallery', 'gallery-frontpage-submissions']);
</script>
</div>
</section>
<section class="gallery-section">
<div class="section-header">
<h2>Recent Writing & Poetry</h2>
</div>
<div class="section-body">
<div class="gallery-frontpage-submission-margin">
<section id="gallery-frontpage-writing" class="gallery stories rows-2 s-200">
<figure id="sid-52807227" class="r-adult t-text u-minolta"><b><u><a href="/view/52807227/"><img alt="" src="//t.furaffinity.net/52807227@200-1688750063.jpg" data-width="50" data-height="50" style="width:50px; height:50px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52807227/" title="The Executioner">The Executioner</a></p><p><i>by</i> <a href="/user/minolta/" title="Minolta">Minolta</a></p></figcaption></figure><!--
-->
<figure id="sid-52807218" class="r-adult t-text u-doombeez"><b><u><a href="/view/52807218/"><img alt="" src="//t.furaffinity.net/52807218@200-1688750007.jpg" data-width="50" data-height="50" style="width:50px; height:50px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52807218/" title="Make It Happen, Part II (TF)">Make It Happen, Part II (TF)</a></p><p><i>by</i> <a href="/user/doombeez/" title="Doombeez">Doombeez</a></p></figcaption></figure><!--
-->
<figure id="sid-52807214" class="r-adult t-text u-iceburgpony"><b><u><a href="/view/52807214/"><img alt="" src="//t.furaffinity.net/52807214@200-1688749998.jpg" data-width="120" data-height="101" style="width:120px; height:101px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52807214/" title="Judy's Interrogation">Judy's Interrogation</a></p><p><i>by</i> <a href="/user/iceburgpony/" title="IceburgPony">IceburgPony</a></p></figcaption></figure><!--
-->
<figure id="sid-52807123" class="r-adult t-text u-iceburgpony"><b><u><a href="/view/52807123/"><img alt="" src="//t.furaffinity.net/52807123@200-1688749560.jpg" data-width="120" data-height="101" style="width:120px; height:101px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52807123/" title="Iroh's Ticklish Fate: Chapter 1">Iroh's Ticklish Fate: Chapter 1</a></p><p><i>by</i> <a href="/user/iceburgpony/" title="IceburgPony">IceburgPony</a></p></figcaption></figure><!--
-->
<figure id="sid-52806975" class="r-mature t-text u-fcneko"><b><u><a href="/view/52806975/"><img alt="" src="//t.furaffinity.net/52806975@200-1688748859.jpg" data-width="120" data-height="71" style="width:120px; height:71px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52806975/" title="A Meeting of the Minds">A Meeting of the Minds</a></p><p><i>by</i> <a href="/user/fcneko/" title="fcneko">fcneko</a></p></figcaption></figure><!--
-->
<figure id="sid-52806819" class="r-general t-text u-suitchum108f"><b><u><a href="/view/52806819/"><img alt="" src="//t.furaffinity.net/52806819@200-1688747951.jpg" data-width="50" data-height="50" style="width:50px; height:50px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52806819/" title="Ms Funny Bunny: A carnival themed zootopia AU pt2">Ms Funny Bunny: A carnival themed zootopia AU pt2</a></p><p><i>by</i> <a href="/user/suitchum108f/" title="Suitchum108f">Suitchum108f</a></p></figcaption></figure><!--
-->
<figure id="sid-52806811" class="r-adult t-text u-thegreatjaceygee"><b><u><a href="/view/52806811/"><img alt="" src="//t.furaffinity.net/52806811@200-1688747899.jpg" data-width="200" data-height="200" style="width:200px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52806811/" title="In Space, No One Can Hear You Pop Part 2">In Space, No One Can Hear You Pop Part 2</a></p><p><i>by</i> <a href="/user/thegreatjaceygee/" title="TheGreatJaceyGee">TheGreatJaceyGee</a></p></figcaption></figure><!--
-->
<figure id="sid-52806684" class="r-adult t-text u-thegreatjaceygee"><b><u><a href="/view/52806684/"><img alt="" src="//t.furaffinity.net/52806684@200-1688747134.jpg" data-width="200" data-height="200" style="width:200px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52806684/" title="In Space, No One Can Hear You Pop Part 1">In Space, No One Can Hear You Pop Part 1</a></p><p><i>by</i> <a href="/user/thegreatjaceygee/" title="TheGreatJaceyGee">TheGreatJaceyGee</a></p></figcaption></figure><!--
-->
<figure id="sid-52806568" class="r-general t-text u-vupiqueen"><b><u><a href="/view/52806568/"><img alt="" src="//t.furaffinity.net/52806568@200-1688746523.jpg" data-width="169.477" data-height="200" style="width:169.477px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52806568/" title="All my stories as of now.">All my stories as of now.</a></p><p><i>by</i> <a href="/user/vupiqueen/" title="Vupi_Queen">Vupi_Queen</a></p></figcaption></figure><!--
-->
<figure id="sid-52806526" class="r-general t-text u-agent8.1"><b><u><a href="/view/52806526/"><img alt="" src="//t.furaffinity.net/52806526@200-1688746320.jpg" data-width="50" data-height="50" style="width:50px; height:50px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52806526/" title="The never ending feast">The never ending feast</a></p><p><i>by</i> <a href="/user/agent8.1/" title="Agent_8.1">Agent_8.1</a></p></figcaption></figure><!--
-->
<figure id="sid-52806466" class="r-adult t-text u-cauxcauxjambaux"><b><u><a href="/view/52806466/"><img alt="" src="//t.furaffinity.net/52806466@200-1688745988.jpg" data-width="112" data-height="120" style="width:112px; height:120px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52806466/" title="The One">The One</a></p><p><i>by</i> <a href="/user/cauxcauxjambaux/" title="Caux_Caux_Jambaux">Caux_Caux_Jambaux</a></p></figcaption></figure><!--
-->
<figure id="sid-52806437" class="r-adult t-text u-truekaiser"><b><u><a href="/view/52806437/"><img alt="" src="//t.furaffinity.net/52806437@200-1688745784.jpg" data-width="50" data-height="50" style="width:50px; height:50px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52806437/" title="Starfall: Chapter 23: Love, Loyalty, and Lies: Part Three">Starfall: Chapter 23: Love, Loyalty, and Lies: Part Three</a></p><p><i>by</i> <a href="/user/truekaiser/" title="truekaiser">truekaiser</a></p></figcaption></figure><!--
-->
<figure id="sid-52806379" class="r-mature t-text u-dorksoul"><b><u><a href="/view/52806379/"><img alt="" src="//t.furaffinity.net/52806379@200-1688745388.jpg" data-width="50" data-height="50" style="width:50px; height:50px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52806379/" title="Wolf Team Rebooted Chapter 7">Wolf Team Rebooted Chapter 7</a></p><p><i>by</i> <a href="/user/dorksoul/" title="Dorksoul">Dorksoul</a></p></figcaption></figure><!--
-->
<figure id="sid-52806375" class="r-general t-text u-darkraitheshiny"><b><u><a href="/view/52806375/"><img alt="" src="//t.furaffinity.net/52806375@200-1688745356.jpg" data-width="83" data-height="120" style="width:83px; height:120px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52806375/" title="Delightfully Devilish">Delightfully Devilish</a></p><p><i>by</i> <a href="/user/darkraitheshiny/" title="DarkraiTheShiny">DarkraiTheShiny</a></p></figcaption></figure><!--
-->
<figure id="sid-52806208" class="r-mature t-text u-nonsequitur"><b><u><a href="/view/52806208/"><img alt="" src="//t.furaffinity.net/52806208@200-1688744410.jpg" data-width="120" data-height="120" style="width:120px; height:120px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52806208/" title="True Booty, or Wishing on a Dragon's Paw">True Booty, or Wishing on a Dragon's Paw</a></p><p><i>by</i> <a href="/user/nonsequitur/" title="nonsequitur">nonsequitur</a></p></figcaption></figure><!--
-->
<figure id="sid-52806168" class="r-adult t-text u-jagaz"><b><u><a href="/view/52806168/"><img alt="" src="//t.furaffinity.net/52806168@200-1688744067.jpg" data-width="120" data-height="120" style="width:120px; height:120px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52806168/" title="Commission - SenriDoragon [Goo'd to meet you]">Commission - SenriDoragon [Goo'd to meet you]</a></p><p><i>by</i> <a href="/user/jagaz/" title="Jagaz">Jagaz</a></p></figcaption></figure><!--
-->
<figure id="sid-52806156" class="r-adult t-text u-gabrielmoon"><b><u><a href="/view/52806156/"><img alt="" src="//t.furaffinity.net/52806156@200-1688744020.jpg" data-width="120" data-height="120" style="width:120px; height:120px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52806156/" title="No Worries, Just Bleats">No Worries, Just Bleats</a></p><p><i>by</i> <a href="/user/gabrielmoon/" title="GabrielMoon">GabrielMoon</a></p></figcaption></figure><!--
-->
<figure id="sid-52806146" class="r-adult t-text u-marksan"><b><u><a href="/view/52806146/"><img alt="" src="//t.furaffinity.net/52806146@200-1688743961.jpg" data-width="200" data-height="200" style="width:200px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52806146/" title="Emily and Mark. The howling lap vixen.">Emily and Mark. The howling lap vixen.</a></p><p><i>by</i> <a href="/user/marksan/" title="Marksan">Marksan</a></p></figcaption></figure><!--
-->
<figure id="sid-52806113" class="r-general t-text u-fafl"><b><u><a href="/view/52806113/"><img alt="" src="//t.furaffinity.net/52806113@200-1688743772.jpg" data-width="120" data-height="106" style="width:120px; height:106px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52806113/" title="FAFL 360: Round 2, 2023">FAFL 360: Round 2, 2023</a></p><p><i>by</i> <a href="/user/fafl/" title="FAFL">FAFL</a></p></figcaption></figure><!--
-->
<figure id="sid-52806032" class="r-general t-text u-hidronics"><b><u><a href="/view/52806032/"><img alt="" src="//t.furaffinity.net/52806032@200-1688743030.jpg" data-width="141.566" data-height="200" style="width:141.566px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52806032/" title="POKEMON AZUL AVERMELHADO VERSION CHAPTER 16 (ENG)">POKEMON AZUL AVERMELHADO VERSION CHAPTER 16 (ENG)</a></p><p><i>by</i> <a href="/user/hidronics/" title="hidronics">hidronics</a></p></figcaption></figure><!--
-->
<figure id="sid-52805884" class="r-general t-text u-pawprinttypist"><b><u><a href="/view/52805884/"><img alt="" src="//t.furaffinity.net/52805884@400-1688742001.jpg" data-width="355.556" data-height="200" style="width:355.556px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52805884/" title="Commission Advertisement - PPT">Commission Advertisement - PPT</a></p><p><i>by</i> <a href="/user/pawprinttypist/" title="PawPrintTypist">PawPrintTypist</a></p></figcaption></figure><!--
-->
<figure id="sid-52805813" class="r-adult t-text u-happywolf23"><b><u><a href="/view/52805813/"><img alt="" src="//t.furaffinity.net/52805813@200-1688741503.jpg" data-width="120" data-height="114" style="width:120px; height:114px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52805813/" title="The adventures of Brenton part 2">The adventures of Brenton part 2</a></p><p><i>by</i> <a href="/user/happywolf23/" title="Happywolf23">Happywolf23</a></p></figcaption></figure><!--
-->
<figure id="sid-52805801" class="r-mature t-text u-fiddlecipher"><b><u><a href="/view/52805801/"><img alt="" src="//t.furaffinity.net/52805801@200-1688741417.jpg" data-width="120" data-height="120" style="width:120px; height:120px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52805801/" title="Doggy Chow">Doggy Chow</a></p><p><i>by</i> <a href="/user/fiddlecipher/" title="Fiddlecipher">Fiddlecipher</a></p></figcaption></figure><!--
-->
<figure id="sid-52805671" class="r-general t-text u-vupiqueen"><b><u><a href="/view/52805671/"><img alt="" src="//t.furaffinity.net/52805671@300-1688740628.jpg" data-width="235.013" data-height="200" style="width:235.013px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52805671/" title="Fortune Of Romance For Me">Fortune Of Romance For Me</a></p><p><i>by</i> <a href="/user/vupiqueen/" title="Vupi_Queen">Vupi_Queen</a></p></figcaption></figure><!--
-->
</section>
</div>
<script type="text/javascript">
_fajs.push(['init_gallery', 'gallery-frontpage-writing']);
</script>
</div>
</section>
<section class="gallery-section">
<div class="section-header">
<h2>Recent Music & Audio</h2>
</div>
<div class="section-body">
<div class="gallery-frontpage-submission-margin">
<section id="gallery-frontpage-music" class="gallery music rows-2 s-200">
<figure id="sid-52806721" class="r-general t-audio u-shanefrost"><b><u><a href="/view/52806721/"><img alt="" src="//t.furaffinity.net/52806721@200-1688747337.jpg" data-width="120" data-height="68" style="width:120px; height:68px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52806721/" title="Avery Blue - Aquato (Psychonauts 2) / Alternate mix">Avery Blue - Aquato (Psychonauts 2) / Alternate mix</a></p><p><i>by</i> <a href="/user/shanefrost/" title="Shane_Frost">Shane_Frost</a></p></figcaption></figure><!--
-->
<figure id="sid-52805693" class="r-general t-audio u-hebi495"><b><u><a href="/view/52805693/"><img alt="" src="//t.furaffinity.net/52805693@200-1688740856.jpg" data-width="50" data-height="50" style="width:50px; height:50px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52805693/" title="2ndiable - Ambition">2ndiable - Ambition</a></p><p><i>by</i> <a href="/user/hebi495/" title="Hebi495">Hebi495</a></p></figcaption></figure><!--
-->
<figure id="sid-52805369" class="r-general t-audio u-foxyboy1998"><b><u><a href="/view/52805369/"><img alt="" src="//t.furaffinity.net/52805369@200-1688738459.jpg" data-width="120" data-height="120" style="width:120px; height:120px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52805369/" title="Pokemon Anime Theme Ultimate SNES Soundfont Mashup">Pokemon Anime Theme Ultimate SNES Soundfont Mashup</a></p><p><i>by</i> <a href="/user/foxyboy1998/" title="foxyboy1998">foxyboy1998</a></p></figcaption></figure><!--
-->
<figure id="sid-52804413" class="r-general t-audio u-tezilla"><b><u><a href="/view/52804413/"><img alt="" src="//t.furaffinity.net/52804413@200-1688729683.jpg" data-width="120" data-height="107" style="width:120px; height:107px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52804413/" title="Winter Flower(flute cover)">Winter Flower(flute cover)</a></p><p><i>by</i> <a href="/user/tezilla/" title="Tezilla">Tezilla</a></p></figcaption></figure><!--
-->
<figure id="sid-52804255" class="r-general t-audio u-iwtbat"><b><u><a href="/view/52804255/"><img alt="" src="//t.furaffinity.net/52804255@200-1688727958.jpg" data-width="50" data-height="50" style="width:50px; height:50px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52804255/" title="The Boundary of Lore">The Boundary of Lore</a></p><p><i>by</i> <a href="/user/iwtbat/" title="iWTBAT">iWTBAT</a></p></figcaption></figure><!--
-->
<figure id="sid-52803448" class="r-general t-audio u-rachieqt"><b><u><a href="/view/52803448/"><img alt="" src="//t.furaffinity.net/52803448@200-1688718249.jpg" data-width="50" data-height="50" style="width:50px; height:50px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52803448/" title="A bit about myself">A bit about myself</a></p><p><i>by</i> <a href="/user/rachieqt/" title="RachieQT">RachieQT</a></p></figcaption></figure><!--
-->
<figure id="sid-52803285" class="r-general t-audio u-dubgamer42"><b><u><a href="/view/52803285/"><img alt="" src="//t.furaffinity.net/52803285@200-1688716484.jpg" data-width="120" data-height="120" style="width:120px; height:120px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52803285/" title="Nightingale (Aural Alliance Release)">Nightingale (Aural Alliance Release)</a></p><p><i>by</i> <a href="/user/dubgamer42/" title="Dubgamer42">Dubgamer42</a></p></figcaption></figure><!--
-->
<figure id="sid-52803021" class="r-general t-audio u-spookymonthtransformationfan65"><b><u><a href="/view/52803021/"><img alt="" src="//t.furaffinity.net/52803021@200-1688712983.jpg" data-width="120" data-height="105" style="width:120px; height:105px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52803021/" title="Hobie Brown First Person TF">Hobie Brown First Person TF</a></p><p><i>by</i> <a href="/user/spookymonthtransformationfan65/" title="SpookymonthTransformationfan65">SpookymonthTransformationfan65</a></p></figcaption></figure><!--
-->
<figure id="sid-52802253" class="r-general t-audio u-emergencyescape"><b><u><a href="/view/52802253/"><img alt="" src="//t.furaffinity.net/52802253@200-1688705221.jpg" data-width="120" data-height="120" style="width:120px; height:120px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52802253/" title="Automatic (Chords Version)">Automatic (Chords Version)</a></p><p><i>by</i> <a href="/user/emergencyescape/" title="EmergencyEscape">EmergencyEscape</a></p></figcaption></figure><!--
-->
<figure id="sid-52802222" class="r-general t-audio u-kiav"><b><u><a href="/view/52802222/"><img alt="" src="//t.furaffinity.net/52802222@200-1688704914.jpg" data-width="120" data-height="120" style="width:120px; height:120px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52802222/" title="Teens - BFSE (First brainstorming session)">Teens - BFSE (First brainstorming session)</a></p><p><i>by</i> <a href="/user/kiav/" title="Kiav">Kiav</a></p></figcaption></figure><!--
-->
<figure id="sid-52802178" class="r-general t-audio u-kiav"><b><u><a href="/view/52802178/"><img alt="" src="//t.furaffinity.net/52802178@200-1688704605.jpg" data-width="120" data-height="120" style="width:120px; height:120px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52802178/" title="Teens - EDM (I think)">Teens - EDM (I think)</a></p><p><i>by</i> <a href="/user/kiav/" title="Kiav">Kiav</a></p></figcaption></figure><!--
-->
<figure id="sid-52802009" class="r-general t-audio u-driive"><b><u><a href="/view/52802009/"><img alt="" src="//t.furaffinity.net/52802009@200-1688703312.jpg" data-width="120" data-height="120" style="width:120px; height:120px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52802009/" title="¿hurtme? prod.washedaway">¿hurtme? prod.washedaway</a></p><p><i>by</i> <a href="/user/driive/" title="driive">driive</a></p></figcaption></figure><!--
-->
<figure id="sid-52801968" class="r-mature t-audio u-kingoftheburpingbelly2007"><b><u><a href="/view/52801968/"><img alt="" src="//t.furaffinity.net/52801968@200-1688702946.jpg" data-width="88" data-height="120" style="width:88px; height:120px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52801968/" title="Beach Episode | FNaF Vore Audio">Beach Episode | FNaF Vore Audio</a></p><p><i>by</i> <a href="/user/kingoftheburpingbelly2007/" title="Kingoftheburpingbelly2007">Kingoftheburpingbelly2007</a></p></figcaption></figure><!--
-->
<figure id="sid-52801631" class="r-general t-audio u-furrden2"><b><u><a href="/view/52801631/"><img alt="" src="//t.furaffinity.net/52801631@200-1688700363.jpg" data-width="120" data-height="105" style="width:120px; height:105px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52801631/" title="You may think he loves you for your $19 fortnite card">You may think he loves you for your $19 fortnite card</a></p><p><i>by</i> <a href="/user/furrden2/" title="Furrden2">Furrden2</a></p></figcaption></figure><!--
-->
<figure id="sid-52801567" class="r-general t-audio u-furrden2"><b><u><a href="/view/52801567/"><img alt="" src="//t.furaffinity.net/52801567@200-1688700039.jpg" data-width="120" data-height="120" style="width:120px; height:120px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52801567/" title="Swedish Voice Crack type beat (Rare)">Swedish Voice Crack type beat (Rare)</a></p><p><i>by</i> <a href="/user/furrden2/" title="Furrden2">Furrden2</a></p></figcaption></figure><!--
-->
<figure id="sid-52801395" class="r-general t-audio u-craph"><b><u><a href="/view/52801395/"><img alt="" src="//t.furaffinity.net/52801395@200-1688699765.jpg" data-width="120" data-height="120" style="width:120px; height:120px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52801395/" title="blip">blip</a></p><p><i>by</i> <a href="/user/craph/" title="Craph">Craph</a></p></figcaption></figure><!--
-->
<figure id="sid-52800872" class="r-general t-audio u-oxidizeofficial"><b><u><a href="/view/52800872/"><img alt="" src="//t.furaffinity.net/52800872@200-1688695469.jpg" data-width="120" data-height="120" style="width:120px; height:120px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52800872/" title="Caves">Caves</a></p><p><i>by</i> <a href="/user/oxidizeofficial/" title="Oxidize_Official">Oxidize_Official</a></p></figcaption></figure><!--
-->
<figure id="sid-52800697" class="r-adult t-audio u-slaughterbird"><b><u><a href="/view/52800697/"><img alt="" src="//t.furaffinity.net/52800697@200-1688694316.jpg" data-width="120" data-height="116" style="width:120px; height:116px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52800697/" title="The Cursed Idol (Audio)">The Cursed Idol (Audio)</a></p><p><i>by</i> <a href="/user/slaughterbird/" title="Slaughterbird">Slaughterbird</a></p></figcaption></figure><!--
-->
<figure id="sid-52800544" class="r-general t-audio u-whywaved"><b><u><a href="/view/52800544/"><img alt="" src="//t.furaffinity.net/52800544@200-1688693332.jpg" data-width="120" data-height="120" style="width:120px; height:120px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52800544/" title="Light Leaves (WHY? Cover)">Light Leaves (WHY? Cover)</a></p><p><i>by</i> <a href="/user/whywaved/" title="WhyWaved">WhyWaved</a></p></figcaption></figure><!--
-->
<figure id="sid-52800461" class="r-general t-audio u-shikari-fox"><b><u><a href="/view/52800461/"><img alt="" src="//t.furaffinity.net/52800461@200-1688692891.jpg" data-width="120" data-height="120" style="width:120px; height:120px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52800461/" title="WJaBoFA 20. The Foundations of Decay">WJaBoFA 20. The Foundations of Decay</a></p><p><i>by</i> <a href="/user/shikari-fox/" title="Shikari-Fox">Shikari-Fox</a></p></figcaption></figure><!--
-->
<figure id="sid-52799695" class="r-general t-audio u-kiav"><b><u><a href="/view/52799695/"><img alt="" src="//t.furaffinity.net/52799695@200-1688688538.jpg" data-width="120" data-height="120" style="width:120px; height:120px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52799695/" title="Warranty Cardinal - Electronic-ish?">Warranty Cardinal - Electronic-ish?</a></p><p><i>by</i> <a href="/user/kiav/" title="Kiav">Kiav</a></p></figcaption></figure><!--
-->
<figure id="sid-52799330" class="r-general t-audio u-argeniswolf96"><b><u><a href="/view/52799330/"><img alt="" src="//t.furaffinity.net/52799330@200-1688686734.jpg" data-width="50" data-height="50" style="width:50px; height:50px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52799330/" title="GUTTER_CRUISER_(IRVING_FORCE)">GUTTER_CRUISER_(IRVING_FORCE)</a></p><p><i>by</i> <a href="/user/argeniswolf96/" title="ArgenisWolf96">ArgenisWolf96</a></p></figcaption></figure><!--
-->
<figure id="sid-52799077" class="r-general t-audio u-kiav"><b><u><a href="/view/52799077/"><img alt="" src="//t.furaffinity.net/52799077@200-1688685573.jpg" data-width="120" data-height="120" style="width:120px; height:120px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52799077/" title="Juicehead - Work In Progress">Juicehead - Work In Progress</a></p><p><i>by</i> <a href="/user/kiav/" title="Kiav">Kiav</a></p></figcaption></figure><!--
-->
<figure id="sid-52799031" class="r-general t-audio u-leberbram"><b><u><a href="/view/52799031/"><img alt="" src="//t.furaffinity.net/52799031@200-1688685358.jpg" data-width="120" data-height="120" style="width:120px; height:120px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52799031/" title="No Losses!!">No Losses!!</a></p><p><i>by</i> <a href="/user/leberbram/" title="LeberbraM">LeberbraM</a></p></figcaption></figure><!--
-->
</section>
</div>
<script type="text/javascript">
_fajs.push(['init_gallery', 'gallery-frontpage-music']);
</script>
</div>
</section>
<section class="gallery-section">
<div class="section-header">
<h2>Fursuiting & Crafts</h2>
</div>
<div class="section-body">
<div class="gallery-frontpage-submission-margin">
<section id="gallery-frontpage-crafts" class="gallery crafts rows-2 s-200 nodesc">
<figure id="sid-52807217" class="r-general t-image u-hazumu"><b><u><a href="/view/52807217/"><img alt="" src="//t.furaffinity.net/52807217@300-1688750006.jpg" data-width="265.546" data-height="200" style="width:265.546px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52807217/" title="LincsFurs Daisy Made July Furmeet #4">LincsFurs Daisy Made July Furmeet #4</a></p><p><i>by</i> <a href="/user/hazumu/" title="Hazumu">Hazumu</a></p></figcaption></figure><!--
-->
<figure id="sid-52807199" class="r-general t-image u-dumpstercryptid"><b><u><a href="/view/52807199/"><img alt="" src="//t.furaffinity.net/52807199@200-1688749956.jpg" data-width="150.156" data-height="200" style="width:150.156px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52807199/" title="nerd (FURSUIT FOR SALE)">nerd (FURSUIT FOR SALE)</a></p><p><i>by</i> <a href="/user/dumpstercryptid/" title="dumpstercryptid">dumpstercryptid</a></p></figcaption></figure><!--
-->
<figure id="sid-52807186" class="r-general t-image u-hazumu"><b><u><a href="/view/52807186/"><img alt="" src="//t.furaffinity.net/52807186@300-1688749875.jpg" data-width="265.546" data-height="200" style="width:265.546px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52807186/" title="LincsFurs Daisy Made July Furmeet #3">LincsFurs Daisy Made July Furmeet #3</a></p><p><i>by</i> <a href="/user/hazumu/" title="Hazumu">Hazumu</a></p></figcaption></figure><!--
-->
<figure id="sid-52807165" class="r-general t-image u-hazumu"><b><u><a href="/view/52807165/"><img alt="" src="//t.furaffinity.net/52807165@300-1688749767.jpg" data-width="265.546" data-height="200" style="width:265.546px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52807165/" title="LincsFurs Daisy Made July Furmeet #2">LincsFurs Daisy Made July Furmeet #2</a></p><p><i>by</i> <a href="/user/hazumu/" title="Hazumu">Hazumu</a></p></figcaption></figure><!--
-->
<figure id="sid-52807113" class="r-general t-image u-hazumu"><b><u><a href="/view/52807113/"><img alt="" src="//t.furaffinity.net/52807113@300-1688749508.jpg" data-width="265.546" data-height="200" style="width:265.546px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52807113/" title="LincsFurs Daisy Made July Furmeet #1">LincsFurs Daisy Made July Furmeet #1</a></p><p><i>by</i> <a href="/user/hazumu/" title="Hazumu">Hazumu</a></p></figcaption></figure><!--
-->
<figure id="sid-52807086" class="r-general t-image u-puchipuffs"><b><u><a href="/view/52807086/"><img alt="" src="//t.furaffinity.net/52807086@200-1688749390.jpg" data-width="146.72" data-height="200" style="width:146.72px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52807086/" title="Kemono Fennec Seeking a Home!">Kemono Fennec Seeking a Home!</a></p><p><i>by</i> <a href="/user/puchipuffs/" title="PuchiPuffs">PuchiPuffs</a></p></figcaption></figure><!--
-->
<figure id="sid-52806925" class="r-mature t-image u-palenaga"><b><u><a href="/view/52806925/"><img alt="" src="//t.furaffinity.net/52806925@300-1688748510.jpg" data-width="221.994" data-height="200" style="width:221.994px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52806925/" title="Mhah">Mhah</a></p><p><i>by</i> <a href="/user/palenaga/" title="Pale_Naga">Pale_Naga</a></p></figcaption></figure><!--
-->
<figure id="sid-52806891" class="r-general t-image u-darkmustang1"><b><u><a href="/view/52806891/"><img alt="" src="//t.furaffinity.net/52806891@400-1688748324.jpg" data-width="319.421" data-height="200" style="width:319.421px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52806891/" title="Commissions are Open!">Commissions are Open!</a></p><p><i>by</i> <a href="/user/darkmustang1/" title="Darkmustang1">Darkmustang1</a></p></figcaption></figure><!--
-->
<figure id="sid-52806665" class="r-general t-image u-hellioncreations"><b><u><a href="/view/52806665/"><img alt="" src="//t.furaffinity.net/52806665@300-1688747048.jpg" data-width="266.787" data-height="200" style="width:266.787px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52806665/" title="Premade for sale!!">Premade for sale!!</a></p><p><i>by</i> <a href="/user/hellioncreations/" title="Hellion_Creations">Hellion_Creations</a></p></figcaption></figure><!--
-->
<figure id="sid-52806490" class="r-general t-image u-zvorkweresergal"><b><u><a href="/view/52806490/"><img alt="" src="//t.furaffinity.net/52806490@200-1688746110.jpg" data-width="149.932" data-height="200" style="width:149.932px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52806490/" title="YOU CAN'T ESCAPE ME!!!">YOU CAN'T ESCAPE ME!!!</a></p><p><i>by</i> <a href="/user/zvorkweresergal/" title="Zvork_WereSergal">Zvork_WereSergal</a></p></figcaption></figure><!--
-->
<figure id="sid-52806279" class="r-general t-image u-sethaa"><b><u><a href="/view/52806279/"><img alt="" src="//t.furaffinity.net/52806279@400-1688744758.jpg" data-width="386.1" data-height="200" style="width:386.1px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52806279/" title="Premade - Kemono Wolpertinger / Jackalope partial">Premade - Kemono Wolpertinger / Jackalope partial</a></p><p><i>by</i> <a href="/user/sethaa/" title="Sethaa">Sethaa</a></p></figcaption></figure><!--
-->
<figure id="sid-52806232" class="r-general t-image u-sethaa"><b><u><a href="/view/52806232/"><img alt="" src="//t.furaffinity.net/52806232@400-1688744528.jpg" data-width="315.789" data-height="200" style="width:315.789px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52806232/" title="Premande - toony fox partial">Premande - toony fox partial</a></p><p><i>by</i> <a href="/user/sethaa/" title="Sethaa">Sethaa</a></p></figcaption></figure><!--
-->
<figure id="sid-52806131" class="r-general t-image u-sethaa"><b><u><a href="/view/52806131/"><img alt="" src="//t.furaffinity.net/52806131@400-1688743872.jpg" data-width="344.432" data-height="200" style="width:344.432px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52806131/" title="Meco - toony Badger Partial">Meco - toony Badger Partial</a></p><p><i>by</i> <a href="/user/sethaa/" title="Sethaa">Sethaa</a></p></figcaption></figure><!--
-->
<figure id="sid-52806029" class="r-general t-image u-sarakazi"><b><u><a href="/view/52806029/"><img alt="" src="//t.furaffinity.net/52806029@400-1688743020.jpg" data-width="381.944" data-height="200" style="width:381.944px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52806029/" title="Wolf Patches">Wolf Patches</a></p><p><i>by</i> <a href="/user/sarakazi/" title="Sarakazi">Sarakazi</a></p></figcaption></figure><!--
-->
<figure id="sid-52805992" class="r-general t-image u-flanny"><b><u><a href="/view/52805992/"><img alt="" src="//t.furaffinity.net/52805992@200-1688742721.jpg" data-width="141.393" data-height="200" style="width:141.393px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52805992/" title="7.7.2023">7.7.2023</a></p><p><i>by</i> <a href="/user/flanny/" title="flanny">flanny</a></p></figcaption></figure><!--
-->
<figure id="sid-52805915" class="r-general t-image u-sethaa"><b><u><a href="/view/52805915/"><img alt="" src="//t.furaffinity.net/52805915@400-1688742115.jpg" data-width="400" data-height="196.8" style="width:400px; height:196.8px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52805915/" title="Ikario - Kemono Dracatox Fullsuit">Ikario - Kemono Dracatox Fullsuit</a></p><p><i>by</i> <a href="/user/sethaa/" title="Sethaa">Sethaa</a></p></figcaption></figure><!--
-->
<figure id="sid-52805733" class="r-general t-image u-howlmetalhorrors"><b><u><a href="/view/52805733/"><img alt="" src="//t.furaffinity.net/52805733@400-1688741003.jpg" data-width="355.942" data-height="200" style="width:355.942px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52805733/" title="Bodysuit &amp; Feetpaws">Bodysuit &amp; Feetpaws</a></p><p><i>by</i> <a href="/user/howlmetalhorrors/" title="howlmetalhorrors">howlmetalhorrors</a></p></figcaption></figure><!--
-->
<figure id="sid-52805475" class="r-general t-image u-ugor0924"><b><u><a href="/view/52805475/"><img alt="" src="//t.furaffinity.net/52805475@400-1688739238.jpg" data-width="355.556" data-height="200" style="width:355.556px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52805475/" title="【Now on Sale!】Shark stretch Fursuit🦈">【Now on Sale!】Shark stretch Fursuit🦈</a></p><p><i>by</i> <a href="/user/ugor0924/" title="ugor0924">ugor0924</a></p></figcaption></figure><!--
-->
<figure id="sid-52805393" class="r-general t-image u-icyblueblaze"><b><u><a href="/view/52805393/"><img alt="" src="//t.furaffinity.net/52805393@400-1688738612.jpg" data-width="321.207" data-height="200" style="width:321.207px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52805393/" title="Fursuit for sale">Fursuit for sale</a></p><p><i>by</i> <a href="/user/icyblueblaze/" title="Icyblueblaze">Icyblueblaze</a></p></figcaption></figure><!--
-->
<figure id="sid-52805323" class="r-general t-image u-eclecticclay"><b><u><a href="/view/52805323/"><img alt="" src="//t.furaffinity.net/52805323@400-1688738054.jpg" data-width="355.556" data-height="200" style="width:355.556px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52805323/" title="Rainbow Tiger at Anthrocon">Rainbow Tiger at Anthrocon</a></p><p><i>by</i> <a href="/user/eclecticclay/" title="eclecticclay">eclecticclay</a></p></figcaption></figure><!--
-->
<figure id="sid-52804911" class="r-general t-image u-navemccanine"><b><u><a href="/view/52804911/"><img alt="" src="//t.furaffinity.net/52804911@300-1688734772.jpg" data-width="266.386" data-height="200" style="width:266.386px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52804911/" title="Fursuit Friday 7/7/2023">Fursuit Friday 7/7/2023</a></p><p><i>by</i> <a href="/user/navemccanine/" title="NaveMcCanine">NaveMcCanine</a></p></figcaption></figure><!--
-->
<figure id="sid-52804804" class="r-general t-image u-stitcheduphandmade"><b><u><a href="/view/52804804/"><img alt="" src="//t.furaffinity.net/52804804@200-1688733809.jpg" data-width="150" data-height="200" style="width:150px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52804804/" title="(FS) Pansexual Pride Whales">(FS) Pansexual Pride Whales</a></p><p><i>by</i> <a href="/user/stitcheduphandmade/" title="StitchedUpHandmade">StitchedUpHandmade</a></p></figcaption></figure><!--
-->
<figure id="sid-52804723" class="r-general t-image u-faennec"><b><u><a href="/view/52804723/"><img alt="" src="//t.furaffinity.net/52804723@400-1688733163.jpg" data-width="326.148" data-height="200" style="width:326.148px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52804723/" title="New Mug!">New Mug!</a></p><p><i>by</i> <a href="/user/faennec/" title="Fae_nnec">Fae_nnec</a></p></figcaption></figure><!--
-->
<figure id="sid-52804351" class="r-general t-image u-spiritbringer"><b><u><a href="/view/52804351/"><img alt="" src="//t.furaffinity.net/52804351@200-1688728976.jpg" data-width="160.019" data-height="200" style="width:160.019px; height:200px" loading="lazy" decoding="async" /></a></u></b><figcaption><p><a href="/view/52804351/" title="Clockwork Creature Chimera Sale">Clockwork Creature Chimera Sale</a></p><p><i>by</i> <a href="/user/spiritbringer/" title="SpiritBringer">SpiritBringer</a></p></figcaption></figure><!--
-->
</section>
</div>
<script type="text/javascript">
_fajs.push(['init_gallery', 'gallery-frontpage-crafts']);
</script>
</div>
</section>
</div>
</div>
</div>
</div>
<!-- /<div id="site-content"> -->
<div id="footer">
<div class="auto_link footer-links">
<span class="hideonmobile">
<a href="/advertising">Advertise</a> |
<a href="/plus"><img style="position:relative;top:4px" src="/themes/beta/img/the-golden-pawb.png"> Get FA+</a> |
<a href="https://shop.furaffinity.net/">Merch Store</a> |
<a href="/tos">Terms of Service</a> |
<a href="/privacy">Privacy</a> |
<a href="/coc">Code of Conduct</a> |
<a href="/aup">Upload Policy</a>
</span>
</div>
<div class="footerAds">
<div class="footerAds__column">
<div class="footerAds__slot format--faMediumRectangle jsAdSlot" data-id="footer_left"></div>
</div>
<div class="footerAds__column">
<div class="footerAds__slot footerAds__slot--faLogo">
<img src="/themes/beta/img/banners/fa_logo.png?v2">
</div>
</div>
<div class="footerAds__column">
<div class="footerAds__slot format--faSmallRectangle jsAdSlot" data-id="footer_right_top"></div>
<div class="footerAds__slot format--faSmallRectangle jsAdSlot" data-id="footer_right_bottom"></div>
</div>
</div>
<div class="online-stats">
42455 <strong><span title="Measured in the last 900 seconds">Users online</span></strong> &mdash;
2951 <strong>guests</strong>,
15527 <strong>registered</strong>
and 23977 <strong>other</strong>
<!-- Online Counter Last Update: Fri, 07 Jul 2023 10:18:00 -0700 -->
</div>
<small>Limit bot activity to periods with less than 10k registered users online.</small>
<br><br>
<strong>&copy; 2005-2023 Frost Dragon Art LLC</strong>
<div class="footnote">
Server Time: Jul 7, 2023 10:18 AM </div>
</div>
<div id="cookie-notification" class="default-hidden">
<div class="text-container">This website uses cookies to enhance your browsing experience. <a href="/privacy" target="_blank">Learn More</a></div>
<div class="button-container"><button class="accept">I Consent</button></div>
</div>
<script type="text/javascript">
_fajs.push(function(){
$$('#cookie-notification button').invoke('observe', 'click', function() {
setCookie('cc', 1, expiryyear, '/');
$('cookie-notification').addClassName('default-hidden');
});
$('cookie-notification').removeClassName('default-hidden');
});
</script>
</div>
<!-- <div id="main-window"> -->
<!--
Server Local Time: Jul 7, 2023 10:18 AM <br />
Page generated in 0.012 seconds [ 39.7% PHP, 60.3% SQL ] (17 queries) -->
<script type="text/javascript">
_fajs.push(function() {
var exists = getCookie('sz');
var saved = save_viewport_size();
if((!exists && saved) || (exists && saved && exists != saved)) {
//window.location.reload();
}
});
</script>
<script type="text/javascript" src="/themes/beta/js/prototype.1.7.3.min.js"></script>
<script type="text/javascript" src="/themes/beta/js/script.js?u=2023052501"></script>
<script type="text/javascript">
var server_timestamp = 1688750308;
var client_timestamp = ((new Date()).getTime())/1000;
var server_timestamp_delta = server_timestamp - client_timestamp;
var sfw_cookie_name = 'sfw';
var news_cookie_name = 'n';
var adData = {"sizeConfig":[{"labels":["desktopWide"],"mediaQuery":"(min-width: 1065px)","sizesSupported":[[728,90],[300,250],[300,168],[300,600],[160,600]]},{"labels":["desktopNarrow"],"mediaQuery":"(min-width: 720px) and (max-width: 1064px)","sizesSupported":[[728,90],[300,250],[300,168]]},{"labels":["mobile"],"mediaQuery":"(min-width: 0px) and (max-width: 719px)","sizesSupported":[[320,50],[300,50],[320,100]]}],"slotConfig":{"header_middle":{"containerSize":{"desktopWide":[728,100],"desktopNarrow":[728,100],"mobile":[320,100]},"providerPriority":["inhouse"]},"above_content":{"containerSize":{"desktopWide":[728,100],"desktopNarrow":[728,100],"mobile":[320,100]},"providerPriority":["inhouse"]},"sidebar":{"containerSize":{"desktopWide":[300,250]},"providerPriority":["inhouse"]},"sidebar_tall":{"containerSize":{"desktopWide":[300,600]},"providerPriority":["inhouse"]},"footer_left":{"containerSize":{"desktopWide":[300,200],"desktopNarrow":[300,200],"mobile":[300,200]},"providerPriority":["inhouse"]},"footer_right_top":{"containerSize":{"desktopWide":[300,90],"desktopNarrow":[300,90],"mobile":[300,90]},"providerPriority":["inhouse"]},"footer_right_bottom":{"containerSize":{"desktopWide":[300,90],"desktopNarrow":[300,90],"mobile":[300,90]},"providerPriority":["inhouse"]},"header_right_left":{"containerSize":{"desktopWide":[300,90]},"providerPriority":["inhouse"]},"header_right_right":{"containerSize":{"desktopWide":[300,90]},"providerPriority":["inhouse"]},"sidebar_top":{"containerSize":{"desktopWide":[300,90]},"providerPriority":["inhouse"]},"sidebar_bottom":{"containerSize":{"desktopWide":[300,90]},"providerPriority":["inhouse"]}},"providerConfig":{"inhouse":{"domain":"https:\/\/rv.furaffinity.net","dataPath":"\/live\/www\/delivery\/spc.php","dataVariableName":"OA_output"}},"adConfig":{"inhouse":{"header_middle":{"default":{"tagId":11,"tagSize":[728,90]},"sizeOverride":{"mobile":{"tagId":19,"tagSize":[300,90]}}},"above_content":{"default":{"tagId":15,"tagSize":[728,90]},"sizeOverride":{"mobile":{"tagId":17,"tagSize":[300,90]}}},"sidebar":{"default":{"tagId":13,"tagSize":[300,250]}},"sidebar_tall":{"default":{"tagId":13,"tagSize":[300,250]}},"footer_left":{"default":{"tagId":10,"tagSize":[300,200]}},"footer_right_top":{"default":{"tagId":5,"tagSize":[300,90]}},"footer_right_bottom":{"default":{"tagId":6,"tagSize":[300,90]}},"header_right_left":{"default":{"tagId":2,"tagSize":[300,90]}},"header_right_right":{"default":{"tagId":4,"tagSize":[300,90]}},"sidebar_top":{"default":{"tagId":2,"tagSize":[300,90]}},"sidebar_bottom":{"default":{"tagId":4,"tagSize":[300,90]}}}}};
window.fad = new adManager(adData.sizeConfig, adData.slotConfig, adData.providerConfig, adData.adConfig, 1);
</script>
<script type="text/javascript">
_fajs.push(function() {
var ddmenuOptions = {
menuId: "ddmenu",
linkIdToMenuHtml: null,
open: "onmouseover", // or "onclick"
delay: 1,
speed: 1,
keysNav: true,
license: "2c1f72"
};
var ddmenu = new Ddmenu(ddmenuOptions);
});
</script>
</body>
<!---
|\ /|
/_^ ^_\
\v/
The fox goes "moo!"
--->
</html>