From 7f1fbe3975178c4c774bb6d8330b6e04dfe53b8b Mon Sep 17 00:00:00 2001 From: Rufei Zhou Date: Sun, 6 Apr 2025 19:06:42 -0700 Subject: [PATCH] initial commit --- README.md | 10 + calendar_Autographs.ics | 112 + calendar_Charity_Auction.ics | 38 + calendar_Cultural_Panel.ics | 349 +++ calendar_Fan_Panel.ics | 4281 ++++++++++++++++++++++++++++++ calendar_Gaming.ics | 2288 ++++++++++++++++ calendar_Guest_of_Honor.ics | 435 +++ calendar_Industry_Panel.ics | 103 + calendar_Main_Stage.ics | 113 + calendar_Sakura-Con_Presents.ics | 1059 ++++++++ calendar_Summit_Stage.ics | 32 + poetry.lock | 368 +++ pyproject.toml | 20 + toical.py | 87 + 14 files changed, 9295 insertions(+) create mode 100644 README.md create mode 100644 calendar_Autographs.ics create mode 100644 calendar_Charity_Auction.ics create mode 100644 calendar_Cultural_Panel.ics create mode 100644 calendar_Fan_Panel.ics create mode 100644 calendar_Gaming.ics create mode 100644 calendar_Guest_of_Honor.ics create mode 100644 calendar_Industry_Panel.ics create mode 100644 calendar_Main_Stage.ics create mode 100644 calendar_Sakura-Con_Presents.ics create mode 100644 calendar_Summit_Stage.ics create mode 100755 poetry.lock create mode 100755 pyproject.toml create mode 100755 toical.py diff --git a/README.md b/README.md new file mode 100644 index 0000000..1ebd8e0 --- /dev/null +++ b/README.md @@ -0,0 +1,10 @@ + +This script turns the Sakura-Con schedule from Eventny into iCalendar files for import into your calendar program of choice. Events are broken out into separate files, by track. +It is vibe-coded. Anyway, here's how to run it: + + +```sh +poetry install +eval $(poetry env activate) +python toical.py +``` diff --git a/calendar_Autographs.ics b/calendar_Autographs.ics new file mode 100644 index 0000000..13cace0 --- /dev/null +++ b/calendar_Autographs.ics @@ -0,0 +1,112 @@ +BEGIN:VCALENDAR +VERSION:2.0 +PRODID:-//Autographs Schedule//eventeny.com// +X-WR-CALNAME:Autographs +BEGIN:VEVENT +SUMMARY:Simba Tsuchiya Autograph +DTSTART:20250418T123000 +DTEND:20250418T133000 +CATEGORIES:Autograph,Guest of Honor,Simba Tsuchiya +DESCRIPTION:Track: Autographs\nTags: Autograph\,Guest of Honor\,Simba Tsuc + hiya\n\n +LOCATION:Autograph Hall - Flex A +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Sally Amaki Autograph +DTSTART:20250418T140000 +DTEND:20250418T150000 +CATEGORIES:Autograph,Guest of Honor,Sally Amaki +DESCRIPTION:Track: Autographs\nTags: Autograph\,Guest of Honor\,Sally Amak + i\n\n +LOCATION:Autograph Hall - Flex A +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Sora Tokui Autograph +DTSTART:20250418T140000 +DTEND:20250418T150000 +CATEGORIES:Autograph,Guest of Honor,Sora Tokui +DESCRIPTION:Track: Autographs\nTags: Autograph\,Guest of Honor\,Sora Tokui + \n\n +LOCATION:Autograph Hall - Flex A +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Reol Autograph +DTSTART:20250418T160000 +DTEND:20250418T170000 +CATEGORIES:Reol +DESCRIPTION:Track: Autographs\nTags: Reol\n\n +LOCATION:Autograph Hall - Flex A +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Turtleme Autograph +DTSTART:20250418T173000 +DTEND:20250418T183000 +CATEGORIES:Autograph,Guest of Honor,TurtleMe +DESCRIPTION:Track: Autographs\nTags: Autograph\,Guest of Honor\,TurtleMe\n + \n +LOCATION:Autograph Hall - Flex A +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Hitsujibungaku Autograph +DTSTART:20250418T203000 +DTEND:20250418T213000 +CATEGORIES:Autograph,Hitsujibungaku +DESCRIPTION:Track: Autographs\nTags: Autograph\,Hitsujibungaku\n\n +LOCATION:Autographs - 4C 3 & 4 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Sora Tokui Autograph +DTSTART:20250419T133000 +DTEND:20250419T143000 +CATEGORIES:Autograph,Guest of Honor,Sora Tokui +DESCRIPTION:Track: Autographs\nTags: Autograph\,Guest of Honor\,Sora Tokui + \n\n +LOCATION:Autograph Hall - Flex A +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:TurtleMe Autograph +DTSTART:20250419T150000 +DTEND:20250419T160000 +CATEGORIES:Autograph,Guest of Honor,TurtleMe +DESCRIPTION:Track: Autographs\nTags: Autograph\,Guest of Honor\,TurtleMe\n + \n +LOCATION:Autograph Hall - Flex A +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Hitsujibungaku Autograph +DTSTART:20250419T180000 +DTEND:20250419T190000 +CATEGORIES:Autograph,Guest of Honor,Hitsujibungaku +DESCRIPTION:Track: Autographs\nTags: Autograph\,Guest of Honor\,Hitsujibun + gaku\n\n +LOCATION:Autograph Hall - Flex A +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Reol Autograph +DTSTART:20250419T213000 +DTEND:20250419T223000 +CATEGORIES:Autograph,Reol +DESCRIPTION:Track: Autographs\nTags: Autograph\,Reol\n\n +LOCATION:Autographs - 4C 3 & 4 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Sally Amaki Autograph +DTSTART:20250420T130000 +DTEND:20250420T140000 +CATEGORIES:Autograph,Guest of Honor,Sally Amaki +DESCRIPTION:Track: Autographs\nTags: Autograph\,Guest of Honor\,Sally Amak + i\n\n +LOCATION:Autograph Hall - Flex A +STATUS:ACTIVE +END:VEVENT +END:VCALENDAR diff --git a/calendar_Charity_Auction.ics b/calendar_Charity_Auction.ics new file mode 100644 index 0000000..09ddddb --- /dev/null +++ b/calendar_Charity_Auction.ics @@ -0,0 +1,38 @@ +BEGIN:VCALENDAR +VERSION:2.0 +PRODID:-//Charity Auction Schedule//eventeny.com// +X-WR-CALNAME:Charity Auction +BEGIN:VEVENT +SUMMARY:Charity Auction Viewing +DTSTART:20250418T110000 +DTEND:20250418T180000 +CATEGORIES:Charity Auction +DESCRIPTION:Track: Charity Auction\nTags: Charity Auction\n\nCome view the + available items that will be auctioned on Sunday for our annual Charity A + uction! All proceeds go to the Make-A-Wish Foundation. +LOCATION:Charity Auction & Charity Art Show +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Charity Auction Viewing +DTSTART:20250419T110000 +DTEND:20250419T180000 +CATEGORIES:Charity Auction +DESCRIPTION:Track: Charity Auction\nTags: Charity Auction\n\nCome view the + available items that will be auctioned on Sunday for our annual Charity A + uction! All proceeds go to the Make-A-Wish Foundation. +LOCATION:Charity Auction & Charity Art Show +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Charity Auction - Live Auction! +DTSTART:20250420T120000 +DTEND:20250420T150000 +CATEGORIES:Charity Auction +DESCRIPTION:Track: Charity Auction\nTags: Charity Auction\n\nLive auction + to benefit our sister charity\, the Make-A-Wish Foundation!\nCome make a b + id on some fun anime items for charity! +LOCATION:Charity Auction & Charity Art Show +STATUS:ACTIVE +END:VEVENT +END:VCALENDAR diff --git a/calendar_Cultural_Panel.ics b/calendar_Cultural_Panel.ics new file mode 100644 index 0000000..d6a1f45 --- /dev/null +++ b/calendar_Cultural_Panel.ics @@ -0,0 +1,349 @@ +BEGIN:VCALENDAR +VERSION:2.0 +PRODID:-//Cultural Panel Schedule//eventeny.com// +X-WR-CALNAME:Cultural Panel +BEGIN:VEVENT +SUMMARY:Origami Workshop with PAPER +DTSTART:20250418T100000 +DTEND:20250418T120000 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Cultural Panel\nTags: SC-ALL\n\nDiscover the fascinatin + g craft of origami and learn how to fold decorative\, amusing and practica + l items with a sheet of paper. +LOCATION:Workshop - 330 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Dreamland Maid Cafe +DTSTART:20250418T110000 +DTEND:20250418T150000 +CATEGORIES:Dreamland,Maid Cafe +DESCRIPTION:Track: Cultural Panel\nTags: Dreamland\,Maid Cafe\n\nBook a re + servation for the Dreamland Maid Cafe at +LOCATION:Dreamland Maid Cafe - Elliot Bay Room +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:The Japanese Tea Ceremony of Chanoyu presented by the East-West Ch + anoyu Center +DTSTART:20250418T120000 +DTEND:20250418T130000 +CATEGORIES:Cultural,SC-ALL,Tea Ceremony +DESCRIPTION:Track: Cultural Panel\nTags: Cultural\,SC-ALL\,Tea Ceremony\n\ + n"The interactive Japanese Tea Ceremony\, known as Chanoyu\, is a 400-year + -old cultural practice that cultivates mindfulness and gratitude through a + rt\, aesthetics\, and hospitality.\nStepping into the tearoom\, guests are + enveloped in the soothing sounds of boiling water\, the seasonal beauty o + f handcrafted tea implements\, the subtle fragrance of incense\, and the e + xquisite taste of freshly whisked matcha tea.\nWe invite you to immerse yo + urself in this multi-sensory experience at SakuraCon 2025." +LOCATION:Tea Ceremony - 338-339 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Modern Swordfighting Through Historical European Martial Arts +DTSTART:20250418T140000 +DTEND:20250418T153000 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Cultural Panel\nTags: SC-ALL\n\n +LOCATION:SakuraDome - 6E +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Samurai Undressed +DTSTART:20250418T143000 +DTEND:20250418T160000 +CATEGORIES:Cultural,SC-10 +DESCRIPTION:Track: Cultural Panel\nTags: Cultural\,SC-10\n\nGet up close a + nd personal with the samurai! Hear about the real legends that are now por + trayed in pop culture. Discover what lies beneath the armor figuratively a + nd literally! See how the individual components of Japanese armor were wor + n and what types of accessories and weapons a samurai may have carried int + o battle. Learn about interesting places to visit in Japan if you’re a f + an of these ancient warriors! +LOCATION:Prog Panels - 343-344 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Husky Wushu +DTSTART:20250418T160000 +DTEND:20250418T170000 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Cultural Panel\nTags: SC-ALL\n\nWushu is a Chinese mart + ial art and international sport derived from hundreds of years of traditio + nal Chinese Kung Fu. Husky Wushu has been an active club at UW for over 15 + years\, with a mission to foster an inclusive community around the practi + ce of Chinese martial arts. We will be performing a medley of individual f + orms\, group forms and fight sets\, including hand forms and weapon forms + such as sword\, staff\, and fan. We'll be doing a workshop after our perfo + rmance\, so stick around to learn some skills from us! +LOCATION:SakuraDome - 6E +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Dreamland Maid Cafe +DTSTART:20250418T160000 +DTEND:20250418T190000 +CATEGORIES:Dreamland,Maid Cafe +DESCRIPTION:Track: Cultural Panel\nTags: Dreamland\,Maid Cafe\n\nBook a re + servation for the Dreamland Maid Cafe at +LOCATION:Dreamland Maid Cafe - Elliot Bay Room +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Discover the Sound of Traditional Japanese Harp +DTSTART:20250419T070000 +DTEND:20250419T080000 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Cultural Panel\nTags: SC-ALL\n\nJoin our interactive pa + nel presenting beautiful Japanese music! Koto no WA\, ensemble of local ko + to (Japanese harp) musicians in the Greater Seattle Area\, will play both + traditional and contemporary songs\, including some songs from anime serie + s. The panel will be a combination of live music performances and Q & A se + ssions to be followed by hands-on experience time when participants can ta + lk directly with the performing musicians. Don’t miss this rare opportun + ity to experience Japan’s traditional string instrument with more than a + thousand years of history. +LOCATION:Prog Panels - 307 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Dreamland Maid Cafe +DTSTART:20250419T110000 +DTEND:20250419T150000 +CATEGORIES:Dreamland,Maid Cafe +DESCRIPTION:Track: Cultural Panel\nTags: Dreamland\,Maid Cafe\n\nBook a re + servation for the Dreamland Maid Cafe at +LOCATION:Dreamland Maid Cafe - Elliot Bay Room +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:The Japanese Tea Ceremony of Chanoyu presented by the East-West Ch + anoyu Center +DTSTART:20250419T140000 +DTEND:20250419T150000 +CATEGORIES:Cultural,SC-ALL,Tea Ceremony +DESCRIPTION:Track: Cultural Panel\nTags: Cultural\,SC-ALL\,Tea Ceremony\n\ + n"The interactive Japanese Tea Ceremony\, known as Chanoyu\, is a 400-year + -old cultural practice that cultivates mindfulness and gratitude through a + rt\, aesthetics\, and hospitality.\nStepping into the tearoom\, guests are + enveloped in the soothing sounds of boiling water\, the seasonal beauty o + f handcrafted tea implements\, the subtle fragrance of incense\, and the e + xquisite taste of freshly whisked matcha tea.\nWe invite you to immerse yo + urself in this multi-sensory experience at SakuraCon 2025." +LOCATION:Tea Ceremony - 338-339 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Kendo and Iaido Demonstration +DTSTART:20250419T143000 +DTEND:20250419T153000 +CATEGORIES:SC-10 +DESCRIPTION:Track: Cultural Panel\nTags: SC-10\n\n"Kendo\, meaning ""path + of the sword\,"" is a traditional Japanese martial art descended from Kenj + utsu. It is practiced with bamboo swords and armored gear\, and is a comba + tive martial art. Iaido\, meaning ""the path of drawing the sword"" is a t + raditional martial art developed in the Edo period as a meditative way for + Samurai to remember how to draw their swords in peacetime. Due to using m + etal swords called Iaito\, it is a non-combative martial art." +LOCATION:SakuraDome - 6E +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Working in Japan on the JET Program +DTSTART:20250419T150000 +DTEND:20250419T160000 +CATEGORIES:Cultural,SC-ALL +DESCRIPTION:Track: Cultural Panel\nTags: Cultural\,SC-ALL\n\nAre you inter + ested in working in Japan? The Japan Exchange Teaching (JET) Program has b + rought over70\,000 participants from more than 55 countries to work in sch + ools\, boards of education\, and government offices throughout Japan! The + JET Program is the only teaching exchange program managed by the governmen + t of Japan. Learn more about the application process and hear from former + participants about their time in Japan and the impact that the JET Program + has had on their lives. Note: A bachelor’s degree is a minimum requirem + ent for this job opportunity. +LOCATION:Workshop - 330 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Dreamland Maid Cafe +DTSTART:20250419T160000 +DTEND:20250419T190000 +CATEGORIES:Dreamland,Maid Cafe +DESCRIPTION:Track: Cultural Panel\nTags: Dreamland\,Maid Cafe\n\nBook a re + servation for the Dreamland Maid Cafe at +LOCATION:Dreamland Maid Cafe - Elliot Bay Room +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Inu-Oh Screening +DTSTART:20250419T173000 +DTEND:20250419T193000 +CATEGORIES:Screening +DESCRIPTION:Track: Cultural Panel\nTags: Screening\n\nInu-Oh (犬王) is a + historical musical anime film directed by Masaaki Yuasa and produced by S + cience SARU. It is based on the novel Tales of the Heike: Inu-Oh by Hideo + Furukawa. The film is set in 14th century Japan.\n\nIt premiered at the Ve + nice International Film Festival.\nSynopsis: Born to an esteemed family\, + Inu-oh is afflicted with an ancient curse that has left him on the margins + of society. When he meets the blind musician Tomona\, a young biwa priest + haunted by his past\, Inu-oh discovers a captivating ability to dance. Th + e pair quickly become inseparable friends as crowds flock to their electri + c\, larger-than-life concerts. But when those in power threaten to break u + p the band\, Inu-oh and Tomona must dance and sing to uncover the truth be + hind their creative gifts. \nOriginal Voice Cast:\nInu-oh: Avu-chan (Queen + Bee)\nTomona: Mirai Moriyama\nLord Yoshimitsu Ashikaga: Tasuku Emoto\nInu + -oh’s Father: Kenjiro Tsuda\nTomona’s Father: Yutaka Matsushige\nEngli + sh Dub Cast:\nInu-oh: Joshua Waters\nTomona: Sena Bryer\nLord Yoshimitsu A + shikaga: Cory Yee\nInu-oh (Teen): Holden Thomas\nTomona (Young): Carter Yo + ung\nTomona (Teen): Jonathan Leon +LOCATION:Relations Panels/Premiers - Ballroom 2 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:JET Program Alumni Meet-Up +DTSTART:20250419T183000 +DTEND:20250419T190000 +CATEGORIES:Cultural,SC-13 +DESCRIPTION:Track: Cultural Panel\nTags: Cultural\,SC-13\n\n“Once you’ + re a JET\, you’re always a JET!” The Consulate-General of Japan in Sea + ttle is teaming up with the PNW JET Alumni Association to host the JET Alu + mni Meet-Up! There is life beyond the BoE\, and truth can be stranger than + fiction when it comes to the daily life of a JET working in Japan! We kno + w you’re here: come meet other nerdy alumni to connect\, reminisce\, and + share your real-life anime-zing stories! If you're not a yet a JET\, come + join us to learn about the “JET Experience” from those who have “be + en there and done that” at this relaxed\, fun\, and informal gathering. +LOCATION:Workshop - 330 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Mastering Japanese Singing: Techniques & Live Coaching +DTSTART:20250420T103000 +DTEND:20250420T113000 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Cultural Panel\nTags: SC-ALL\n\n"Learn how to sing Japa + nese songs with confidence and authenticity\, even if you can’t read or + speak Japanese! Join professional Japanese vocal coach Ko Nakamura\, based + in North America\, for an engaging and interactive panel designed to elev + ate your Japanese singing skills. With over 12 years of experience coachin + g more than 500 singers worldwide—including VTubers and utaite performer + s—Ko brings his expertise to help you master essential techniques and ov + ercome common challenges when singing in Japanese. \nIn the first half\, y + ou’ll learn:\n-The unique rules and quirks of reading romaji in Japanese + songs. \n-Proper Japanese pronunciation to avoid common mistakes\, even f + or advanced learners.\n-Tips for achieving authentic Japanese vocal expres + sion\, straight from a native coach.In the second half\, it’s your turn + to take the stage!\nParticipate in our “Chorus Singing Challenge"" by se + lecting a song from our curated setlist and performing alongside music. Ko + will provide live coaching and feedback\, giving you a rare chance to exp + erience one-on-one vocal training in a fun and supportive setting. Whether + you’re a beginner or have experience singing in Japanese\, this panel o + ffers valuable insights and hands-on practice to elevate your performance. + Don’t miss this unique opportunity to learn from a native Japanese voca + l coach and take your Japanese singing to the next level!" +LOCATION:Prog Panels - 445-446 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Dreamland Maid Cafe +DTSTART:20250420T110000 +DTEND:20250420T160000 +CATEGORIES:Dreamland,Maid Cafe +DESCRIPTION:Track: Cultural Panel\nTags: Dreamland\,Maid Cafe\n\nBook a re + servation for the Dreamland Maid Cafe at +LOCATION:Dreamland Maid Cafe - Elliot Bay Room +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Learn Japanese Festival Dances with UW Taiko Kai! +DTSTART:20250420T120000 +DTEND:20250420T130000 +CATEGORIES:Cultural,SC-ALL +DESCRIPTION:Track: Cultural Panel\nTags: Cultural\,SC-ALL\n\nBon Odori is + a style of dance performed by community members of all ages for Obon\, a J + apanese holiday and festival for honoring and celebrating one's ancestors. + Come join us for a Wadaiko (Japanese Traditional Drumming) performance an + d to learn Obon dances so you can join on the fun next Obon season! No exp + erience or intense movement required! +LOCATION:SakuraDome - 6E +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:The Fabulous Furoshiki - Japanese Cloth Wrapping Techniques +DTSTART:20250420T123000 +DTEND:20250420T140000 +CATEGORIES:Cultural,SC-ALL +DESCRIPTION:Track: Cultural Panel\nTags: Cultural\,SC-ALL\n\nSince ancient + times\, the Japanese have used a simple square cloth called a furoshiki t + o wrap and carry anything and everything. In today’s environmentally con + scious age of maximizing use and minimizing waste\, the furoshiki is makin + g a strong comeback! Learn the basics of how to use this “eco-friendly + ” alternative to plastic bags and wrapping paper. This is a hands-on int + roduction to fun and functional Japanese furoshiki wrapping techniques! +LOCATION:Workshop - 330 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Husky Taekwondo Demo Team +DTSTART:20250420T133000 +DTEND:20250420T140000 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Cultural Panel\nTags: SC-ALL\n\n +LOCATION:SakuraDome - 6E +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:An Intro to Japanese Traditional Instruments with Dekoboko Taiko +DTSTART:20250420T133000 +DTEND:20250420T143000 +CATEGORIES:Cultural,SC-ALL +DESCRIPTION:Track: Cultural Panel\nTags: Cultural\,SC-ALL\n\nDekoboko Taik + o invites you to learn about the rich history of traditional Japanese inst + ruments\, particularly percussion and winds\, and their cultural influence + in Japan and the world. This fun and interactive panel will include a per + formance and demonstration by members of the local Seattle group Dekoboko + Taiko. Explore the festive beats of the taiko\, the dancing clicks of the + naruko\, the lively melodies of the fue\, and a few more surprises! Partic + ipants will be able to try out many of the featured instruments and enjoy + a full performance from the group! +LOCATION:Prog Panels - 440-442 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:The Japanese Tea Ceremony of Chanoyu presented by the East-West Ch + anoyu Center +DTSTART:20250420T140000 +DTEND:20250420T150000 +CATEGORIES:Cultural,SC-ALL,Tea Ceremony +DESCRIPTION:Track: Cultural Panel\nTags: Cultural\,SC-ALL\,Tea Ceremony\n\ + n"The interactive Japanese Tea Ceremony\, known as Chanoyu\, is a 400-year + -old cultural practice that cultivates mindfulness and gratitude through a + rt\, aesthetics\, and hospitality.\nStepping into the tearoom\, guests are + enveloped in the soothing sounds of boiling water\, the seasonal beauty o + f handcrafted tea implements\, the subtle fragrance of incense\, and the e + xquisite taste of freshly whisked matcha tea.\nWe invite you to immerse yo + urself in this multi-sensory experience at SakuraCon 2025." +LOCATION:Tea Ceremony - 338-339 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Ikebana Demonstration (Japanese flower arrangement) +DTSTART:20250420T143000 +DTEND:20250420T153000 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Cultural Panel\nTags: SC-ALL\n\nSogetsu Ikebana is the + modern school of Japanese flower arranging\, dynamic and relevant to the t + imes. It is the one of the largest schools of ikebana in Japan\, with head + quarters in Tokyo and branches throughout the world. Sogetsu emphasizes in + dividual creative expression using the materials of nature as the medium. + Megumi Schacher is a certified instructor with the rank of riji\, which is + the highest possible rank. She is an active member of the ikebana communi + ty\, teaching\, exhibiting\, and demonstrating the art and practice of Sog + etsu ikebana. Today she will create arrangements for you that introduce th + e concepts and techniques of ikebana. +LOCATION:Workshop - 330 +STATUS:ACTIVE +END:VEVENT +END:VCALENDAR diff --git a/calendar_Fan_Panel.ics b/calendar_Fan_Panel.ics new file mode 100644 index 0000000..b8bd0d3 --- /dev/null +++ b/calendar_Fan_Panel.ics @@ -0,0 +1,4281 @@ +BEGIN:VCALENDAR +VERSION:2.0 +PRODID:-//Fan Panel Schedule//eventeny.com// +X-WR-CALNAME:Fan Panel +BEGIN:VEVENT +SUMMARY:Cosplay Contest Prejudging +DTSTART:20250418T080000 +DTEND:20250418T235900 +DESCRIPTION:Track: Fan Panel\n\n +LOCATION:Prog Panels - 303 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Cosplay Wrestling Federation: Sakurumble V! - Day 1 Doors Open +DTSTART:20250418T094500 +DTEND:20250418T101500 +DESCRIPTION:Track: Fan Panel\n\n +LOCATION:Summit Stage +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Slow and Steady: A Guide to Long Term Cosplay Builds +DTSTART:20250418T100000 +DTEND:20250418T103000 +CATEGORIES:SC-10 +DESCRIPTION:Track: Fan Panel\nTags: SC-10\n\nDo you have a dream to make t + he most beautiful\, elaborate cosplay but the amount of time it will take + feels daunting? Are you halfway through something you’d like to compete + with but are losing steam? Sometimes it can be overwhelming to power throu + gh months (or even years!) of working on the same cosplay\, but it can sti + ll be a great experience! Join our panel of experienced long-term builders + as we talk through strategies to stay focused\, have fun\, and make amazi + ng things that take a little bit of time! +LOCATION:Prog Panels - 345-346 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Cosplay is for every body: A plus size cosplay panel. +DTSTART:20250418T100000 +DTEND:20250418T110000 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nJoin me as we dive into the + beautiful world of body diversity in cosplay! We will discuss practical wa + ys to level up your fitting skills\, ways to alter prebought cosplays\, an + d photography tips that help you be seen exactly as you want to be seen. C + osplay is for EVERY body\, so let's talk about it. +LOCATION:Prog Panels - 440-442 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Oops! I Got Into Gacha Games And Now I'm Transgender?! +DTSTART:20250418T100000 +DTEND:20250418T110000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nGacha games are a source of f + rustration or even ruination for many\, but for a select group of people t + hey become a place to find community\, stability\, or even yourself. Join + someone who rolled for jpgs of women before becoming a woman herself as sh + e unravels the psychology and sociology behind why so many trans people di + scover themselves through gacha. +LOCATION:Prog Panels - 307 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Paving the Way: Project Sekai +DTSTART:20250418T100000 +DTEND:20250418T110000 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nAppearing before you is a on + e-of-a-kind SEKAI only accessible to the congoers of Sakura Con! These pow + erful street performers invite you to a thrilling afternoon of competing i + n fun games and earning prizes picked by your favorite member! Stick aroun + d and you'll get to witness some energetic performances sure to fill your + heart with pride! +LOCATION:Prog Panels - 310 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Pure Illusion: Exploring Dreams and Memory In Anime +DTSTART:20250418T100000 +DTEND:20250418T110000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nDreams and memories: ephemera + l\, surreal\, and fleeting\; constantly slipping through our fingers\, but + essential to understanding who we are as individuals. What better medium + to capture this ever-changing vision of reality than animation? We'll look + at how anime portrays dreams and memories\, and uses them to tell its sto + ries. +LOCATION:Prog Panels - 340-342 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:日本語を話そう〜 Let's speak Japanese! +DTSTART:20250418T100000 +DTEND:20250418T110000 +DESCRIPTION:Track: Fan Panel\n\nSkipping your Japanese lecture for con? Ac + cidentally lost your Duolingo streak during a midnight panel? That's rough + \, buddy. To make up for it\, you should come play some silly games in Jap + anese... maybe you'll make a conversation buddy out of it too. If you have + any Japanese learning under your belt\, feel free to join for a fun one h + our practice session!(Disclaimer: I am not a Japanese teacher\, just a str + essed out uni student.) +LOCATION:Prog Panels - 305 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Come Learn How to Play One Piece TCG +DTSTART:20250418T100000 +DTEND:20250418T113000 +CATEGORIES:SC-10 +DESCRIPTION:Track: Fan Panel\nTags: SC-10\n\nDo you love One Piece? Card g + ames? Ways to beat your friends in a nerdy fashion? Come join us as we go + over how to play the hit One Piece card game! Lot's of fun and easy to fol + low directions in learning. We ourselves are obsessed with this game and w + ould love to teach more people to play\, plus the cards look really cool. + We will be going over the main concept of the game\, what the different co + lors means\, and obviously how to play. We will also cover a bit on deck b + uilding as well! +LOCATION:Prog Panels- 304 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Cosplay Wrestling Federation: Sakurumble V! - Day 1 +DTSTART:20250418T100000 +DTEND:20250418T113000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\n +LOCATION:Summit Stage +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Finding Your Identity In Cosplay +DTSTART:20250418T100000 +DTEND:20250418T113000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nHi\, I’m AC Mateen\, LMHC ( + yes\, I’m a therapist\, and no\, I won’t bill you for this panel). Let + ’s talk about the incredible journey of figuring out who you are under a + ll the fabric\, foam\, and fierce eyeliner wings.In this panel\, we’ll e + xplore how cosplay can help you express yourself\, embrace your quirks\, a + nd maybe even answer the age-old question: “Am I more of a Jedi or a Sit + h?” Whether you’re a seasoned cosplayer or still wondering if hot glue + is actually your friend\, this is a space to laugh\, learn\, and find wha + t makes your cosplay (and your identity) uniquely yours.Expect humor\, hea + rtfelt moments\, and probably a tangent about why I think capes are both f + abulous and impractical. Because in the end\, the only character you reall + y need to be is yourself. +LOCATION:Prog Panels - 347-348 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Madoka Magica and the History of Magical Girls +DTSTART:20250418T100000 +DTEND:20250418T113000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nMadoka Magica is hailed as a + subversive masterpiece in the magical girl subgenre\, but what makes a mag + ical girl? In this panel\, we will explore the history of maho shoujo from + its humble origins to powerhouses that helped shape the tropes and themes + we know today and how these core concepts tie back into the feminine stre + ngth of Madoka Magica. +LOCATION:Prog Panels - 3AB +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Autism Panel/Meet-Up +DTSTART:20250418T101500 +DTEND:20250418T111500 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nSince 2016\, the annual Auti + sm Meet Up Panel at SakuraCon has provided a welcoming space for attendees + on the autism spectrum to connect and share experiences. The panel foster + s inclusivity and understanding\, offering a supportive environment for th + ose seeking to navigate the unique challenges of being neurodivergent at a + busy convention. +LOCATION:Prog Panels - 443-444 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Smartphone Photography for Cosplayers +DTSTART:20250418T101500 +DTEND:20250418T111500 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nIn this panel we will discus + s how cosplayers and convention attendees can take better photos and gener + ate content using their phone camera. We will cover basic principles of ph + otography and lighting and equipment. +LOCATION:Prog Panels - 343-344 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Magic: the Gathering vs Romance Novel: The Remix +DTSTART:20250418T103000 +DTEND:20250418T120000 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\nAre you fan of Magic: the Gat + hering art and lore? Are you a connoisseur of Romance Novels both sweet an + d spicy? Are you a creative soul who wants to stretch those creative urges + with unhinged prompts? If you answered yes to any of these questions\, jo + in us for a creative escapade combining the joy and wonder of both Magic: + the Gathering and the dearest tropes of the Romance genre. +LOCATION:Prog Panels - 445-446 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Super Happy Fun Time Photo Scavenger Hunt +DTSTART:20250418T103000 +DTEND:20250418T120000 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\n +LOCATION:SakuraDome - 6E +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Simple Design\, Spectacular Cosplay: Transposing Animation to Life +DTSTART:20250418T104500 +DTEND:20250418T114500 +CATEGORIES:SC-10 +DESCRIPTION:Track: Fan Panel\nTags: SC-10\n\nSometimes it takes a little c + reativity to bring animated characters to life! If you’re getting ready + to cosplay a character that feels a little too simple and needs something + more\, this is the panel for you. Our expert cosplayers will discuss ways + to elevate a character\, how to interpret a seemingly simple character des + ign\, and what to think about as you start to work on your cosplay. We’l + l answer questions as we discuss how to bring the ordinary into the extrao + rdinary! +LOCATION:Prog Panels - 345-346 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:J-Walk Seattle Streets Fashion Show +DTSTART:20250418T110000 +DTEND:20250418T113000 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nJ-Walk Seattle Streets is ba + ck for another year of fun and excitement! Do you have an interest in J-Fa + shion\, but don't know where to start? Come see models of all shapes\, siz + es\, and ages strut their stuff on a runway to inspire you\, and maybe eve + n teach you something new about J-fashion! Fairy-kei\, Elegant Gothic Loli + ta\, Sweets\, Visual Kei\, and lots more featured! Stop by and have some f + un! +LOCATION:Prog Panels - 2AB +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:“IE TAIGA” Idol calls and Mixes for Beginners! +DTSTART:20250418T111500 +DTEND:20250418T121500 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nHave you ever attended an id + ol live and seen the audience clap\, cheer and shout a certain way and tho + ught “wow! They’re having so much fun\, I wanna learn how to do that! + ” Then you’re in luck! Join us as we teach you the basics of call and + mix so YOU can cheer for idols with confidence! IE TAIGA! +LOCATION:Prog Panels - 310 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Beyond Anime High School: Anime For Grown-Ups +DTSTART:20250418T111500 +DTEND:20250418T121500 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nGetting a little old for high + school anime? Looking for something different? Let's look at some anime m + ade for an older audience\, about adult characters dealing with adult prob + lems. About characters with jobs and responsibilities. Because there's mor + e to life than teenage angst. +LOCATION:Prog Panels - 440-442 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:In Another World With My Smartphone as a Level 999 Mapmaker +DTSTART:20250418T111500 +DTEND:20250418T121500 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nHistory and analysis of the + rise of Isekai\, why they have proved appealing for both Japanese and West + ern audiences\, and why the market for original Isekai ideas appears to be + slowly dwindling\, entering the realm of memes. +LOCATION:Prog Panels - 307 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Toilet Trivia: A Game of Thrones +DTSTART:20250418T111500 +DTEND:20250418T121500 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nDid you learn anything last + year from Meccha Meccha Productions Tales from the Toilets: Spooky Stories + and History? Maybe you took extra time this year to get to know the thron + e in your home? We'll crown toilet royalty for those who know their sh--st + uff. Bring up to four friends to compete with you\, and maybe learn someth + ing new along the way. +LOCATION:Prog Panels - 305 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:How to Make AMVs: Beginner Session +DTSTART:20250418T111500 +DTEND:20250418T124500 +CATEGORIES:AMV,SC-10 +DESCRIPTION:Track: Fan Panel\nTags: AMV\,SC-10\n\nEver wondered how to mak + e one of those super cool AMVs you've seen at con or online? Or what an AM + V even is? Come find out! We'll discuss tips\, tricks\, and recommendation + s for starting your AMV journey. +LOCATION:AMV Workshop - 613 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:2000s Anime Music Trivia +DTSTART:20250418T113000 +DTEND:20250418T123000 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nCalling all ninjas\, pirates + \, and soul reaper! We want you to participate in our 2000s Anime Music Tr + ivia! Relive childhood memories as you listen to a wide selection of music + and correctly guess the anime title for the song. The top three (3) conte + stants who answered the most songs will receive an assortment of prizes. B + elieve in yourself and grab the gold! +LOCATION:Prog Panels - 340-342 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:My Hero Academia Truth or Dare: Pro-Hero Edition +DTSTART:20250418T113000 +DTEND:20250418T123000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\n"Join us for an exciting role + play-style panel featuring some of Japan's top pro-heroes as they take on + a game of ""Truth or Dare."" As part of the audience\, you'll get to sugge + st questions for the heroes to answer in character or challenge them with + fun dares.You'll also have the chance to take photos with your favorite pr + o-heroes. Don't miss this opportunity to engage with these heroes in a fun + \, entertaining\, and laughter-filled setting. We look forward to seeing y + ou there!" +LOCATION:Prog Panels - 343-344 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Madfics +DTSTART:20250418T114500 +DTEND:20250418T124500 +CATEGORIES:SC-10 +DESCRIPTION:Track: Fan Panel\nTags: SC-10\n\n"Remember Mad Libs? Let's do + some but make it nerdy! Join the Sakura Rangers for a [adjective] time whe + re we will [verb] original Mad Libs inspired by fanfiction with prompts pr + ovided by our [adjective] audience! If you enjoy laughing\, [verb ending i + n ""ing""]\, and audience participation\, this is the panel for you!" +LOCATION:Prog Panels- 304 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Friendships that tie the Cosplay Community Together +DTSTART:20250418T114500 +DTEND:20250418T131500 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nExploring the friends made a + t conventions and online through the hobbies that we love\, the main one b + eing cosplay. From finding new friends and how they can impact how we inte + ract with the cosplay community as a whole and expanding out to our person + al lives as well. A lot of times expanding social circles\, connections\, + knowledge\, and mental health. +LOCATION:Prog Panels - 347-348 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Cute or Creepy: Romance in Anime +DTSTART:20250418T120000 +DTEND:20250418T130000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nBack again for our 3rd year\, + and we've got all new clips! Romance in anime might look appealing on the + screen\, but if you saw it in real life\, do you think it would be cute o + r creepy? Come join us as we watch some clips and decide just that. A few + of the clips will even be suggestions from last year's audience! +LOCATION:Prog Panels - 2AB +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Intro to Improv +DTSTART:20250418T120000 +DTEND:20250418T130000 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nWelcome to the world of impr + ov comedy. A classroom that will teach you all of the makings of improv co + medy. We'll be having a small lecture along with a series of exercise game + s for all to try. Come join us for all the fun and hilarity. +LOCATION:Prog Panels - 443-444 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:The Ultimate Fandom Game Show +DTSTART:20250418T120000 +DTEND:20250418T133000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nHave you ever wanted to parti + cipate in a game show but didn’t think you had what it took to win? Well + here’s a topic you canmaster! Come challenge your fellow anime and gami + ng fans in competitions to see who knows their memes\, who can guess the n + ame of badly described shows\, who can complete the side quests\, and more + ! +LOCATION:Prog Panels - 3AB +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Break That Writer's Block +DTSTART:20250418T121500 +DTEND:20250418T134500 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nCome join in for a session o + f writing to break through that writer's block you have! You will learn tw + o ways on how to effectively push through that block - school papers\, wor + k papers\, or fanfics. Pens and paper will be provided. +LOCATION:Workshop - 330 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:"Bring Back ""Bad"" Cosplay! How the Cosplay Community has Changed + ." +DTSTART:20250418T123000 +DTEND:20250418T133000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nCosplaying is a great way to + express your creative side\, but with the rise of social media\, the commu + nity has seen some changes. Many older cosplayers will tell you that over + the years\, cosplaying has started to turn more into a competition rather + than a fun hobby. While this can be a great thing\, it can also deter peop + le from entering the community. So how do we keep the cosplay world a welc + oming place? Bring back “bad” cosplaying! Join cosplayers DuelGirlLizz + y and NezzerCosplay along with photographer Candra Designs to discuss the + cosplaying world. Here we will talk about the struggles of entering the ho + bby\, how it is ok and normal to not be a “perfect” cosplayer right ou + t the gate\, and how we have grown from our own trials and errors. This is + a space to learn and find a community\, we hope to see you there! +LOCATION:Prog Panels - 307 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Fifth Gen Isn’t Pokemon +DTSTART:20250418T123000 +DTEND:20250418T133000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nGeneration five of pokemon in + troduced a lot of new concepts to the series like ripping off their previo + us aesthetic designs\, min-maxing stats to optimize the removal of actual + pokemon from competitive play\, and whatever Garbador is. When it comes do + wn to it\, the abominations that were introduced in Pokemon Black and Whit + e are nowhere near as majestic as classic pokemon like Muk\, Mr. Mime\, an + d Electrode. +LOCATION:Prog Panels - 445-446 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Intro to Wotagei! (ヲタ芸) Workshop +DTSTART:20250418T123000 +DTEND:20250418T140000 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\n"Do you love idols or anime + songs? Wondering what the ""baby dance"" in Oshi No Ko is REALLY like? Com + e learn about wotagei(ヲタ芸): an active and engaging way to enjoy your + favourite otaku music! Join us as we cheer\, clap\, and swing our lightst + icks through the basics of wotagei in our hands-on workshop. Broken up int + o 3x 30-min. segments so drop in anytime!" +LOCATION:Prog Panels - 345-346 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Two Decades In Harmony: 20 Years of Avatar: The Last Airbender +DTSTART:20250418T123000 +DTEND:20250418T143000 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nLong ago\, many were tuning + in on Nickelodeon's usual programming including the popular animated show + SpongeBob SquarePants\, then everything changed when Avatar: The Last Airb + ender premiered in 2005. 20 years have now passed since its premiere and t + he spirit of its devoted fanbase is as strong and continues to grow to thi + s day. Come celebrate and reminisce about Avatar: The Last AIrbender in ha + rmony with other fans as there will be talk about this incredible animated + series and even beyond. Everyone is welcome\, that means all ages\, all w + alks of life\, fans and non-fans. +LOCATION:Prog Panels - 440-442 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Frills & Bills: A Lolita Shopping Guide +DTSTART:20250418T124500 +DTEND:20250418T134500 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nYou've been to Lolita 101\, + you've read all about it on the Internet\, and you want to join the fashio + n - but how and where do you buy your first dress? Join us in this panel t + o learn how to spend your hard earned cash on all the frills you desire! M + ore experienced frillseekers can also hear recommendations on shopping ser + vices\, indie brands\, and more! +LOCATION:Prog Panels - 343-344 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Is it queerbaiting? +DTSTART:20250418T124500 +DTEND:20250418T134500 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nWe take a deep dive into the + history and connotations associated with queerbaiting and discuss how it i + mpacts our media today +LOCATION:Prog Panels - 310 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Zapp's OAFISHAL Spaceship of Love Doors Open +DTSTART:20250418T130000 +DTEND:20250418T133000 +DESCRIPTION:Track: Fan Panel\n\n +LOCATION:Mainstage - 4AB +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:AMVs and Accessibility +DTSTART:20250418T130000 +DTEND:20250418T140000 +CATEGORIES:AMV,SC-13 +DESCRIPTION:Track: Fan Panel\nTags: AMV\,SC-13\n\nVPR\, .vtt\, .srt... wha + t do they mean? Come learn about video accessibility and best practices fo + r adding subtitles and content warnings to your AMVs. +LOCATION:AMV Workshop - 613 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Girls Band Anime: Music\, Fun\, And Messy Feelings +DTSTART:20250418T130000 +DTEND:20250418T140000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nWe're in a golden era of anim + e about girls starting a band. From Bocchi to Bang Dream to Girls Band Cry + \, we've had a wave of new anime bands to love - each with its own take on + what it means to play music\, what brings bandmates together\, and what h + appens to those bonds over time. Let's concert-hop together through nearly + 20 years of girls band anime! +LOCATION:Prog Panels - 340-342 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Oto-mania: The wonderful world of reverse harem anime +DTSTART:20250418T130000 +DTEND:20250418T140000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nFans of reverse harem anime u + nite! Join us for a panel as we rank our favorite and only shows from this + very niche genre. Whether you’re a seasoned veteran or just otome-curio + us\, this is the place for you! +LOCATION:Prog Panels- 304 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Splatoon Meet Up +DTSTART:20250418T133000 +DTEND:20250418T143000 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nLove Splatoon? New to Splato + on and interested in learning more? Come hang out with fellow Splatoon fan + s! We will take a cosplay group photo\, talk about how you can get involve + d in the Pacific Northwest’s competitive scene\, and play some pick up g + ames (bring your Nintendo Switch and a copy of Splatoon 3). +LOCATION:Prog Panels - 347-348 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Through the lens of the female gaze: Categorizing the characters f + rom anime we love +DTSTART:20250418T133000 +DTEND:20250418T143000 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\nWhat is the female gaze\, and + how do you know it when you see it? Join us to explore this question\, as + we venture to determine what shared qualities some of the most beloved ch + aracters in anime share that make them so appealing to the female gaze. Th + is panel will involve audience participation\, so be sure to bring your hu + mor and opinions. +LOCATION:Prog Panels - 2AB +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Zapp's OAFISHAL Spaceship of Love +DTSTART:20250418T133000 +DTEND:20250418T143000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\n +LOCATION:Mainstage - 4AB +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Original Design Cosplay Showcase +DTSTART:20250418T133000 +DTEND:20250418T150000 +CATEGORIES:SC-10 +DESCRIPTION:Track: Fan Panel\nTags: SC-10\n\nHave an original design and w + ant to show it off? Strut your stuff in your finest cosplay inspired fashi + on on the original design runway. +LOCATION:Prog Panels - 443-444 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Isekai: Japanese VS Korean VS Chinese +DTSTART:20250418T134500 +DTEND:20250418T144500 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nJoin Eldaerenth in exploring + the differences of the Isekai genre in Japanese media\, Korean media\, and + Chinese media!This panel will cover manga\, anime\, manhwa\, manhua\, and + webnovels. +LOCATION:Prog Panels - 3AB +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Promise of Wizard 101 +DTSTART:20250418T134500 +DTEND:20250418T144500 +DESCRIPTION:Track: Fan Panel\n\nWhat do you do when they call you the Wise + Master and ask you to help with the Big Disaster? An introduction to the + joseimuke game Promise of Wizard\, often referred to as Mahoyaku\, and a g + uide to the characters\, story\, stage play\, and more. +LOCATION:Prog Panels - 307 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Detective Conan: Case Closer +DTSTART:20250418T140000 +DTEND:20250418T150000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nIt's been 30 years and over 1 + 000 episodes since Detective Conan first started his case and he still has + n't closed it yet. But when his strongest allies are a Junior Detective Le + ague and a cop who sleeps on the job his repeated failures make sense. Tog + ether let's analyze the real questions everyone has: Is Ran purposely choo + sing not to believe Conan is Shinichi? Why are the cops letting a small ch + ild inspect active crime scenes? Why would anyone actually invent a bentou + lunch box fax machine?! +LOCATION:Prog Panels - 445-446 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Warriors of Light\, Queue for Art Party 2.0! +DTSTART:20250418T140000 +DTEND:20250418T153000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nJoin your fellow Warriors of + Light for an in person art party! This is a social event where anyone is w + elcome\, regardless of artistic ability. We also encourage sticker and bad + ge ribbon trading\, and the hosts will have their own to give out! Art sup + plies will be provided. +LOCATION:Workshop - 330 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:A deep dive into OMORI +DTSTART:20250418T143000 +DTEND:20250418T153000 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\n"In the world of FARAWAY TOWN + or in WHITE SPACE or across the lands of the VAST FOREST. There is much t + o explore in OMORI! In this presentation we'll be taking a dive into our b + eloved characters\, stories and theories behind them\, as well as some oth + er hidden theories and themes buried deep under the OMORI iceberg!\nWARNIN + G: Spoilers ahead for the game of OMORI! This presentation and game contai + ns depictions of depression\, anxiety\, and suicide\, and may not be suita + ble for all audiences. Viewer discretion is advised." +LOCATION:Prog Panels - 305 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Chapter 1: How to Start Cosplaying +DTSTART:20250418T143000 +DTEND:20250418T153000 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nCosplay- A mashup of 'costum + e' and 'play'. Many people have play down to a science\, but where does on + e start with costuming? This panel will explore all the basic information + you need to start a new hobby by going over three pillars: Wigs\, Makeup\, + and Costumes. Includes the opportunity to have all your questions answere + d by a cosplayer of 11 years. +LOCATION:Prog Panels - 340-342 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Anime Family Feud +DTSTART:20250418T143000 +DTEND:20250418T160000 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\n"Welcome! Join Fandames Pod a + s your hosts as we split the room\, and see which ""family"" knows the mos + t! This will be about all anime from the 80s to the current day\, and feat + ure something about every genre for everyone's niche knowledge to come int + o play!" +LOCATION:Prog Panels - 345-346 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Sew You Want To Get Into Machine Embroidery? +DTSTART:20250418T143000 +DTEND:20250418T160000 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nJoin OhMitsooki and Whimsy-M + imsyas they walk you through the basics of what you'll need to know before + diving into a money pit of machine embroidery! We’ll cover everything f + rom supplies to machines\, as well as finishing your first product. +LOCATION:Prog Panels- 304 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Mecha History and Cultural Impact: Be Invoked +DTSTART:20250418T144500 +DTEND:20250418T170000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nFrom the beginning of anime\, + there have been robots. But how long ago was that\, and where did the wor + d “Robot” even come from? Then how did we get the word “mech”? Wha + t’s the biggest? The strongest? The most influential? Where do the Power + Rangers fit into it all? Come on by and I’ll answer all of these questi + ons and more\, along with a few others you probably wouldn’t have even t + hought to ask! +LOCATION:Prog Panels - 440-442 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:From Shelf to Soul: Mastering the Art of Manga Collecting +DTSTART:20250418T150000 +DTEND:20250418T160000 +DESCRIPTION:Track: Fan Panel\n\nDive deep into the world of manga collecti + ng with Manga Youtuber Geeks That Parent! This panel is your ultimate guid + e to manga from how to start collecting\, tips and tricks\, finding the be + st deals\, and some great manga recommendations. +LOCATION:Prog Panels - 307 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Melodies of Life (A Final Fantasy Music Trivia) +DTSTART:20250418T150000 +DTEND:20250418T160000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nFew other gaming franchises h + ave had a musical legacy like Final Fantasy. From riding Chocobo to Victor + y Fanfares these legendary pieces of music written by even more legendary + composers such as Nobuo Uematsu and Yoko Shimomura have become the Melodie + s of Life to the diehard fans. In this game we will have contestants test + their ears as we tune in to see if the music from the Final Fantasy Franch + ise truly does resonate within them. +LOCATION:Prog Panels - 347-348 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Airbrush 101 +DTSTART:20250418T150000 +DTEND:20250418T163000 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nBeginners guide to airbrush + come join us as wel walk through how to use and care for your airbrush\, w + here to get them and what kind of paints to use! +LOCATION:Prog Panels - 3AB +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Plurality in Anime and Real Life +DTSTART:20250418T151500 +DTEND:20250418T164500 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nThe notion of multiple people + sharing a body has alwaysbeen intriguing to storytellers\, but many peopl + e aren't aware thatplurality isn't fictional! Japanese media in has depict + ed plurality invarious forms\, so we'll be taking a look at what's accurat + e\, what's not\,and what we love anyway. +LOCATION:Prog Panels - 443-444 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:The Only Clean Cosplay Was Yesterday – Battle Damage Outfits +DTSTART:20250418T153000 +DTEND:20250418T163000 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\nReady to add a new layer of d + epth and personality to your cosplay? Take a step into the world of applyi + ng battle damage and weathering effects to make an outfit look like it jus + t stepped out of your favorite scene.Note - due to limited time and expert + ise\, this panel will cover damage and weathering techniques specifically + for cloth-based outfits and NOT for leather\, armor\, 3D/plastics\, etc. +LOCATION:Prog Panels - 310 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:I Watched the Lowest-Rated Yuri Animes +DTSTART:20250418T153000 +DTEND:20250418T170000 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\nNotorious yuri titles you've + heard whispers about- G-Taste\, Butt Attack Punisher Girl\, Cream Lemon- I + watched the worst-rated yuri animes of all time. I'll tell you about the + forgotten gems and the steaming trash heaps. Join us for the maids\, the d + rama\, the questionable doctorates\, and the surprisingly sweet and shocki + ngly horrible moments. +LOCATION:Prog Panels - 2AB +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:City POP ! The music that defined 1980s Japan +DTSTART:20250418T153000 +DTEND:20250418T173000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nBack for it's second year\, b + igger and better than ever!Join us as we take a deep dive into the enigmat + ic world of City Pop: a term for Japanese music from the late '70s and '80 + s that perfectly encapsulated Japan's economic and cultural boom. From a v + ariety of genres\, including early J-Pop\, Jazz Fusion\, and Soul music - + as well as featuring iconic artists from the decade - we'll explore the hi + story and evolution of the City Pop and how it continues to be a musical p + henomenon today. Whether you're a seasoned City Pop enthusiast or new to i + ts retro charm\, come groove with us as we unravel the secrets behind the + music that defined an era! +LOCATION:Prog Panels - 445-446 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Extremely Hard Take-Home Anime Quiz (pick up) +DTSTART:20250418T160000 +DTEND:20250418T170000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nWIN A PS5 AT THE EXTREMELY HA + RD TAKE-HOME ANIME QUIZ! This is a multiple-choice\, open-book\, take-home + quiz that begins on the Sakura-con site three weeks before the convention + . You are encouraged to use any resource at your disposal. Some of the que + stions will test your understanding and ability to analyze anime\, not jus + t your memory. Instead\, you will need to do research into the real world + of such topics as art\, geography\, history\, literature\, music and scien + ce. The answers to the questions will provide additional context and meani + ng to the anime that you already enjoy. +LOCATION:Workshop - 330 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Nyan Neko Sugar Girls Nyaow and Furever! <3 +DTSTART:20250418T160000 +DTEND:20250418T170000 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\nAre you ready for the Ultimat + e Nyan Neko Sugar Girls experience of the decade? New to the fandom and wa + nt to learn deep lore from the series? Well then see you here neko chans! + Nya rawr <3 +LOCATION:Prog Panels - 305 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:The Court of Fontaine Presents: Genshin Jeopardy! +DTSTART:20250418T160000 +DTEND:20250418T170000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nLady Furina and some of your + favorite Fontaine characters are hosting a game of Jeopardy! Your Geshin I + mpact knowledge will be tested on everything from geography\, to memes\, t + o lore\, and more. Join us for audience participation\, fun\, and prizes! +LOCATION:Prog Panels - 340-342 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Level Up with AMV Editors +DTSTART:20250418T160000 +DTEND:20250418T173000 +CATEGORIES:AMV,SC-13 +DESCRIPTION:Track: Fan Panel\nTags: AMV\,SC-13\n\nThis is a live AMV-editi + ng boot camp like no other! Join a panel of three editors as they review n + ew AMVs and share tips and tricks on what makes a great edit. +LOCATION:AMV Workshop - 613 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Organizing Idol Festivals 101 +DTSTART:20250418T161500 +DTEND:20250418T171500 +DESCRIPTION:Track: Fan Panel\n\nDo you love idols? Do you want to create m + ore spaces for idols to shine? Or are you wondering about what goes on beh + ind the scenes of an Idol Festival? If yes\, this panel is for you! Whethe + r you are just curious or want to run an idol festival on a casual meet up + scale or for a main event at a big con\, our personal experience and poin + ters should assist you in making sure your own Idol Festival is a huge suc + cess! +LOCATION:Prog Panels - 307 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:The Newlywed Game: Con Friends Edition! +DTSTART:20250418T161500 +DTEND:20250418T171500 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nDo you know your bestie bett + er than anyone else at this con? Prove it! Join three real life best frien + ds in a reimagining of this classic game show. Face off against other duos + for a chance to win prizes based on how well you know your friend. Will y + ou be crowned the BEST best friends? +LOCATION:Prog Panels- 304 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Tokusatsu 101 +DTSTART:20250418T161500 +DTEND:20250418T171500 +CATEGORIES:SC-10 +DESCRIPTION:Track: Fan Panel\nTags: SC-10\n\nHave you ever wondered what + ’s going on with all those guys in colorful suits and helmets? Did you g + row up on Power Rangers and now you kind of miss it? Did you LOVE Ultraman + : Rising but have no idea how to get more of your kaiju fix? Welcome to To + kusatsu 101: a beginner friendly introductory course on all things in the + greater toku umbrella. Learn about henshin poses\, the loudest toys known + to man\, and more! After that\, stick around for a quick Q&A followed by a + screening of the first episode of Kamen Rider (1971). +LOCATION:Prog Panels - 343-344 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:In Defense of the Legend of Korra +DTSTART:20250418T163000 +DTEND:20250418T173000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nA deep dive where we talk abo + ut the Legend of Korra\, its faults\, and its improvements. For better or + worse. +LOCATION:Prog Panels - 347-348 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Saint Snow live show and games!! (Luminous Sailors!) +DTSTART:20250418T163000 +DTEND:20250418T173000 +CATEGORIES:SC-10 +DESCRIPTION:Track: Fan Panel\nTags: SC-10\n\nLuminous Sailors is hosting a + love live performance and game panel! There will be dancing\, games\, gif + ts and more!!! +LOCATION:Prog Panels - 345-346 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Idol Random Dance Play +DTSTART:20250418T164500 +DTEND:20250418T174500 +CATEGORIES:Dance,SC-13 +DESCRIPTION:Track: Fan Panel\nTags: Dance\,SC-13\n\nAlways felt like rando + m dance plays never had your favorite media? This one will have medias lik + e Idolish7\, Ensemble stars\, Love Live\, vocaloid\, d4dj\, project sekai\ + , Idolmaster and more!! +LOCATION:Dance Lessons - 420-422 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Anime Music Pub Quiz! +DTSTART:20250418T164500 +DTEND:20250418T181500 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nAnime Music Pub Quiz is back + !! Come on your own or group up with your friends to name different anime + songs over several rounds. Whether it’s your favorite OP or an ending yo + u’ve never heard before\, there’s something here for everybody. Prizes + and Petal Points for first place and best team name. Don’t skip the ope + ning! +LOCATION:Prog Panels - 3AB +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:The Socks on My Hands Anime Puppet Slam +DTSTART:20250418T170000 +DTEND:20250418T180000 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\nCosplaying puppets? Miniature + recreations of your favorite show? Catboy shadow puppets? What a time to + be alive! The Socks on My Hands Anime Puppet Slam seeks to present enchant + ing short-form puppetry produced by local puppeteers and curious artists o + f all backgrounds as they seek to celebrate all things Anime and experimen + t with puppetry as a creative medium. Join us for a light-hearted and fun- + filled evening which presents experimental works and old-time favorites (w + ell for puppeteers at least!).Be dazzled by our performers! Too short to s + uck! Will you be in the next one? +LOCATION:Prog Panels - 310 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Magical Girls are Witches Without Pointed Hats +DTSTART:20250418T171500 +DTEND:20250418T181500 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nWitches and wizards\, magic + and mayhem. Spell books\, mana\, and Tolkien. These are all ingredients fo + r a classic fantasy recipe. Across the pond\, Japanese anime has magical g + irls and witches without pointed hats. Yokai instead of dragons. Come expl + ore why those differences exist and how distinct versions of magical fanta + sy have evolved\; and in some cases\, switched schools of magic with one a + nother! +LOCATION:Prog Panels - 340-342 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:From Shojo to Berserk: The Year 24 Group +DTSTART:20250418T173000 +DTEND:20250418T183000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nShojo manga was\, for decades + \, considered trivial fluff for young girls. But that all changed when a r + adical group of female authors in the 70s transformed the landscape of not + just shojo\, but of all manga and its industry forever. Have you ever won + dered how genres like BL and yuri became popular in conservative Japan? Or + why Berserk’s Golden Age Arc hit so differently compared to other actio + n series at the time? Then come join our sparkly-eyed panel on a discussio + n of the fascinating influence of the Year 24 mangaka group and their work + s\, including the recently rebooted Rose of Versailles. Then stick around + to share your favorite series or examples of iconic shojo and the unexpect + ed stories which borrow from them! +LOCATION:Prog Panels - 343-344 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Ranking Anime’s Ultimate FBoys: Who's the King of the Island? +DTSTART:20250418T173000 +DTEND:20250418T183000 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\nAre you ready for the Fboy sh + owdown!? This panel will rank anime's most infamous “fboys” from smoot + h talkers to the ones that cause EMOTIONAL DAMAGE to the ones that are jus + t misunderstood. In this panel\, we'll dive into the world of anime charac + ters who ooze charm\, confidence\, and an air of danger—making them near + ly impossible to resist\, even as they step on hearts along the way.We’l + l have a list and participants will randomly draw a character from a grab + bag or they can switch someone who’s already on the board. Be prepared t + o make tough decisions and defend your choices in this interactive panel. + Is your favorite a S Class 5 Star Michelin or are they just a wholesome Ba + byboy. +LOCATION:Prog Panels- 304 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:The Art of Gijinka +DTSTART:20250418T173000 +DTEND:20250418T183000 +DESCRIPTION:Track: Fan Panel\n\nFrom your favorite Pokemon to the most del + icious looking dessert\, join Bug and friends as they discuss bringing non + human characters to life with the art of gijinka from concept to cosplay + creation. +LOCATION:Prog Panels - 307 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Pokemon Draw by Memory +DTSTART:20250418T173000 +DTEND:20250418T190000 +CATEGORIES:SC-10 +DESCRIPTION:Track: Fan Panel\nTags: SC-10\n\nFeeling artistic? Come and dr + aw with us as we struggle to remember exactly what Pokemon look like\, and + maybe even take home a prize! Paper and pencils are provided\, but be sur + e to bring something to write on! +LOCATION:Prog Panels - 2AB +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Studio Ghibli Trivia Showdown! +DTSTART:20250418T173000 +DTEND:20250418T190000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nSo you think you’re a Studi + o Ghibli expert? Let’s prove it! This exciting and interactive panel wil + l feature teams from the audience\, all competing in a fun and challenging + trivia showdown covering a variety of topics from all your favorite Studi + o Ghibli films! A celebration of this fandom with fellow fans and a chance + to win awesome prizes awaits you in this panel! +LOCATION:Prog Panels - 305 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Whose Line is it Anyway? +DTSTART:20250418T173000 +DTEND:20250418T190000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nAn improv comedy show where t + he games of Whose Line is it Anyway are performed by you. Come join in for + classic games like Unlikely Superheroes\, Scenes from a Hat\, Party Quirk + s\, and more. Come join us for all the laughs and fun. +LOCATION:Prog Panels - 440-442 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:In My Y2K Era: Anime Fandom at the Turn of the Millennium +DTSTART:20250418T174500 +DTEND:20250418T184500 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nSetting up your VCR for Sail + or Moon\, Saturday mornings with Pikachu\, and trading tapes with stranger + s online - this was the golden age of anime fandom for millennial tweens. + After school with Toonami and staying up for Adult Swim\, anime was hittin + g the mainstream. Learn what it was like to be a teen otaku 20 years ago! +LOCATION:Prog Panels - 345-346 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:How NOT to Plan an Anime Convention +DTSTART:20250418T180000 +DTEND:20250418T190000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nHave you ever wondered what t + he perfect anime convention should contain? Well\, we're ready to deliver! + With noted anime guests like Mr. Beast and a two drink minimum\, this pan + el will come up with the perfect experience. +LOCATION:Prog Panels - 445-446 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:K-pop RPD +DTSTART:20250418T180000 +DTEND:20250418T190000 +CATEGORIES:Dance,SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: Dance\,SC-ALL\n\nCome and dance along + to your fave K-pop songs. +LOCATION:Dance Lessons - 420-422 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Break That Writer's Block [2.0] +DTSTART:20250418T180000 +DTEND:20250418T193000 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\n"For the more experienced\, + or bored\, fiction writers - here's a panel made for you to bust through t + hat ""blank page"" fear. You'll have the pleasure of writing some characte + rs in some oddball situations. The catch? They're decided by the roll of p + rompt dice! Come prepared to write! (Paper and pens will be provided if yo + u forgot yours.)" +LOCATION:Workshop - 330 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Zapp's Loveline Doors Open +DTSTART:20250418T181500 +DTEND:20250418T190000 +DESCRIPTION:Track: Fan Panel\n\n +LOCATION:Relations Panels/Premiers - Ballroom 2 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Does anyone remember Nisekoi? +DTSTART:20250418T183000 +DTEND:20250418T193000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nDo you remember the eleven ye + ar old anime\, Nisekoi? Reminisce on the days of anime past and discuss th + e characters\, story\, and overall feelings of nostalgia for the hit anime + series! Learn about the production team and what they went on to do and g + et to connect with fellow fans who appreciate this anime from a time gone + by. +LOCATION:Prog Panels - 340-342 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Learning History in Dubious Ways: Fate\, Hetalia\, and more! +DTSTART:20250418T183000 +DTEND:20250418T200000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\n"\nJoin us (Eldaerenth and fr + iend) for an entertaining and educational(?) look into the depictions of h + istorical figures and events in Fate\, Hetalia\, and more! See when fictio + nalized history is surprisingly faithful and when it goes horribly wrong ~ + " +LOCATION:Prog Panels - 3AB +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Music from Anime and Video Games: Live! +DTSTART:20250418T183000 +DTEND:20250418T200000 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nLive performance of music fr + om some of our favorite anime and video games arranged for a wind quintet\ + , presented by Seattle ensemble Winds5. Music helps transport us to anothe + r world\, setting the mood for our immersive experience. We will bring the + magic of soundtracks from Persona\, Studio Ghibli\, Elden Ring\, and more + to your Con experience. +LOCATION:Prog Panels - 347-348 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:The Future is Queer: A Futurama Analysis +DTSTART:20250418T183000 +DTEND:20250418T200000 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\nFuturama is a beloved sci-fi + show that has been airing on and off for over two-and-a-half decades. With + Futurama's recent comeback\, we aim to prove that most of the characters + in Futurama are queer. Join us for a restrospective full of humor\, absurd + ity\, and heart. +LOCATION:Prog Panels - 310 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Magical Girls: After the Fight +DTSTART:20250418T184500 +DTEND:20250418T194500 +DESCRIPTION:Track: Fan Panel\n\nEver wonder what magical girls are up to a + fter they're done saving the day? They run a panel\, of course! Join us as + we joke around\, play games\, and you will have the opportunity to win pr + izes by flexing your magical girl knowledge. +LOCATION:Prog Panels - 307 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:League of Jeopardy +DTSTART:20250418T184500 +DTEND:20250418T201500 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nDo you think you know everyth + ing there is about League of Legends? From gameplay\, to lore\, to esports + \, come face off against other tortured souls to prove that you deserve th + e bragging rights to type “I WON LEAGUE OF LEGENDS TRIVIA!” in /all ch + at. Winners get fun little trinkets! +LOCATION:Prog Panels- 304 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Aged to Perfection +DTSTART:20250418T190000 +DTEND:20250418T200000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nFandom and Cosplay are often + seen as “childish” but they’re hobbies that can grow with you! Join + us for a discussion of participating in cosplay and fandom as you age. +LOCATION:Prog Panels - 343-344 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Arcane and Shakespearean Tragedy +DTSTART:20250418T190000 +DTEND:20250418T203000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nNot quite over the end of Arc + ane? Come join us in discussing the show's use of Shakespearean tragedy. W + e'll discuss who the tragic heroes are\, your favorite character's fatal f + laws\, the overwhelming themes of revenge\, and the ever-present idea of g + ood vs evil. +LOCATION:Prog Panels - 345-346 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Zapp's Loveline +DTSTART:20250418T190000 +DTEND:20250418T203000 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\n +LOCATION:Relations Panels/Premiers - Ballroom 2 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Spoilers Ahead: This Panel Ruins Everything! +DTSTART:20250418T191500 +DTEND:20250418T201500 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nSome people just don’t care + about spoilers. Sometimes there’s a story you’re interested in\, but + just don’t have time to sit down and watch or play the whole thing. Or m + aybe you just want to kill some time listening to someone talk about stori + es they really like! Whatever you come in for\, you’ll have a good time! + I’ve got lots of things to spoil for you\, and this in fact the only pl + ace and time I’ll spoil some things for anyone! +LOCATION:Prog Panels - 305 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Pokemon Film Review Hour +DTSTART:20250418T193000 +DTEND:20250418T203000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nThere are over 20 animated Po + kemon films. Are any of them good? Do we only remember them because of nos + talgia? Do any of them even pass the Bechdel test? We decided to watch and + review them so you don’t have to. +LOCATION:Prog Panels - 445-446 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Yaoi Story: The Return of the Pizza Man +DTSTART:20250418T193000 +DTEND:20250418T203000 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\nCome and write a story about + a pizza man named Dan\, who first made his appearance at a Sakura Con 2015 + yaoi story writing panel. 10 years later\, he has a life of his own\, and + is looking for love! Where do you think Dan is living now? What kinds of + men has he met since then? It's all up to you! Bring your story ideas and + strap in for a fun ride! Stick around until the end for a dramatic reading + of the story created! +LOCATION:Prog Panels - 440-442 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:FFXIV Trivia Show +DTSTART:20250418T193000 +DTEND:20250418T210000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nThink you know about the worl + d of Final Fantasy 14? Come test your knowledge in this trivia panel! Back + for our second year! +LOCATION:Prog Panels - 2AB +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Love live! A Strawberry Dream μ's project +DTSTART:20250418T194500 +DTEND:20250418T204500 +CATEGORIES:SC-10 +DESCRIPTION:Track: Fan Panel\nTags: SC-10\n\nWatch out\, Sakura Con! Straw + berry Dream Idols are taking the stage and bringing a dazzling and classic + performance to YOU! Idols and idol fans alike come together to join μ's + for a time filled with games\, prizes\, dancing\, and most importantly of + all\, FUN! You won’t want to miss it! +LOCATION:Prog Panels - 340-342 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Fic Binding: The art of taking fanfiction from the screen to the p + age +DTSTART:20250418T200000 +DTEND:20250418T210000 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nWe love fanfiction. We love + books. So why not turn fanfiction into books? Learn all about the idea of + and how to take your favorite fanfictions and bind them into proper books + that you can actually hold in your names and show off in your bookcases. F + rom one-shot quick binds to multi-chaptered hardbound novels\, let's get s + tarted. +LOCATION:Workshop - 330 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Gender\, Genre\, and Games in Sports Anime +DTSTART:20250418T200000 +DTEND:20250418T210000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nWhat makes a sports anime a s + ports anime? Is it the thrill of the competition? The forced team building + ? The homoerotic subtext? Join us to trace the development of shojo and sh + onen sports anime tropes/conventions from the 1970s (Ace wo Nerae! and Ash + ita no Joe) all the way up to the modern day (Birdie Wing and Sk8 the Infi + nity). +LOCATION:Prog Panels - 307 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Sonic the Hedgehog: The Game Show +DTSTART:20250418T200000 +DTEND:20250418T213000 +CATEGORIES:SC-10 +DESCRIPTION:Track: Fan Panel\nTags: SC-10\n\nIt doesn't matter if you call + him Blue Blur\, Blue Justice\, or even Ogilvie Maurice\; if you'd like to + test your knowledge of the speedy little gaming critter we call Sonic the + Hedgehog and perhaps win some prizes\, drop on by! +LOCATION:Prog Panels - 443-444 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:That Time I Fell Down the Seiyuu Rabbit Hole and Got Reincarnated + as a Fansubber +DTSTART:20250418T201500 +DTEND:20250418T211500 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nTake a guided tour of the ra + bbit hole that is the seiyuu (Japanese voice actor) fandom! In this panel\ + , Rajio Ryn shares their journey to becoming a fansubber on YouTube\, from + how they first discovered different kinds of seiyuu content to their curr + ent process for bringing seiyuu content to English-speaking audiences. Ani + me fans interested in exploring this niche\, seiyuu otaku curious about th + e fansubbing process\, and Japanese learners looking for immersion materia + l will absolutely find something to enjoy and take away from this session! +LOCATION:Prog Panels - 343-344 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Azur Lane: Six Years Since Global +DTSTART:20250418T203000 +DTEND:20250418T213000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nAzur Lane is a mobile gacha g + ame with anthropomorphic 'ship girls.' This panel will take a dive into th + e history of the game\, its lore\, and its off shoots in the six years sin + ce it has been released globally. +LOCATION:Prog Panels- 304 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Big Lady Appreciation Station +DTSTART:20250418T203000 +DTEND:20250418T213000 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\nIf you like big ladies\, then + we here at the Big Lady Appreciation Station have a treat in store for yo + u! Come join us and share your love for them with us while the same master + mind that will bring you Himbology 101 convinces the rest of you why you s + hould love them too! +LOCATION:Prog Panels - 3AB +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Branding Yourself: A Talk for Artists Struggling To Shine A Little + Brighter +DTSTART:20250418T203000 +DTEND:20250418T213000 +DESCRIPTION:Track: Fan Panel\n\nAs con-goers aspire to exhibit their own a + rt and as exhibit halls become increasingly crowded with booths\, the comp + etition for attention is fiercer than ever. In this talk\, I'll share my i + nsights as an indie artist with you\, diving into the essential principles + of identity design and branding and how to apply them to help showcase yo + ur artwork. This panel is specifically designed for independent artists ea + ger to showcase their work at in-person events\, but who want to learn how + to create a unique personal brand that stands out and authentically conne + cts their art with their audience. +LOCATION:Prog Panels - 305 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Alastor’s Live Radio Show! +DTSTART:20250418T203000 +DTEND:20250418T220000 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\nSalutations newly-departed! I + t's not too late to join the live audience to Alastor’s Radio Show!! All + you have to do is laugh when we say LAUGH and awwww when we say AWWWW... + or else face the wrath of the infamous host. Featuring hilarious and touch + ing segments from other Hazbin characters\, interviews with popular reside + nts of Hell\, and surprise guest stars! Just don't forget to SMILE! +LOCATION:Prog Panels - 310 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Dress Up Disasters: A Cosplay Horror Stories Panel +DTSTART:20250418T210000 +DTEND:20250418T220000 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\nWho says the life of a cospla + yer is glamorous? Join Circuit and Alycas as they share some of their most + notable cosplay related stories of things just not quite going to plan we + ther that’s because of poor planning on their part or simply it being th + e will of the cosplay gods through everyone’s favourite story telling me + dium of custom made memes! Don’t forget to bring your own memorable stor + ies for a chance to share in the misfortune. +LOCATION:Prog Panels - 440-442 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Return to Yharnam: Bloodborne’s 10 Year Anniversary +DTSTART:20250418T210000 +DTEND:20250418T220000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nHello\, good hunter. In 2015\ + , Bloodborne was released and subsequently won Game of the Year. The gothi + c cities and eldritch mysteries made it stand out among other games of its + era. Ten years after its initial release- let’s look back on the game\, + its unique story\, and even hidden data mined content that didn’t make + it into the final release! May you find your worth in the waking world. +LOCATION:Prog Panels - 340-342 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:The Fall of the House of Miyazaki +DTSTART:20250418T210000 +DTEND:20250418T220000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nHayao Miyazaki did a lot of w + ork to make anime acceptable to mainstream audiences. Not by creating high + quality art\, but by making something so bad that everything else looked + quality in comparison. +LOCATION:Prog Panels - 445-446 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Twisted Wonderland: UnBirthday Bash +DTSTART:20250418T210000 +DTEND:20250418T220000 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\n“A very disastrous Unbirthd + ay to you! Who\, me? Yes\, you!” Deuce and Ace are tasked with hosting a + n Unbirthday Party at the Heartslabuyl dorm. Issue is\, they’ve never do + ne this on their own before and it quickly becomes very disastrous. See wh + o else shows up to help them out\, and join in the fun and games they have + planned. +LOCATION:Prog Panels - 345-346 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Ghost Stories: Beyond the Infamous Dub +DTSTART:20250418T211500 +DTEND:20250418T221500 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\n“Most people know about the + outrageous English dub of Ghost Stories\, but did you know that the ghost + s the kids defeat are based on real urban legends? Join Ginger for a deep + dive into some of the spookiest tales from Japan!” +LOCATION:Prog Panels - 307 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Yaoi: Is It Cringe? +DTSTART:20250418T213000 +DTEND:20250418T230000 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\nYaoi: is it cringe? Let's fin + d out! Come celebrate the good\, the bad\, and the ugly of yaoi's past\, p + resent\, and future. While yaoi (or is it called BL now?) has had an infam + ous place in fandom\, it has also come with its share of controversies. Fr + om yaoi paddles to yaoi hands\, BL has had a bit of an image problem in th + e past. But amid the questionable content and unique anatomy\, yaoi has pe + rsevered and even gained more acceptance in recent years. Come explore and + celebrate yaoi's legacy! +LOCATION:Prog Panels - 2AB +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:How to Wotagei: Dancing for your Idols +DTSTART:20250418T214500 +DTEND:20250418T224500 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nWant to show your love for i + dols and other japanese music? Come learn wotagei fundamentals from local + uchishi! We'll be going over two of the most common combinations you'll ne + ed to know to start your cyalume dance journey. +LOCATION:Prog Panels- 304 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Vampires for the Female Gaze +DTSTART:20250418T220000 +DTEND:20250418T230000 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\nA dynamic look into vampires + in anime\, manga\, and video games made for the female gaze and what makes + it worth the watch... or not so much. Diving into series such as The Case + Study of Vanitas\, Vampire Knight\, Diabolik Lovers\, Castlevania\, and m + ore. +LOCATION:Prog Panels - 305 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Sister Leveling Abridged - The Forsaken Rizz Monarch +DTSTART:20250418T220000 +DTEND:20250418T235900 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\nCome meet the creators behind + the YouTube Channel\, The Anime Boiis! Enjoy a showcase of some of their + most popular series including: My Hero Academia Abridged\, Jujutsu Kaisen + Abridged\, Solo Leveling Abridged (AKA Sister Leveling)\, and much more! A + lso\, get the chance to see the premiere of new content that has never bee + n seen before! +LOCATION:Prog Panels - 3AB +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:German Sparkle Panel +DTSTART:20250418T230000 +DTEND:20250419T003000 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\nwho though a Hetalia panel wo + uld wind up in the good year of 2025? Join the Germanic countries in this + late night game and improv heavy panel! now this isn't any ordinary panel\ + , this is a 100% approved German Sparkle Party\, which means there will be + GAMES\, LAUGHS\, and PRIZES! we will have some questionable late 2016 tum + blr humor.... and honestly by the end of the night you might as well write + it off as a fever dream. +LOCATION:Prog Panels - 307 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Transitioning Humanity: This Is Not A Man +DTSTART:20250418T231500 +DTEND:20250419T001500 +DESCRIPTION:Track: Fan Panel\n\nWhat do Arcane\, Creature Commandos\, Cybe + rpunk: Edgerunners\, and The Witch from Mercury have in common? All four e + xplore the ethics and effects of human augmentation – of transhumanism. + They ask how far science and technology can take humanity\, and whether th + e cost is worth it. Join us for an in-depth examination of these new trans + humanist narratives\, how they’ve been updated for our modern age\, and + where these shows draw the line on humanity. +LOCATION:Prog Panels - 305 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Dungeons and Decisions\; 100 Players\, 1 Character +DTSTART:20250418T233000 +DTEND:20250419T010000 +CATEGORIES:SC-10 +DESCRIPTION:Track: Fan Panel\nTags: SC-10\n\nGather round as we tell the t + ale of Ehverie Bahdy\, a feebleknight who goes on a great quest. Join us o + n a choose-your-own-adventuregame of Dungeons and Dragons where everyone i + n the audience plays a partin the decisions made by our single character!! +LOCATION:Prog Panels - 2AB +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:German Sparkle Panel +DTSTART:20250418T230000 +DTEND:20250419T003000 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\nwho though a Hetalia panel wo + uld wind up in the good year of 2025? Join the Germanic countries in this + late night game and improv heavy panel! now this isn't any ordinary panel\ + , this is a 100% approved German Sparkle Party\, which means there will be + GAMES\, LAUGHS\, and PRIZES! we will have some questionable late 2016 tum + blr humor.... and honestly by the end of the night you might as well write + it off as a fever dream. +LOCATION:Prog Panels - 307 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Transitioning Humanity: This Is Not A Man +DTSTART:20250418T231500 +DTEND:20250419T001500 +DESCRIPTION:Track: Fan Panel\n\nWhat do Arcane\, Creature Commandos\, Cybe + rpunk: Edgerunners\, and The Witch from Mercury have in common? All four e + xplore the ethics and effects of human augmentation – of transhumanism. + They ask how far science and technology can take humanity\, and whether th + e cost is worth it. Join us for an in-depth examination of these new trans + humanist narratives\, how they’ve been updated for our modern age\, and + where these shows draw the line on humanity. +LOCATION:Prog Panels - 305 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Dungeons and Decisions\; 100 Players\, 1 Character +DTSTART:20250418T233000 +DTEND:20250419T010000 +CATEGORIES:SC-10 +DESCRIPTION:Track: Fan Panel\nTags: SC-10\n\nGather round as we tell the t + ale of Ehverie Bahdy\, a feebleknight who goes on a great quest. Join us o + n a choose-your-own-adventuregame of Dungeons and Dragons where everyone i + n the audience plays a partin the decisions made by our single character!! +LOCATION:Prog Panels - 2AB +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Sumo: The Five Ws in 30 Minutes! +DTSTART:20250419T070000 +DTEND:20250419T073000 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nThis panel will run through + the who\, what\, when\, why and how of Japan's national sport: osumo! What + are they doing? Why is it so important in Japanese culture? Who are some + the current popular wrestlers? Find out these answers\, plus many more fun + facts about this fast-paced tradition! +LOCATION:Prog Panels - 303 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Practical Advice for Living in Japan +DTSTART:20250419T080000 +DTEND:20250419T090000 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nInterested in studying abroa + d or working in Japan long-term\, but not sure if it is right for you? Hea + r from the perspective of a PNW native who has recently lived in Japan for + five years as a graduate student and survived to tell the tale. Topics wi + ll include not just school or work\, but also leisure\, health care\, apar + tment hunting\, and much more! +LOCATION:Prog Panels - 303 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Whisked Away: 40 Years of Studio Ghibli +DTSTART:20250419T081500 +DTEND:20250419T101500 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nStudio Ghibli is one of the + most beloved names in anime\, many of their films have transported anime f + ans and non-anime fans alike. There will be much to discuss regarding this + beloved studio such as films by the great Hayao Miyazaki\, films by Isao + Takahata and other Ghibli films. Come celebrate the love of Ghibli with ot + her fans as we celebrate 40 years of an animation studio that has transpor + ted many to wonderful landscapes and unforgettable experiences. +LOCATION:Prog Panels - 307 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Opening Notes: Analyzing the Musical Heart of Anime +DTSTART:20250419T084500 +DTEND:20250419T094500 +CATEGORIES:SC-10 +DESCRIPTION:Track: Fan Panel\nTags: SC-10\n\nEver wondered about the music + al structure of anime openings? Join us as we explore the musical complexi + ties behind iconic openings like Demon Slayer\, Frieren: Beyond Journey’ + s End\, and Serial Experiments Lain. We’ll break down the harmony\, form + \, and techniques that make these openings unforgettable. No prior music k + nowledge is needed—we’ll make it accessible for all attendees. +LOCATION:Prog Panels- 304 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:What Should Be Your First Final Fantasy Game +DTSTART:20250419T090000 +DTEND:20250419T100000 +CATEGORIES:SC-10 +DESCRIPTION:Track: Fan Panel\nTags: SC-10\n\nDiscussion of what is the bes + t Final Fantasy game to play first. First hand experience by hardcore Fina + l Fantasy fans help inform new players. +LOCATION:Prog Panels - 310 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Oh! That's A Baseball Episode!! +DTSTART:20250419T093000 +DTEND:20250419T103000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nHave you ever just been watch + ing an anime when suddenly\, out of left field\, all the characters start + playing baseball for an episode and it's the greatest thing ever? Whether + it's there to throw a curveball into how you see the characters\, or a cha + nge-up into the pacing\, or just to bring out their animation aces\, this + is a panel about how anime's baseball episodes really hit it out of the pa + rk. +LOCATION:Prog Panels - 3AB +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Um\, Actually: Con Edition +DTSTART:20250419T094500 +DTEND:20250419T111500 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\n"This game show is based on t + he Drop Out show ""Um\, Actually"". Two hosts will test your nerdy knowled + ge in correcting really pedantic errors in some incorrect statements. Can + you figure out what's wrong? Come join us\, and show off your nerd and fan + dom knowledge" +LOCATION:Prog Panels - 345-346 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Super Mario Bros Super Panel +DTSTART:20250419T100000 +DTEND:20250419T110000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nMario games have been a pinna + cle of consistency for the video game industry. Mario media adaptations ha + ve been the same thing\, but in the opposite direction. Let’s delve into + old Mario media\, from the live action movie to the super show\, and deci + de once and for all which spaghetti is the most overcooked. +LOCATION:Prog Panels - 445-446 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Anti-Blackness in Anime: Loving an Industry that Doesn’t Always + Love Me +DTSTART:20250419T100000 +DTEND:20250419T113000 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\nAnime has brought us epic bat + tles\, tear-jerking moments\, and characters we’ll love forever—but le + t’s face it\, it hasn’t always brought the love back\, especially for + Black fans and creators. Join Panelist AC Mateen\, LMHC\, as we dive into + the complex relationship between anime and anti-Blackness.We’ll discuss + the frustrating lack of representation\, problematic stereotypes\, and wha + t it’s like to pour your heart into an industry that sometimes leaves yo + u out of the narrative. But it’s not all doom and gloom! This panel is a + lso about celebrating the resilience and creativity of Black anime fans an + d creators\, reclaiming space in fandoms\, and holding the industry accoun + table for a brighter\, more inclusive future. +LOCATION:Prog Panels - 340-342 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:The Project Eclipse performance festival +DTSTART:20250419T100000 +DTEND:20250419T113000 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nProject eclipse would like t + o welcome all sakura con attendees and idol enthusiasts to see the annual + performance festival! Join us to see 15 incredibly talented idol groups/pe + rformers with music and dance from across the pacific northwest and beyond + ! Come see our performers sing\, dance\, or both! +LOCATION:Prog Panels - 440-442 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:How to Make AMVs: Advanced Session +DTSTART:20250419T100000 +DTEND:20250419T120000 +CATEGORIES:AMV,SC-10 +DESCRIPTION:Track: Fan Panel\nTags: AMV\,SC-10\n\nTake your Anime Music Vi + deos to the next level! If After Effects plugins leave you puzzled\, you'r + e struggling to break into finals\, or you just want some cool new techniq + ues to add to your toolkit\, then you've come to the right place. We'll an + swer your questions and help troubleshoot common problems. We'll show off + the tools and processes that have helped us the most. Whether you're tryin + g to impress a YouTube audience or a Sakura-Con judge\, this panel is a mu + st for all aspiring AMV editors! +LOCATION:AMV Workshop - 613 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Crop It Like It's Hot: Cosplay and Photography +DTSTART:20250419T101500 +DTEND:20250419T111500 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nAre you looking to level up + your photography game? Maybe you havethat dusty camera sitting around and + want to capture some elevatedphotos of your cosplays. Join Xaeri as they g + ive a crash-course into thebasics of photography and how you can apply it + to your own photos. No prior knowledge or equipment is necessary! +LOCATION:Prog Panels - 443-444 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Organizing Cosplay Meetups the Old School Way +DTSTART:20250419T101500 +DTEND:20250419T111500 +CATEGORIES:SC-10 +DESCRIPTION:Track: Fan Panel\nTags: SC-10\n\nHave you ever wanted to put t + ogether a cosplay meetup for an obscure fandom\, but you don't know where + to start? The TF2 Cosplay Community is here to show you how it's done! +LOCATION:Prog Panels - 343-344 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Samurai Flamenco and the History of Super Sentai +DTSTART:20250419T101500 +DTEND:20250419T111500 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nSamurai Flamenco pays homage + to the famous Japanese tokusatsu franchises\, Kamen Rider and Super Sentai + . Known as a parody\, a satire\, and even a deconstruction\, it got a very + mixed reception when it came out back in 2013-2014. Does it deserve the c + riticism or the praise though\, and should you even bother watching it? To + answer this question\, we will be taking a dive into the history of the K + amen Rider and Super Sentai franchises\, their tropes and concepts\, and h + ow they evolved until Samurai Flamenco arrived on the scene\, and then exa + mining how Samurai Flamenco took them and turned them to eleven…to its b + enefit or its detriment. +LOCATION:Prog Panels - 347-348 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Ballgowns for Cheaters +DTSTART:20250419T103000 +DTEND:20250419T113000 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nEver wanted to make the big\ + , fluffy dress of your 5 year old self's dreams\, but have no idea where t + o start? Have no fear - the laziest sewist brigade is here! Learn what's w + orth making\, what's better bought\, and how to make a giant skirt in thre + e easy steps. These cosplayers practically live in hoopskirts\, and we kno + w that a beautiful gown is within reach of any and everybody. Trust us - i + t's easier than making pants! +LOCATION:Prog Panels - 303 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Best dressed anime character rankings +DTSTART:20250419T103000 +DTEND:20250419T113000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nTo all the anime lovers and a + ll the fashion lovers\, its time we unite and decide which anime character + is the best dressed once and for all +LOCATION:Prog Panels - 2AB +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Dangerous games with the awesome Prussia +DTSTART:20250419T103000 +DTEND:20250419T113000 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\nPrussia and Romano from the n + ew Gangstertalia au will be hosting a fun card game for the new Gangster-f + ied countries. We'll be rocking and pulling all kinds of stunts together. + With the awesome Prussia running the show and the less awesome Romano prov + iding support it'll be a great time. +LOCATION:Prog Panels - 305 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:How Horror Heals +DTSTART:20250419T103000 +DTEND:20250419T113000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nA wide misconception of the h + orror genre is that it’s intended solely for the scare factor\, to make + you feel afraid. When in fact it couldn’t be more the opposite! Many hor + ror creators are cited saying that they created their art to release their + own fear\, coping with terrifying real life experiences and traumas. Join + us in exploring the grand impact that J-Horror media has had socially and + culturally! Love horror? Great\, join in on the conversation! A bit squea + mish\, even with a bandaid? No worries\, we keep it mild and still happily + invite you to join in on this adventure of exploring the J-Horror genre! +LOCATION:Prog Panels - 310 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Intro to Godzilla +DTSTART:20250419T103000 +DTEND:20250419T113000 +CATEGORIES:SC-10 +DESCRIPTION:Track: Fan Panel\nTags: SC-10\n\nNew to Godzilla? Want to know + more about the original movie monster\, but don’t know where to start? + Then come to our panel where we will be your guides to Godzilla and his va + st filmography. Seasoned fans are more than welcome\, and in fact\, even e + ncouraged to come. There’s a lot to learn. History and trivia abound! Af + ter this panel\, we will make you an expert on the king of the monsters! J + apan’s most famous monster! +LOCATION:Prog Panels - 307 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:K-Pop Dance Work out +DTSTART:20250419T104500 +DTEND:20250419T114500 +CATEGORIES:Dance,SC-13 +DESCRIPTION:Track: Fan Panel\nTags: Dance\,SC-13\n\nWant to start your con + day with a bang? How about a pop? This k-pop inspired dance workout is th + e perfect way to wake up your body for a long con day of walking around. F + ollow along to some k-pop inspired exercises\, listening to your fav group + s. No experience needed\, just come have fun!! +LOCATION:Dance Lessons - 420-422 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:DanDaDan: Making Sense of the Chaos +DTSTART:20250419T110000 +DTEND:20250419T123000 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\nDangerous spirits attacking h + umans? UFOs-no\, UAPS coming after your banana?! All in a day's work for M + omo and Okarun. But behind the flashy colors and silly scenarios sits a ve + ry coherent story about interpersonal relationships\, Ken Takakura\, and w + hat makes connecting with others so meaningful and important. Join us for + the goofy\, the absurd\, the surprisingly heartwarming--and don't forget y + our family jewels! +LOCATION:Prog Panels - 3AB +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Cosplay Modification For YOU! +DTSTART:20250419T113000 +DTEND:20250419T123000 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nWorried about planning out c + osplay for conventions? If you can get to that characters body type in tim + e to fit into the cosplay? Not wearing a cosplay anymore (or just in gener + al)\, because its not comfortable anymore? Well come on by and chat with u + s for a bit! We will be going over the stages of planning out cosplay to f + it you better and how to take bought cosplay more comfortable. Along with + modifying a characters outfit to better suit your own needs and wants when + wearing it at a convention. +LOCATION:Prog Panels - 347-348 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Podcasting and You: Everything You Need to Know +DTSTART:20250419T113000 +DTEND:20250419T123000 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\n"Podcasting is a hobby that + is only growing. From fandom rundowns to rewatch clubs to sports teams\, m + any people have looked at their two to four friends and gone ""yeah\, this + can be a podcast."" But what do you do? What do you need? What makes a po + dcast likely to succeed\, and what hidden pitfalls are there? PUCL podcast + cohost Lynian breaks down the basics and the not-so-basics on recording\, + running\, and maintaining a podcast\, and with their show clocking in at + over 700 episodes\, he might actually know what he is talking about." +LOCATION:Prog Panels - 343-344 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Top Percentage: Into the Joeyverse +DTSTART:20250419T113000 +DTEND:20250419T123000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nAnd Arceus said\, Let there b + e Rat: and there was Rat. And Arceus saw the Rat\, and it was TOP PERCENTA + GE. +LOCATION:Prog Panels - 445-446 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Is That An Isekai? You As An Attendee Can Cast A Vote! +DTSTART:20250419T114500 +DTEND:20250419T124500 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nJoin this panel w/ Eldaerenth + & co. and vote on a variety of both Eastern and Western shows/movies/book + s/etc. as to whether you think they count as Isekai or not! This will be a + casual panel with some back-and-forth by the two panelists and a majority + vote from the audience for each concept. Every time a vote is taken\, the + winning result will be recorded. This panel will be held at multiple othe + r conventions in the US over the next few years in order to get data on ho + w regional differences may affect these opinions. +LOCATION:Prog Panels - 440-442 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Japanese Crafts on a Daiso Budget +DTSTART:20250419T114500 +DTEND:20250419T124500 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\n"Join this panel for budget- + friendly Japanese craft ideas and inspiration. Handbags to hair ornaments\ + , good luck charms to holiday decorations\, and more! If you've ever gone + through the isles of Daiso and wondered\, ""What is that even for??"" This + is the panel for you!" +LOCATION:Prog Panels - 345-346 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:RRR: The Most Anime Film Ever Made +DTSTART:20250419T114500 +DTEND:20250419T124500 +CATEGORIES:SC-10 +DESCRIPTION:Track: Fan Panel\nTags: SC-10\n\nIn 2022\, RRR captivated the + world with a cinematic experience that could be best described as “so an + ime.” What exactly does that mean? This panel identifies a certain aesth + etic that anime fans can also recognize in an Indian bromance blockbuster\ + , of all places. +LOCATION:Prog Panels - 303 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:The intersection of Trauma and Anime +DTSTART:20250419T114500 +DTEND:20250419T124500 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\nDiscussion of how Anime expre + sses trauma and complex traumas in a culture that disallows discussion of + mental illness in the name of social harmony. From explaining the commonpl + ace occurrence of natural disasters that hit the islands of Japan to showi + ng the fallout of personal loss and extreme emotional turmoil\, Anime allo + ws artists to express subjects that are normally taboo. The Anime/ Manga S + tories that will discussed are Suzume (2022) Higurashi: When They Cry (200 + 6) Spy x Family (2022) Made in Abyss (2012) and To Your Eternity (2020). +LOCATION:Prog Panels- 304 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Chapter 2: All About Wigs +DTSTART:20250419T114500 +DTEND:20250419T131500 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nA good wig is the crowning j + ewel of any cosplay\, but the learning curve to styling your wigs can be s + teep and expensive if you don't know how to fix your mistakes or avoid the + m altogether. This panel will answer all your pressing questions about wig + s\, such as where to buy wigs\, various techniques and how to have long-la + sting styling. +LOCATION:Prog Panels - 340-342 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:So I Got Reincarnated as a Music Producer +DTSTART:20250419T114500 +DTEND:20250419T131500 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nHow to navigate a mysterious + world filled with beats and bass drops. You are the protagonist with a dut + y to make a song that bangs. Making a remix of a popular song and the choi + ces that can be made. +LOCATION:Prog Panels - 305 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Anime on the Spectrum +DTSTART:20250419T120000 +DTEND:20250419T130000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nIs that cute anime girl just + quirky\, or is she autistic? Learn about autism and autistic coding. +LOCATION:Prog Panels - 310 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Yaoi Bedtime Stories +DTSTART:20250419T120000 +DTEND:20250419T130000 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\nOnce upon a time there was a + boy who was in love with another boy... Join us for some delicious\, cute\ + , and silly yaoi stories read aloud! +LOCATION:Prog Panels - 307 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:KPOP 101 & Random Play Dance +DTSTART:20250419T120000 +DTEND:20250419T133000 +CATEGORIES:Dance,SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: Dance\,SC-ALL\n\nLove Kpop and want to + learn the dances? SD CARD is here to set up a fun and safe space for you + to come learn one of the hottest Kpop dances by your favourite idols! All + ages and levels are welcome. Frances will be leading the class with Steph + assisting - combined they've done over 300 dance covers over the years and + taught various kpop classes! Stay to the end to then show off your moves + during a fun Kpop random play dance! +LOCATION:Dance Lessons - 420-422 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Basics in Photography and Etiquette (Cosplay Photography\, Pro or + No) +DTSTART:20250419T120000 +DTEND:20250419T140000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nFor cosplayers\, hobby\, pro + photographers and beginner photographers!! This panel is for you! This a c + lass on basic of photography and the proper etiquette a photographer shoul + d be treating and respecting clients and cosplayers alike! This panel is h + ost by two of PNW well know photographers in the cosplayer community +LOCATION:Prog Panels - 2AB +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:The Reality Of Creating Manga +DTSTART:20250419T123000 +DTEND:20250419T133000 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nThis panel will show you how + to tell stories differently when looking at creating manga/comics. It goe + s into characterization\, world-building\, what to do with your supporting + cast\, structures of storytelling\, plot sheets\, character art\, creatin + g arks\, story break down\, writing\, terms to remember and more. Overall + you will learn how to build confidence to begin your storytelling journey + no matter the medium- there’s no better time to start than now! +LOCATION:Prog Panels - 443-444 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Beyblade X tournament +DTSTART:20250419T123000 +DTEND:20250419T143000 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nWhether you like it or not\, + Beyblade is back in full spin with Beyblade X and we are ready to make th + e most of this golden era of battle tops! So whether you only ever played + plastic gen\, or have never played at all\, the intensity of Beyblade X is + sure to draw in people of all ages! Come learn how to play\, or if you al + ready play\, come join a tournament hosted by the Seattle WBO chapter! Bri + ng your own gear to take part in the tournament\, but some loaners will be + available for free play! +LOCATION:Workshop - 330 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Better Cosplay Photography +DTSTART:20250419T124500 +DTEND:20250419T134500 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nEver wonder how to take bett + er cosplay photos using just your phone or want to unlock the potential of + that expensive camera setup that you purchase? Come and learn about the b + asics of photography and getting that perfect cosplay shot. +LOCATION:Prog Panels - 343-344 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:How Dune Influenced Anime (and vice versa) +DTSTART:20250419T130000 +DTEND:20250419T133000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nAfter nearly 60 years\, Frank + Herbert’s Dune has finally received recognition\, but it has had a long + standing cultural\, including on anime. This panel explores the ways in wh + ich Dune has clearly paved the way for some of the most popular works of a + nime today\, and perhaps… vice versa? +LOCATION:Prog Panels - 440-442 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Ani-Family Feud (by ANUW) +DTSTART:20250419T130000 +DTEND:20250419T140000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nIt’s family feud but ANIME! + !!! Hosted by Anime Nation UW\, (the University of Washington's premier an + ime student organization)\, we’re so excited to bring our fav game to y' + all!!! Stop by and learn more about what ANUW does and enjoy the best of w + hat we have to offer: a fun game to play with your fellow con-goers\, and + a chance to win petal points for prizes !! We go all out with everything w + e do\, and this is no exception!! We’re honored to have this opportunity + to panel at sakura-con for the first time— and for our debut\, we’ll + be making it extra special X3 Come through and let’s make some memories + that’ll last 4evr <3333 +LOCATION:Prog Panels - 345-346 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Celebrating Yuri and GL in Anime and Manga +DTSTART:20250419T130000 +DTEND:20250419T140000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nIn this panel\, we will talk + about the past andpresent of GL and yuri\, discuss influential animes and + mangas\, and recommend our favorites to one another. +LOCATION:Prog Panels - 347-348 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Cthulhu for School Board +DTSTART:20250419T130000 +DTEND:20250419T140000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nCthulhu has been running for + president since 1996 with little to show for it. With a world in self infl + icted chaos we need Cthulhu now more than ever\, but first the Elder Party + needs to establish a record for governing and the best way we can do that + is by Cthulhu for School board. +LOCATION:Prog Panels - 445-446 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Smut or Angst: The fanfiction title game show +DTSTART:20250419T130000 +DTEND:20250419T143000 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\nSmut or Angst is a silly and + raunchy game of fanfiction titles. Players are given the title of a fic an + d must guess if it's centered around Smut or Angst. Play along with game c + reator\, Leandra and a panel of friends for the chance to win small prizes + . +LOCATION:Prog Panels - 3AB +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:CosPAID +DTSTART:20250419T133000 +DTEND:20250419T143000 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nA working cosplayers guide t + o monetization\, sponsorships\, agencies and more! +LOCATION:Prog Panels - 303 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Persona TTRGP Live! +DTSTART:20250419T133000 +DTEND:20250419T143000 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nEver wanted to experience th + e Dark Hour\, the Midnight Channel\, or Mementos in real life? Experience + it in real time by participating in our Persona TTRPG panel. Four (4) (un) + lucky participants will engage in a quick DnD style gameplay by enacting r + oles of their favorite characters while charting through familiar dungeons + . Every second is vital and crucial as they navigate their way through fam + iliar enemies and traps\, ultimately engaging with the Ruler of the Palace + . Will our heroes thrive or fall victim to the Game Over screen? +LOCATION:Prog Panels - 340-342 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Yugioh Anime Jeopardy +DTSTART:20250419T133000 +DTEND:20250419T150000 +CATEGORIES:SC-10 +DESCRIPTION:Track: Fan Panel\nTags: SC-10\n\nWant to test your knowledge o + n the Yugioh anime? Then this is the panel for you. We'll be doing trivia + questions in the style of Jeopardy on all of the Yugioh shows (from the or + iginal series to all of its various spin offs) So get your duel disk out a + nd get your trivia on! +LOCATION:Prog Panels - 307 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Introducing Your Anime Passion to Others: How to Select the Best ' + Opener' +DTSTART:20250419T134500 +DTEND:20250419T144500 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\n"What makes anime appealing + to some and embarrassing to others? What factors will make a successful in + troduction of your passion for anime to non-Anime fan friends? A presentat + ion and discussion of our anime journeys and data-pools to help determine + the best ""opener"" anime to try to hook friends and family who are less t + han certain." +LOCATION:Prog Panels - 305 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Beyond Karkalicious: a Homestuck Fansong Gameshow +DTSTART:20250419T140000 +DTEND:20250419T150000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nAfter all these years\, are y + ou still STUCK THIS WAY? Did you know there are Thousands of silly Homestu + ck songs besides that one? Wring your puzzle sponge\, earn prizes\, and h + ear a heap of guaranteed new-to-you underrated bops at this interactive tr + ivia game of musical recall and character association! At this tour of alt + ernative\, Alternian tunes\, we'll dive DEEP into the parody/filk/fansong + archives of the creative hurricane fandom that launched a generation of Mi + llennial creative careers in anime\, fantasy\, cartoons\, and gaming! +LOCATION:Prog Panels - 343-344 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:ElfQuest: An American Manga +DTSTART:20250419T140000 +DTEND:20250419T153000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\n"Long before ""manga-style"" + was The Thing to do\, a husband and wife pair created a series that would + end up traveling the world. Inspired by the storytelling of Japanese manga + \, ElfQuest became much closer in style to the comics from across the wate + r than those made in America. Join us to look at the 45+ year history of o + ne of the world's best comic series\, and a look at what's to come in the + future." +LOCATION:Prog Panels - 440-442 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:The Ultimate Danmei Panel +DTSTART:20250419T140000 +DTEND:20250419T153000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nCalling Danmei fans!! Join us + for this interactive panel as we come together to discuss all things MXTX + and beyond! As always\, we can't have a memorable times without competiti + ve games\, insane prices\, and a whole lot of laughter. Fans new and old w + elcome! (While participation is highly encouraged\, we also appreciate who + se who come to be a fly on the wall and soak up all the love this fandom h + as to offer!) +LOCATION:Prog Panels - 310 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:BrightNRose Kpop Dance Workshop +DTSTART:20250419T140000 +DTEND:20250419T160000 +CATEGORIES:Dance,SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: Dance\,SC-ALL\n\nBrightNRose wants to + vibe with you! Join us for a dance workshop where we will teach a handful + of K-pop AND J-pop choreos. Lead by team performance directors who teach r + egularly. So grab some water and come ready to make it look … easyyyyyy + ?. All skill levels are welcomed. +LOCATION:Dance Lessons - 420-422 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Pokemon Scarlet & Violet Tournament (Switch) +DTSTART:20250419T140000 +DTEND:20250419T160000 +CATEGORIES:SC-10 +DESCRIPTION:Track: Fan Panel\nTags: SC-10\n\nTeam Scyther's Swiss Doubles + Tournament! Take part in a Pokemon doubles tournament using VGC standard r + ules (Regulation H - NO Legends\, Paradox\, etc). Bring your Switch and co + py of Scarlet or Violet to participate! We will offer prizes to the top tw + o spots and there will be door prizes! +LOCATION:Prog Panels - 443-444 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:"Not Like the Other Anime Quizzes" Anime Quiz +DTSTART:20250419T141500 +DTEND:20250419T151500 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nHave all those online anime q + uizzes that claim to be "Extremely Hard" ceased to be challenging for you? + Do you no longer enjoy pure fact-based trivia\, where you either know the + answer if you know it\, or you just don't? Tired of quizzes that only see + m to feature Weekly Shonen Jump titles? Unable to have fun when you don't + know the answers?This quiz aims to fix all those issues\, being of interme + diate difficulty\, framed in a way that allows you to answer it even if yo + u don't have all the facts\, and drawn from a diverse range of anime\, man + ga\, and related media. Best part: even if you don't get an answer right\, + you'll learn something cool in the process or find a new interesting anim + e to watch! Whether you show up as an Absolute Duo (team of two) or just H + itori Bocchi (alone)\, you're sure to enjoy this quiz that is Totally Not + Like the Others!(PS: pen and paper provided) +LOCATION:Prog Panels - 345-346 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Itasha: Otaku Car Culture +DTSTART:20250419T141500 +DTEND:20250419T151500 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\n"Returning from 2024! Join us + as we discuss Itasha car culture in America. Ever wondered what happens w + hen anime\, cars\, and the unrelenting passion of fandom collide? Welcome + to Itasha! This panel dives into how Americans have embraced (and occasion + ally misinterpreted) this Japanese art form\, transforming their rides int + o rolling tributes to waifus\, husbandos\, and everything in between. From + awkward encounters at the gas station to ""is this an itasha?"". Join us + for laughs\, insights\, and maybe even a few questionable design choices + —because nothing says ""I’m committed"" like a fully wrapped car featu + ring your favorite blushing anime protagonist." +LOCATION:Prog Panels - 347-348 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Same fandom\, different font +DTSTART:20250419T141500 +DTEND:20250419T151500 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nWe take a look into various s + hows and their fandoms as we compare and contrast their similarities and d + ifferences +LOCATION:Prog Panels - 2AB +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:The Gojo Effect +DTSTART:20250419T141500 +DTEND:20250419T151500 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nHave you ever wondered why pe + ople are obsessed with Satoru Gojo from the series Jujutsu Kaisen? Do you\ + , yourself love him? Do you hate him and want to know what it is about him + that has hypnotized our community? Well\, join us as we explore what abou + t him has everyone captivated and how he has impacted the history of anime + /manga and society going forward. +LOCATION:Prog Panels- 304 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:So you wanna rig a VTuber? Waffo's Live2d Crash Course +DTSTART:20250419T143000 +DTEND:20250419T153000 +CATEGORIES:SC-10 +DESCRIPTION:Track: Fan Panel\nTags: SC-10\n\nHave you been interested in m + aking Live2D models like the ones your favorite VTuber uses? Join Waffo an + d Koko as they walk you through how to get started making models in Live2D + Cubism! We'll cover everything you need to start your Live2D Cubism journ + ey\, from the initial sketch to the detailed physics! +LOCATION:Prog Panels - 445-446 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Chapter 3: Makeup from a MUA +DTSTART:20250419T150000 +DTEND:20250419T160000 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nLearn industry secrets about + long-lasting makeup\, how to maintain and clean all your tools and palett + es\, and all kinds of methods of applying your makeup whether it be for be + auty or SFX +LOCATION:Prog Panels - 340-342 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Cosplay Sewing for the Absolute Beginner +DTSTART:20250419T150000 +DTEND:20250419T160000 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nDo you want to learn sewing + but have no idea where to start? This panel is for you! In Cosplay Sewing + for the Absolute Beginner we will discuss all the things you need to know + as a beginning sewist\, including sewing terminology\, starting equipment\ + , types of fabrics and how to work with them\, and other tips to help you + begin your sewing journey. NO SEWING EXPERIENCE NECESSARY! +LOCATION:Prog Panels - 305 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:That's a Lot of (Emotional) Damage: A Therapist's Guide to Anime +DTSTART:20250419T150000 +DTEND:20250419T163000 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\n"We've all watched an anime c + haracter say or do something that made us think ""yeah\, you're mentally i + ll."" But have you ever wondered how a therapist would clinically diagnose + these characters in the office? Join Saige Ferko\, a social worker and an + ime fan\, as she psychologically analyzes all your faves!" +LOCATION:Prog Panels - 3AB +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:AMV History and Fundamentals: From 640KB to 64GBps +DTSTART:20250419T150000 +DTEND:20250419T170000 +CATEGORIES:AMV,SC-13 +DESCRIPTION:Track: Fan Panel\nTags: AMV\,SC-13\n\nDive into the fascinatin + g evolution of AMVs (Anime Music Videos) as we explore the intricate relat + ionships between technology\, thermodynamics\, copyright law\, and digital + media from the pre-Carter era to today. Discover how these elements have + shaped the art and science of AMV creation over decades. Plus\, get practi + cal tips on making your AMV suck less (we hope)! No warranty expressed or + inferred. +LOCATION:AMV Workshop - 613 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Cosplay Filmmaking 101: The Making of "Patsy's Quest" +DTSTART:20250419T151500 +DTEND:20250419T161500 +CATEGORIES:SC-10 +DESCRIPTION:Track: Fan Panel\nTags: SC-10\n\nEver want to turn your cospla + y into a film? Two PNW cosplayers as they share the story behind Patsy’s + Quest\, a short film born from their passion for cosplay and creativity. + This panel kicks off with a six-minute screening of the film\, followed by + insights into how they overcame challenges like scheduling\, fatigue\, an + d limited resources to bring their vision to life. Discover how their endu + ring friendship turned their shared love of cosplay into a fun and inspiri + ng project! +LOCATION:Prog Panels - 307 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Magical Girls IRL: Bringing Lyrical Rollerskater Magical Melody to + life! +DTSTART:20250419T151500 +DTEND:20250419T161500 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nDo you love Sailor Moon\, Ca + rd Captor Sakura\, and other Magical Girl manga and anime? Have you ever t + hought about bringing your very own magical girl story to life? Come join + us and explore how Lyrical Rollerskater Magical Melody\, a Seattle-based m + agical girl live action series\, came to be! From concepts to filming\, th + e cast of Magical Melody will take a look at the series\, reminisce about + the journey\, and answer questions from the fans! We’ll even finish off + the panel presentation with a performance by Magical Melody! +LOCATION:Prog Panels - 343-344 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Cosplay & Cosmetology +DTSTART:20250419T153000 +DTEND:20250419T163000 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nWelcome to Cosplay & Cosmeto + logy. This is a guide to makeup and wig styling lead by a cosplayer of 12 + years who is also a makeup artist and licensed cosmetologist in the state + of Michigan. +LOCATION:Prog Panels - 303 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Kpop/Idol RDP + Games +DTSTART:20250419T153000 +DTEND:20250419T163000 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nJoin Heartwav3 with an RDP*\ + , idol based trivia with prizes\, four corners**\, raffle\, and a mini get + to know the hosts/q&a!*RDP=Random dance play**four corners=game involving + finding peers with common interests +LOCATION:Prog Panels- 304 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Exploring the Philosophy of Science in Fullmetal Alchemist Brother + hood and Dr. Stone +DTSTART:20250419T154500 +DTEND:20250419T164500 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nWas Dr. Tucker actually a tra + gic figure undeserving of his fate? Do the horrors we see committed by Ame + stris possibly foreshadow the future of Senku’s Kingdom of Science? Find + out the answers to these questions and more in the panel: Exploring the P + hilosophy of Science in Fullmetal Alchemist Brotherhood and Dr. Stone! Thi + s 60 minute panel will discuss how both series depict the use of scientifi + c knowledge and what messages the series have about science in a broader s + ocietal and ethical context. +LOCATION:Prog Panels - 2AB +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Zapp's Great Big Nerd Debate Doors Open +DTSTART:20250419T160000 +DTEND:20250419T163000 +DESCRIPTION:Track: Fan Panel\n\n +LOCATION:SakuraDome - 6E +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Name That Anime Tune 2.0 +DTSTART:20250419T160000 +DTEND:20250419T170000 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nHow well do you know your an + ime music? Quickly identify songs from a rapid fire avalanche of openings\ + , endings\, inserts\, and even some surprises as you compete against the r + oom for prizes and glory! Built upon a custom game engine designed to dazz + le players and spectators alike\, this is an anime trivia experience unlik + e any other! +LOCATION:Prog Panels - 440-442 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:BL/Yaoi/Danmei Fans Unite! Career Tips\, Trivia\, & Merch Exchange +DTSTART:20250419T160000 +DTEND:20250419T173000 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\nAre you a die-hard BL/Yaoi/Da + nmei fan? Join us for trivia\, career tips for BL lovers\, and a merch giv + eaway & exchange. Bring your fandom energy—and maybe some goodies to sha + re and trade. +LOCATION:Prog Panels - 310 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:The Legend of Zelda: A Link to a Panel +DTSTART:20250419T160000 +DTEND:20250419T180000 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nFor nearly 40 years The Lege + nd of Zelda has brought adventurers on fantastic journeys filled with magi + c\, friends\, and a special feeling you can't find anywhere else. Come joi + n us as we take a look back at every game in the franchise. Revisit old fa + vorites\, and learn a bit about the games you might have missed. +LOCATION:Prog Panels - 445-446 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Come on and Kimono! +DTSTART:20250419T161500 +DTEND:20250419T171500 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\n"A quick run-through of kimo + no basics\, like: What styles are casual and which SUPER formal? What are + the ""necessary"" accessories? Are kimono one-size-fits-all? Is there a qu + ick way to know if a kimono was made for a man or woman? Does it matter??? + " +LOCATION:Prog Panels - 347-348 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Intro to Jirai and Ryousangata Fashion +DTSTART:20250419T161500 +DTEND:20250419T171500 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nHave you seen a cute style t + hat looks like lolita\, but it a little more casual? Or cute princess outf + its that you would like to wear or learn more about? Join in to see how th + ese newer styles have been all over jfashion! +LOCATION:Prog Panels - 305 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Bachelorette Robot Edition! +DTSTART:20250419T163000 +DTEND:20250419T173000 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\nIn a world where technology i + s advancing at light speed it is inevitable that we are going to start mar + rying robots at some point. So come join us to help you to determine which + type of robot is the right one for you! Ranging from types such as Spring + trap from Five Nights at Freddy's to Optimus Prime to Genos from One Punch + -Man. +LOCATION:Prog Panels - 443-444 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Do You Know Your Anime? +DTSTART:20250419T163000 +DTEND:20250419T173000 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\n2nd year in a row! Anime triv + ia with a twist. Volunteers will be interviewed and quizzed on all things + anime\, with the potential to win prizes and flex their knowledge in a fun + environment. Guess the tune\, badly described anime\, and general trivia + questions across the world of anime. +LOCATION:Prog Panels - 345-346 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Lucifer's Lounge: Hellaverse Dance Event! +DTSTART:20250419T163000 +DTEND:20250419T173000 +CATEGORIES:Dance,SC-MA +DESCRIPTION:Track: Fan Panel\nTags: Dance\,SC-MA\n\nJoin us for a devilish + ly fun dance event celebrating the worlds of Hazbin Hotel and Helluva Boss + ! Whether you're a fan of the music or love bringing your favorite charact + ers to life through cosplay\, this is your chance to let loose and dance w + ith fellow fans. Plus\, the one and only SCR4TCHK4T will be spinning an ex + citing mix of official songs from Hazbin and Helluva\, along with fan-crea + ted hits that bring the fandom to life. Come vibe\, dance\, and enjoy the + beats in a friendly\, high-energy atmosphere\, where you can express your + love for the series and share the experience with fellow sinners! +LOCATION:Dance Lessons - 420-422 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Riichi Mahjong 101: How Come I Can't Win? +DTSTART:20250419T163000 +DTEND:20250419T173000 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nSo you've been sucked into R + iichi Mahjong. Whether it was Yakuza\, Final Fantasy 14\, or maybe you stu + mbled across Mahjong Soul in the wild\, mahjong has gotten a lot more popu + lar in the US in recent years. But\, that hasn't made the rules clear to a + ll of the new players. If you're not sure what you're doing at the table a + nd want an easy to understand guide then this panel is for you. I'll be go + ing over the basic mechanics of the game\, basic terminology\, some easy t + ips for improving\, and answering the question in the title. As a spoiler\ + , the answer is your hand probably doesn't have any Yaku. What does that m + ean? Come and find out! +LOCATION:Prog Panels - 343-344 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:The Horror of Godzilla +DTSTART:20250419T163000 +DTEND:20250419T173000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\n +LOCATION:Prog Panels - 340-342 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Zapp's Great Big Nerd Debate! +DTSTART:20250419T163000 +DTEND:20250419T180000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\n +LOCATION:SakuraDome - 6E +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Inuyasha & Trauma Informed Care +DTSTART:20250419T164500 +DTEND:20250419T174500 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nCome learn about the principl + es of trauma informed care through the lens of one of your favorite charac + ters\, Inuyasha! We'll discuss how Inuyasha's trauma has informed his beha + vior and connect trauma informed care to the positive interactions that le + d to his character development. Open to all\, healthcare providers and tho + se interested in learning about caring for loved ones with trauma. +LOCATION:Prog Panels- 304 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Fanfic Mad Libs +DTSTART:20250419T164500 +DTEND:20250419T184500 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\nAn interactive panel about fa + nfiction\, where audience members help us collaboratively create anime and + game fanfic Mad-Libs style\, and we’ll do our best to act it out! Come + learn about popular tropes\, test your knowledge with trivia\, and help us + create the wackiest one-shots around! +LOCATION:Prog Panels - 307 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Harmonic Convergence: Beat Sync as a Narrative Tool in AMVs +DTSTART:20250419T170000 +DTEND:20250419T180000 +CATEGORIES:AMV,SC-13 +DESCRIPTION:Track: Fan Panel\nTags: AMV\,SC-13\n\nHave you ever heard a so + ng in an AMV and felt it just belongs with the anime\, even though the mus + ic wasn't originally part of the show? As AMV editors increasingly blend g + enres—using everything from EDM to foreign music—there's been a shift + away from relying solely on lyric sync to tell a story. Instead\, many edi + tors use a technique called beat sync\, where the rhythm of the music itse + lf drives the narrative. Join TheDestineeAMV as they explore how beat-sync + can transform AMVs and discover how different aspects of beat-sync work t + ogether to elevate storytelling and create powerful emotional experiences. +LOCATION:AMV Workshop - 613 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Anime Jeopardy +DTSTART:20250419T170000 +DTEND:20250419T183000 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\nA beloved classic meets an an + ime twist\, it's Anime Jeopardy! An engaging take on the game everyone kno + ws\, we have restructured Jeopardy to suit a panel with complete audience + participation. All your favorite anime\, both old and new\, are represente + d in this live rendition of the game. Language and questions are suited fo + r participants over the age of 13. +LOCATION:Prog Panels - 3AB +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:How To (Mostly) do a Panel +DTSTART:20250419T170000 +DTEND:20250419T190000 +CATEGORIES:SC-10 +DESCRIPTION:Track: Fan Panel\nTags: SC-10\n\nThis is a panel that will hel + p illuminate how to brainstorm\, formulate\,categorize\, and pitch a panel + for a convention! +LOCATION:Prog Panels - 303 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Crossing the Streams: A Hololive Fan Panel +DTSTART:20250419T173000 +DTEND:20250419T183000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nDo you like idols? Do you lik + e VTubers? Do you just want context for those clips your friends keep send + ing you? Now's your chance to learn all about Hololive\, the VTuber idol g + roup you can enjoy anywhere--from conventions and concert venues throughou + t the US and Asia to the comfort of your own home! Bring your penlights fo + r an hour of music\, artwork\, learning\, and fun! +LOCATION:Prog Panels - 2AB +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:When the Ship Isn't Just a Ship: A Freudian Psychoanalysis of Outl + aw Star +DTSTART:20250419T173000 +DTEND:20250419T183000 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\nOutlaw Star: it's a rip-roari + ng space western. It's a young man's coming-of-age story. It's... a parabl + e about castration anxiety? Perhaps Gene Starwind's search for the Galacti + c Leyline is actually a search for healthy masculinity. Let's take a semi- + tongue-in-cheek look at Outlaw Star through a psychoanalytic lens\, where + a gun is never just a gun. +LOCATION:Prog Panels - 440-442 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Intro to Manhwa (and webtoons!) +DTSTART:20250419T173000 +DTEND:20250419T190000 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nManhwa\, in the form of webt + oons (webcomics)\, have been steadily rising as part of Korea’s globaliz + ation of pop culture. But what is manhwa\, and what is its relation to web + toons? What stories and themes are most popular? And how do these reflect + Korean culture? Join Dr. Emily Hall in an exploration of the origin and im + pact of manhwa\; influential artists\, stories\, and genres\; and webtoons + worth exploring. +LOCATION:Prog Panels - 305 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Kami\, Buddhas and Tao\, Oh My! +DTSTART:20250419T174500 +DTEND:20250419T184500 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nLearn about the mythological + roots of anime and the blending of Shinto\, Buddhism\, and Taoism in ancie + nt Japan. Now with more Touhou! +LOCATION:Prog Panels - 343-344 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Mech Identifaction Quiz Returns! +DTSTART:20250419T180000 +DTEND:20250419T183000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nGuess the mech! Get points fo + r guessing a robot from a multiple choice list. Get more points by guessin + g it before the multiple choice phase! If you can guess what it is just by + its shape\, you’ll get the most points! Of course\, what game would be + complete without prizes? The top 3 scorers will win a patch from the Unifi + ed Fictional Earth Space Forces! +LOCATION:Prog Panels- 304 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:From Idea to Reality: Cosplay and Fashion Design +DTSTART:20250419T180000 +DTEND:20250419T190000 +CATEGORIES:SC-10 +DESCRIPTION:Track: Fan Panel\nTags: SC-10\n\nWhen we’re inspired by the + fandoms we love\, we often want to bring that inspiration to life with a l + ittle extra flavor of our own! Creating a custom design can be an exciting + way to bring a little bit of yourself and your own unique perspective int + o cosplay. Or perhaps you’d like to go a slightly different direction an + d design something that’s less of a cosplay and more of a fashion statem + ent? In this panel\, we’ll be talking about how we approach design\, and + how you can get started too! +LOCATION:Prog Panels - 347-348 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Hot Anime Men in your Area +DTSTART:20250419T180000 +DTEND:20250419T190000 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\nDo you like a good daddy? Let + s talk about it. We're here to define what makes a good daddy\, and what d + ifferentiates them from other male archetypes. Come join us as we pick at + your favorite characters and decide if they are a daddy\, a baby girl or m + aybe even a male wife. +LOCATION:Prog Panels - 443-444 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Kpop PC trading +DTSTART:20250419T180000 +DTEND:20250419T190000 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nStill looking for that last + PC to add to your collection? Bring your photocards and come trade with fe + llow Kpop fans. +LOCATION:Prog Panels - 310 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Shōjo OVAs of the 1990s +DTSTART:20250419T180000 +DTEND:20250419T190000 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\nOriginal Video Animation\, al + so called OVAs\, had their golden era in the 1980s to 1990s. The 90s\, esp + ecially\, had a litany of Shōjo OVAs released. Come explore the wild worl + d of Original Video Animation. From forgotten gems like A-Girl to well kno + wn classics like Fushigi Yuugi’s special episode releases- all will be c + elebrated in this panel on 1990s Shōjo! +LOCATION:Prog Panels - 340-342 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:The Great Anime Debate 2: Electric Boogaloo +DTSTART:20250419T180000 +DTEND:20250419T190000 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\nWe're back for the sequel\, w + e've got new topics and you've got hot takes. Join us for a round of new a + nd improved flash debates on some of anime's sillier controversies. +LOCATION:Prog Panels - 345-346 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Intro to Belly Dance +DTSTART:20250419T180000 +DTEND:20250419T193000 +CATEGORIES:Dance,SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: Dance\,SC-ALL\n\nHave you ever wanted + to shimmy and shake until you couldn’t any more? Move your body in a cre + ative way to express yourself for skits or just in general? Look no furthe + r! Join Eekie from Montana’s own world fusion belly dance troupe Dark Mo + on Fusion and learn some of the basics of belly dance. World Fusion belly + dance encompasses different forms of dance ranging from classical Cabaret + style all the way to ATS\, to jazz\, modern\, and everything in-between.No + prior experience necessary\, bring some water and be ready to move! +LOCATION:Dance Lessons - 420-422 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Waluigi Time! +DTSTART:20250419T183000 +DTEND:20250419T193000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nWaluigi’s debut game was Ma + rio Tennis\, but outside of being the primary antagonist in Mario DDR he h + as been criminally underused by Nintendo. We’re going to fix that. After + rigging a game of Mario Tennis against Miyamoto we have won the rights to + the character and are ready to breathe life into countless new potential + Waluigi game formats: from “Waluigi’s Mansion” to “Waluigi’s Med + ical Bills” we’ll be sure to throw enough games at the wall to ensure + one will stick. +LOCATION:Prog Panels - 445-446 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:I'll Never be THAT Good: Arcade Rhythm Games for the Apprehensive +DTSTART:20250419T184500 +DTEND:20250419T194500 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\n"Have you ever wandered throu + gh the rhythm game section at a convention or arcade\, heard the thunderin + g beats\, seen the flashing lights\, and thought\, ""Wow\, that looks cool + ... but I'd never be that good""? This panel is here to prove you wrong an + d guide you into the lively and welcoming world of arcade rhythm games!Joi + n us as we demystify the world of rhythm games and make them approachable + and fun for total beginners. Whether you're intimidated by the intense pla + yers who seem like they've memorized every note\, or you’re not sure whe + re to start\, this panel is the perfect launching point!Everyone starts so + mewhere\, and this panel is all about making that ""somewhere"" a little l + ess scary and a lot more approachable. So\, come join us\, pick up the bea + t\, and discover the joy of rhythm games—you might just surprise yoursel + f with your improvement!" +LOCATION:Prog Panels- 304 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Anime so bad it's good ... maybe +DTSTART:20250419T190000 +DTEND:20250419T203000 +DESCRIPTION:Track: Fan Panel\n\nWe all know about great animation\, wonder + fully crafted stories\, and breathtaking performances. But on the other en + d of the spectrum is camp! Media that is so bad it's good. Join us to go o + n a tour of some of the campiest anime and some straight-up schlock anime. +LOCATION:Prog Panels - 3AB +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Gei Komi: A Visual Journey Through the History of Gay Erotic Art i + n Japan +DTSTART:20250419T190000 +DTEND:20250419T203000 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\nCome learn about gei komi (ak + a bara) and all its thick-bodied history. CONTENT WARNING: muscles\, beefc + akes\, chubsters\, and more \;) +LOCATION:Prog Panels - 2AB +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Its 2008 and you Definitely arent a furry- but- +DTSTART:20250419T190000 +DTEND:20250419T203000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nDid you think you weren't a f + urry in the early 2000s...except you most definitely were? Learn how we go + t to this point: the denial\, the DeviantArt chaos\, and how a combination + of Warrior Cats\, Neopets\, and Furbies most definitely turned you furry! +LOCATION:Prog Panels - 307 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Cosplay Miscellany: Odds and Ends to Level Up Your Cosplay +DTSTART:20250419T191500 +DTEND:20250419T201500 +CATEGORIES:SC-10 +DESCRIPTION:Track: Fan Panel\nTags: SC-10\n\nCome join master crafters and + award winning cosplayers for a panel on… all the stuff that never makes + it in the other panels! How do you color your eyebrows? How do you weathe + r your pieces? What do you do with your wallet? What’s a line of action + and why should you think about it when you pose? Come with questions - we + have answers! +LOCATION:Prog Panels - 303 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Anime Jeopardy +DTSTART:20250419T191500 +DTEND:20250419T204500 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nCome and try your hand at jeo + pardy asking questions about anime\, video games\, and a little bit of pop + culture. Optional audience participation will also be at the panel so eve + ryone is included. +LOCATION:Prog Panels - 347-348 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:The Showa Idol Groove +DTSTART:20250419T191500 +DTEND:20250419T211500 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nStep back into the glitz and + glamour of 1980s Japan\, where the archetype of the Pop Idol took the Show + a era by storm! Immerse yourself in the world of Idol culture and Kayokyok + u\, the vibrant musical genre that defined a generation with its irresisti + ble melodies\, iconic artists\, cultural impact\, and its surprising conne + ctions to City Pop! Perfect for music lovers and nostalgia seekers alike\, + join us as we explore why this era is celebrated as the Golden Age of Ido + ls! +LOCATION:Prog Panels - 343-344 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:18+ Lip Sync Battle Doors Open +DTSTART:20250419T193000 +DTEND:20250419T200000 +DESCRIPTION:Track: Fan Panel\n\n +LOCATION:SakuraDome - 6E +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Cosplay Wrestling Federation: Sakurumble V! - Day 2 Doors Open +DTSTART:20250419T193000 +DTEND:20250419T200000 +DESCRIPTION:Track: Fan Panel\n\n +LOCATION:Relations Panels/Premiers - Ballroom 3 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Denji: He's Literally Me +DTSTART:20250419T193000 +DTEND:20250419T203000 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\n"While you were watching Chai + nsaw Man\, did you ever see Denji and say ""Woah\, he's literally me!\,"" + or were you ever wondering what Denji represents in general? In this panel + \, we'll be discussing the character of Denji\, wheres his character been + and where its possibly going\, and if there's any greater meaning to admit + ting that you relate to Denji." +LOCATION:Prog Panels - 340-342 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:In Defense of the Legend of Korra +DTSTART:20250419T193000 +DTEND:20250419T203000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nThe Legend of Korra is genera + lly considered a disappointing sequel to the widely beloved Avatar: The La + st Airbender\, but it is often overlooked for its challenging context and + groundbreaking elements. This panel is hosted by PNW-based educator and fi + lmmaker Lee Ngo\, an ardent fan of Korra to the end. +LOCATION:Prog Panels - 345-346 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Twisted Wonderland: Battle of the Dorms edition +DTSTART:20250419T193000 +DTEND:20250419T210000 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\nIt is student game night here + at Night Raven College! Which Dorm do you suppose is the best? Lets us se + e! Join your Dorm Leader in a battle of wits with Night Raven’s first ev + er\, Battle of the Dorms! A friendly game of Trivia will decide which Dorm + reigns supreme above all! +LOCATION:Prog Panels - 443-444 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:A Study of Tastsuki Fujimoto: The Man Behind Chainsaw Man +DTSTART:20250419T200000 +DTEND:20250419T210000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nFollowing the release of 2022 + 's Chainsaw Man and the hit 2024 film Look Back\, Tatsuki Fujimoto has qui + ckly made a name for himself as one of the premiere creators of the manga + industry. With his bold\, cinematic visual style\, and gripping\, eccentri + c storytelling\, it is rare to find a creator that captures the hearts of + millions of fans all over the world\, seemingly writing whatever he wants! + If you are interested in exploring the underlying themes of works such as + Chainsaw Man or Fire Punch\, how they relate to works like Spy x Family o + r Dandadan\, or even just learning some funny anecdotes from this largely + mysterious figure\, then join in for some lively discussion! +LOCATION:Prog Panels- 304 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Top 10 Sexiest FFXIV Characters +DTSTART:20250419T200000 +DTEND:20250419T210000 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\nWe asked\, you answered. 100 + responses from our survey. And tonight\, we will go over who you all think + are the Top 10 sexiest FFXIV characters! +LOCATION:Prog Panels - 310 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Who is the best character in Ace Attorney? (And why it is Dick Gum + shoe) +DTSTART:20250419T200000 +DTEND:20250419T210000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nDo you have opinions about Ac + e Attorney? Do you want to shout “OBJECTION!” at someone because they + like a character more than someone else? Join self-claimed Gumshoe Stan\, + A Certain Pole in his friendly debate as to why he thinks Dick Gumshoe rei + gns supreme among the franchise’s cast\, and if you are so bold\, engage + in a courtroom-style challenge to truly determine the best character! +LOCATION:Prog Panels - 305 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:18+ Lip Sync Battle +DTSTART:20250419T200000 +DTEND:20250419T220000 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\n +LOCATION:SakuraDome - 6E +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Anime Survivor +DTSTART:20250419T200000 +DTEND:20250419T220000 +CATEGORIES:SC -13 +DESCRIPTION:Track: Fan Panel\nTags: SC -13\n\nAnime Survivor takes your fa + vorite anime characters and strands them on an island where they have to c + ompete until only one is left. We utilize a web-based simulator to find ou + t once and for all which anime character has what it takes to be the sole + survivor. +LOCATION:Prog Panels - 445-446 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Cosplay Wrestling Federation: Sakurumble V! - Day 2 +DTSTART:20250419T200000 +DTEND:20250419T220000 +DESCRIPTION:Track: Fan Panel\n\n +LOCATION:Relations Panels/Premiers - Ballroom 3 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Cultural Cross Polination +DTSTART:20250419T203000 +DTEND:20250419T210000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nWhat’s the most obscure ani + me reference you’ve ever seen in a cartoon? What if I told you that in s + ome conference in Japan\, there was probably a presentation asking “What + ’s the most obscure western reference you’ve ever seen in an anime?” + . The funny thing is\, that as time goes on\, these references are becomin + g a flat circle\, constantly inspiring each other? Well\, this isn’t goi + ng to be as serious as I make it all sound\, it’s mostly going to be poi + nting out fun little nods back and forth between East and West! +LOCATION:Prog Panels - 303 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Make Fandom Friends: Trigun +DTSTART:20250419T203000 +DTEND:20250419T213000 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\nJoin us for an hour of Trigun + -themed games and activities designed to help you get to know your fellow + fans! +LOCATION:Workshop - 330 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Improvaganza +DTSTART:20250419T203000 +DTEND:20250419T220000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nAn different kind of improv c + omedy show from the panelists who bring you Whose Line is it Anyway. With + all new games lined up such as Mission Improbable\, Time Warp\, Film Noire + \, and more. Come join us for all the laughs and fun. +LOCATION:Prog Panels - 440-442 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Tales from the Well: Spooky Stories +DTSTART:20250419T204500 +DTEND:20250419T214500 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nFrom the group that brought y + ou Tales from Toilet\, this year we're going to talk about another hole in + the ground: wells. Many things fall down them\, and sometimes things craw + l out of them. Kagome got a boyfriend\, Samara gets you\, but there are ma + ny other tales\, especially spooky\, we'll dive into. Join us\, if you dar + e! +LOCATION:Prog Panels - 307 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:setup +DTSTART:20250419T210000 +DTEND:20250419T213000 +DESCRIPTION:Track: Fan Panel\n\nsetup and doors for Defend Your Husbando +LOCATION:Prog Panels - 310 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Colors of the Rainbow: LGBT+ Anime +DTSTART:20250419T210000 +DTEND:20250419T220000 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\nAnime and manga have a long h + istory of diverse storytelling. Included is many varied depictions of the + LGBT+ community over the years. Come learn how and why those characters de + veloped over time. With everything from the Heian and Edo Periods\, to the + anime Princess Knight\, Revolutionary Girl Utena\, and even Twilight Out + of Focus. Come see the vibrant rainbow in Japanese animation! +LOCATION:Prog Panels - 340-342 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Hear Me Out +DTSTART:20250419T210000 +DTEND:20250419T220000 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\nIs there a character from an + anime or other piece of media that you’ve got the hots for\, even if the + re’s no logical explanation for it? We want to hear your most galaxy bra + ined\, unhinged takes on which characters (or abstract concepts) you have + a crush on! +LOCATION:Prog Panels - 3AB +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Help! Is my favorite anime … problematic? +DTSTART:20250419T210000 +DTEND:20250419T220000 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\nAnime fans often debate over + the "problematic" aspects of their favorite anime\, but what does that mea + n? Can something problematic still be appreciated? Learn from PNW-based pa + nelist Lee Ngo as he shares the story of how he almost abandoned his own f + avorite anime but came up with a helpful solution. +LOCATION:Prog Panels - 345-346 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:The World of Internet Based Sampling Music +DTSTART:20250419T210000 +DTEND:20250419T220000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nEver wondered where those wei + rd choppy cut up songs on TikTok came from? Are you interested in breakcor + e? Come check out the World of Internet-Based Sampling Music! +LOCATION:Prog Panels - 347-348 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Sakura-Con Cosplay Talent Show +DTSTART:20250419T210000 +DTEND:20250419T223000 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nEveryone knows that cosplaye + rs are talented-- many are masters of sewing\, crafting\, wig styling\, mo + deling\, and performing. But... can they juggle? Play guitar? Sing? Mime?? + Come celebrate your fellow Sakura-Con attendees as they show off a diverse + range of exceptional and secret talents! +LOCATION:Prog Panels - 2AB +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:#FrierenSweep? Behind the scenes of the 2024 /r/anime awards! +DTSTART:20250419T211500 +DTEND:20250419T221500 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nJoin some of this year's juro + rs and hosts as we go through the results of the /r/anime awards! These u + nique awards feature two winners for each category\, one voted on by reddi + tors and another by a panel of judges. Featuring 5 representatives from th + is year's awards\, come hear our spicy opinions on the results! +LOCATION:Prog Panels- 304 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Your Babygirl is Mid +DTSTART:20250419T213000 +DTEND:20250419T223000 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\n"You’ve heard of “Your Wa + ifu is Trash”\, now get ready for “Your Babygirl is Mid”. You may ha + ve seen the term floating around fandom and found yourself asking: what do + es ""babygirl"" mean? Why are most of the characters I see being referred + to as babygirl middle aged men? Why are they so sad?Well worry not--our pa + nel of experts are here to provide the definitive guide on what makes a ch + aracter a babygirl\, as well as outline common misconceptions around its u + se. With such guiding traits as “Old”\, “Has Issues”\, and “want + ing to see them in a maid dress”\, by the end of this panel you’re sur + e to have the tools you need to find the babygirl that’s right for you." +LOCATION:Prog Panels - 305 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Defend Your Husbando +DTSTART:20250419T213000 +DTEND:20250419T230000 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\nHave the chance to challenge + others by defending your anime husbando!!! There will be judges and audien + ce choice!Make sure your choice of Husbando is 18+If you are unsure come t + o the judges and we'll let you know! +LOCATION:Prog Panels - 310 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:"Escapism and Mental Health: From Iyashikei to ""Cozy Games""" +DTSTART:20250419T220000 +DTEND:20250419T230000 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\n"In the past decade the anime + scene has been abuzz with flashy escapist fantasy adventures known as Ise + kai- meanwhile\, elsewhere in the pop culture realm\, the western world ha + s grown increasingly fascinated with media that captures living at a slowe + r pace and celebrates a romanticization of the ordinary. Japanese games su + ch as the Animal Crossing and Harvest Moon series\, anime like Laid Back C + amp and Aria represent the Iyashikei or ""healing"" genre- A mode of story + telling that focuses on eliciting warm\, fuzzy feelings in their audiences + . In this panel\, we will discuss the common tropes and themes utilized by + this genre and the cultural impacts it has had in both Japan and the Unit + ed States." +LOCATION:Prog Panels - 303 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:アチェ Walks Japan: How I walked across Japan in 200 days +DTSTART:20250419T221500 +DTEND:20250419T231500 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\n3500 kilometers\, covered in + 200 days of non-stop walking\, and it was raining half the time. How did I + keep going? I got lost in forests\, climbed the highest mountains\, swam + with whales\, meditated with monks\, experienced at least a 150 different + Onsens and hotels. How did I record it? (Yes\, I have a lot of jaw-droppin + g footage!) And what on earth possessed me to do something this ridiculous + ? Come\, and find out! +LOCATION:Prog Panels - 307 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Zapp's Spaceship of Love: Great Big PERV Debate! Doors Open +DTSTART:20250419T223000 +DTEND:20250419T230000 +DESCRIPTION:Track: Fan Panel\n\n +LOCATION:SakuraDome - 6E +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Is a Sandwich Enough?' The Cruel Humor of Needs in Chainsaw Man +DTSTART:20250419T223000 +DTEND:20250419T233000 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\nA satirical but serious look + at everyone's favorite devil hunters from Chainsaw Man\, and how our socie + tal structures prevent them from fulfilling basic and emotional needs. WAR + NING: Spoilers for the Public Safety saga! +LOCATION:Prog Panels- 304 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Himbology 101 +DTSTART:20250419T223000 +DTEND:20250419T235900 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\nDo you like dumb\, yet incred + ibly attractive fictional men? Do you want to learn more about them or jus + t appreciate them more? Then come on down to this fun\, yet educational pa + nel on the history\, love\, and appreciation of himbos in anime and pop cu + lture! +LOCATION:Prog Panels - 3AB +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Is It Okay to Own a Bangboo? A Look at ZZZ's Friendly Companions +DTSTART:20250419T230000 +DTEND:20250420T000000 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\nDo you like Bangboo? Do you t + hink they deserve rights or are you just a shaped friend enjoyer? Come joi + n our panel to wrestle with your moral compass as we look at the various w + ays the world of Zenless Zone Zero treats it bouncy computers. +LOCATION:Prog Panels - 305 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Wrong Answers Only: Pokemon Edition +DTSTART:20250419T230000 +DTEND:20250420T003000 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\nJoin us in this zany\, crazy\ + , and colorful version of the Pokemon Trivia Gameshow! This Whose Line is + it Anyway inspired competition will put you up against your competitors to + see who can come up with the best incorrect answers. Show off your Pokemo + n knowledge (or lack thereof)\, laugh\, facepalm\, and maybe win a prize o + r two! Remember\, the points don’t matter and everything is made up! +LOCATION:Prog Panels - 2AB +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Zapp's Spaceship of Love: Great Big PERV Debate! +DTSTART:20250419T230000 +DTEND:20250420T003000 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\n +LOCATION:SakuraDome - 6E +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Nu:Carnival: The Morvay and Aster Show +DTSTART:20250419T234500 +DTEND:20250420T004500 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\n"The Grand Sorcerer has intro + duced an out of this world idea known as ""gameshows"" to his trusted fami + liars. How enticing! How spicy <3! Come join Eiden\, Aster\, and Morvay fo + r the Most Ultimate\, Deluxe\, Supremo Quiz Gayme Show where you can test + your Nu:Carnival knowledge!" +LOCATION:Prog Panels - 307 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Is It Okay to Own a Bangboo? A Look at ZZZ's Friendly Companions +DTSTART:20250419T230000 +DTEND:20250420T000000 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\nDo you like Bangboo? Do you t + hink they deserve rights or are you just a shaped friend enjoyer? Come joi + n our panel to wrestle with your moral compass as we look at the various w + ays the world of Zenless Zone Zero treats it bouncy computers. +LOCATION:Prog Panels - 305 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Wrong Answers Only: Pokemon Edition +DTSTART:20250419T230000 +DTEND:20250420T003000 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\nJoin us in this zany\, crazy\ + , and colorful version of the Pokemon Trivia Gameshow! This Whose Line is + it Anyway inspired competition will put you up against your competitors to + see who can come up with the best incorrect answers. Show off your Pokemo + n knowledge (or lack thereof)\, laugh\, facepalm\, and maybe win a prize o + r two! Remember\, the points don’t matter and everything is made up! +LOCATION:Prog Panels - 2AB +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Zapp's Spaceship of Love: Great Big PERV Debate! +DTSTART:20250419T230000 +DTEND:20250420T003000 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\n +LOCATION:SakuraDome - 6E +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Nu:Carnival: The Morvay and Aster Show +DTSTART:20250419T234500 +DTEND:20250420T004500 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\n"The Grand Sorcerer has intro + duced an out of this world idea known as ""gameshows"" to his trusted fami + liars. How enticing! How spicy <3! Come join Eiden\, Aster\, and Morvay fo + r the Most Ultimate\, Deluxe\, Supremo Quiz Gayme Show where you can test + your Nu:Carnival knowledge!" +LOCATION:Prog Panels - 307 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Blue Archive Rant Session Vol. 2 +DTSTART:20250420T001500 +DTEND:20250420T011500 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\n"And then Arona turned around + and said\, ""This truly was the Blue Archive of all time\, wasn't it\, Se + nsei.""Join niconicowhee once again for another exciting installment of th + e Blue Archive Rant Session! Expect enthralling discussions (rants) on can + celled projects\, brainrot\, and anything Kivotos-related until we run out + of time. Newcomers and veteran Senseis are welcome!" +LOCATION:Prog Panels - 3AB +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Danmei for dummies +DTSTART:20250420T003000 +DTEND:20250420T013000 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\nAn interactive and informativ + e panel on the rising popularity of danmei in the west! It informs the bri + ef history\, where to read\, how to get into it\, proper pronunciation and + terminology. There's a little quiz at the end and prizes. +LOCATION:Prog Panels- 304 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:The Anime OnlyConnect Game Show +DTSTART:20250420T003000 +DTEND:20250420T013000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nBased on the British Game Sho + w\, OnlyConnect. Get ready to put your anime knowledge and puzzle solving + ability to the test. In this event\, teams compete in a game of finding co + nnections between seemingly unrelated anime clues. +LOCATION:Prog Panels - 305 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Exploring VTubing/Streaming - A Discussion In Content Development +DTSTART:20250420T093000 +DTEND:20250420T103000 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\nJoin us for an in-depth discu + ssion on the streaming space! Discover what challenges you may face and ho + w to navigate them. +LOCATION:Prog Panels - 310 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Conserve\, Cannibalize\, Cosplay +DTSTART:20250420T100000 +DTEND:20250420T103000 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nCosplay veterans & newbies\, + have you ever thought about how much waste we produce? Are you filled wit + h dread knowing that eventually that adorable outfit might end up in the l + andfill? From buying to making\, we create so much garbage\, and it's daun + ting to think about where to even start. Worry less\, in this panel we're + going to start the conversation on conservation\, with small easy steps we + can make that helps us all in the long run. +LOCATION:Prog Panels- 304 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:2010s Anime Music Trivia +DTSTART:20250420T100000 +DTEND:20250420T110000 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nCalling all Demon Slayers\, + U.A. Heroes\, and Survey Corps members! We want you to participate in our + 2010s Anime Music Trivia! Listen to your favorite anime music and correctl + y answer the anime title for a wide variety of songs. The top three (3) co + ntestants who solved the most questions will receive an assortment of priz + es. Stay focused and fight on! +LOCATION:Prog Panels - 347-348 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Autobots Ikuzou!: A Look at Japanese Transformers +DTSTART:20250420T100000 +DTEND:20250420T110000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nTransformers is a franchise t + hat has been around for over forty years. but did you know that for most o + f that time the series was almost completely different in Japan? Take some + time to explore not just the Japanese origins of Transformers\, but also + the exclusive anime series that never released here in the States! +LOCATION:Prog Panels - 340-342 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Delicious in Dungeon: Make your own Monster! +DTSTART:20250420T100000 +DTEND:20250420T110000 +CATEGORIES:SC-10 +DESCRIPTION:Track: Fan Panel\nTags: SC-10\n\n!!This is an Audience Interac + tive Panel!!Help Laios & friends create the right blend of monsters for a + perfect chimera! (And then eat it??)Call upon all your powers of creativit + y and crayon drawing to help us create a masterpiece of monsterly goodness + - but don't forget to think about functionality! (And taste!) +LOCATION:Prog Panels - 443-444 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:How to Idol: Dance Workshop +DTSTART:20250420T100000 +DTEND:20250420T110000 +CATEGORIES:Dance,SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: Dance\,SC-ALL\n\nAre you interested in + learning idol dances? Come stop by to learn tips and tricks from experien + ced dancers and cosidols! We'll be teaching a short dance from Project Sek + ai as we talk about stage presence\, formations\, and counting! +LOCATION:Dance Lessons - 420-422 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:ROM Modding to Fan Translate a Video Game: Threedux +DTSTART:20250420T100000 +DTEND:20250420T110000 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nJonko of the Haroohie Transl + ation Club is back for another round of ROM modding to fan translate a vid + eo game! This time\, we'll be covering a couple of different games and how + we prepared them for translation. Come enjoy! +LOCATION:Relations Panels/Premiers - Ballroom 2 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Whose Initiative is It Anyway? +DTSTART:20250420T100000 +DTEND:20250420T110000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nJoin the Sakura Rangers on an + epic adventure that we are making up on the spot. Our talented cast of im + provisational artists are ready to delight you in a live D&D session made + of suggestions from you. Audience participation is a must. So come and joi + n us for a panel of big dice rolls and big laughs. +LOCATION:Prog Panels - 307 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Why Your Live Action Adaptations Will Fail You +DTSTART:20250420T100000 +DTEND:20250420T110000 +CATEGORIES:SC-10 +DESCRIPTION:Track: Fan Panel\nTags: SC-10\n\nLive-action film adaptations + of manga and anime are often terrible. Why? Is there something fundamental + ly wrong with them\, or is there something amiss in the process? Learn fro + m PNW panelist Lee Ngo about what's getting lost in adaptation and whether + there's any hope. +LOCATION:Prog Panels - 440-442 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Worldbuilding in Anime +DTSTART:20250420T100000 +DTEND:20250420T110000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nHave you ever had an anime ju + st... whisk you away to another world? Somewhere that felt not just real\, + but somehow\, intangibly more than that? Let's explore anime that excel a + t building these worlds\, and look at what makes them tick! +LOCATION:Prog Panels - 3AB +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Related Picture of Gen Urobuchi +DTSTART:20250420T100000 +DTEND:20250420T113000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nAn in-depth critical analysis + of two specific anime by (in)famous writer Gen Urobuchi: Puella Magi Mado + ka Magica and Aldnoah.Zero that examines the direct inspirations behind th + ese works: namely\, Kamen Rider Ryuki and Gundam 079/Gundam Zeta. +LOCATION:Prog Panels - 303 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Cosplay Swap Meet +DTSTART:20250420T100000 +DTEND:20250420T120000 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nSwap those cosplays\, wigs\, + and props sitting in the back of your closet for new treasures. This is m + eant to be a swap session\, no buying and selling permitted. Please bring + an item to grab an item. +LOCATION:Workshop - 330 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Princess Tutu and Beyond: Making Ballet Inspired Cosplays +DTSTART:20250420T101500 +DTEND:20250420T111500 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nFrom sparkly tutus to lovely + bodices\, ballet costumes have inspired costume design in a variety of me + dia. Learn the intricacies in the construction of ballet costumes\, their + applications to your own cosplays\, fabric and pattern recommendations\, a + nd tips and tricks from a ballet teacher and cosplayer for how to look and + feel your best. +LOCATION:Prog Panels - 305 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Ita Bag Contest! +DTSTART:20250420T101500 +DTEND:20250420T121500 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nWe all love showing off our + fandom collections creatively! What's more perfect than an ita bag?Our lov + ely host Per_Fekshen has assembled dozens of ita bags with her favorite th + emes! She loves fandom specific bags! The beginning of this panel will be + a short presentation about ita bags and some creative ideas to really pers + onalize your bags!And then we get to a fun little ita bag contest! With PR + IZES!!RULES:1. There is no sign up for this contest. To preserve time ther + e will be a maximum of 50 entrants! Entry tickets will be given at the doo + r so line up early if you'd like to enter.2. The judging time is one and a + half hours after the panel has been presented. Entrants will then line up + to be judged.3. One bag per entrant. You'll have one minute 30 seconds to + explain your ita bag vision ! Please try to stick to the time limit.4. Ba + gs should be assembled by the contestant. A photo will be taken of the bag + and contestant's socials or contact information.5. Bags are to be judged + on organization\, layout\, and creativity.1st Place // 1 large ita bag & s + et of ita bag lights 2nd Place // 1 medium ita bag tote 3rd Place // 1 sma + ll ita bag purseAdditional prizes may be added !WINNERS WILL BE CONTACTED + ON THE SAME DAY OF THE CONTEST. YOU DO NOT NEED TO STAY AFTER YOU ARE JUDG + ED\, WINNERS WILL BE CONTACTED TO COLLECT THEIR PRIZE. +LOCATION:Prog Panels - 345-346 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Behind The Judges Table +DTSTART:20250420T110000 +DTEND:20250420T120000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nWhether you’re new to compe + tition or a seasoned veteran\, judging can be a nerve-wracking affair. Joi + n MatchaBlossom.co s as we break down how judging wor + ks from both sides of the table\, what to expect\, and how to make the mos + t of your time. Come with your burning questions as we’re here to share + what we’ve learned in our decades of competing\, judging\, and contest r + unning. +LOCATION:Prog Panels- 304 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:My Hero Academia Literature Club +DTSTART:20250420T110000 +DTEND:20250420T120000 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\nAfter a decade of publication + \, My Hero Academia is complete. This provides literary scholars the first + opportunity for a holistic and comprehensive reading of the manga\, spin- + offs\, and all supplementary texts. Together\, we will approach the series + earnestly and seriously as a work of literature\, and attempt to derive t + he meaning of the work that we've loved for the last ten years. Expect ful + l spoilers for all related media. +LOCATION:Prog Panels - 310 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Idol Random Dance Play +DTSTART:20250420T111500 +DTEND:20250420T121500 +CATEGORIES:Dance,SC-13 +DESCRIPTION:Track: Fan Panel\nTags: Dance\,SC-13\n\nAn hour long random da + nce play\, filled with songs from yourfavorite idol animes\, games\, and v + ocaloids producers. +LOCATION:Dance Lessons - 420-422 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:So you want to be a staffer? +DTSTART:20250420T111500 +DTEND:20250420T121500 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nAre you interested in becomi + ng involved with Sakura-Con as a volunteer? Come hear some of our Director + s and various other high-level staff talk about each of our departments an + d how YOU can get involved as a staff member! Our staff positions are open + to all ages\, although many of our departments require specific age requi + rements to be met. We will also take questions about specific departments\ + , how you can contact us\, etc! +LOCATION:Prog Panels - 347-348 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:The Art of Armor Attachments +DTSTART:20250420T113000 +DTEND:20250420T123000 +CATEGORIES:SC-10 +DESCRIPTION:Track: Fan Panel\nTags: SC-10\n\nTired of your armor and heavy + cosplays sliding and sliding everywhere? Looking for a more stable method + to attach your foam armor? Come join Chaoticneutralcosplay and learn how + to get more stability\, mobility and functionality from your cosplay armor + ! +LOCATION:Prog Panels - 443-444 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Youtaite: The Global J-Pop Cover Community +DTSTART:20250420T113000 +DTEND:20250420T123000 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nDid you know there's a globa + l community of singers who cover anime and vocaloid songs just like AmaLee + \, NateWantsToBattle\, or Will Stetson? Come learn about the Youtaite comm + unity and how you can get involved\, whether that be working behind the sc + enes as an audio engineer or taking the mic as a vocalist! +LOCATION:Prog Panels - 343-344 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Dungeons & Doujins +DTSTART:20250420T113000 +DTEND:20250420T130000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nDo you enjoy Dungeons & Drago + ns? Choose your own adventure books? Whacky Fanfics/Doujins? Cosplayers ma + king fools of themselves? Or have you simply just wondered what your favor + ite anime characters would be like in a D&D/fantasy setting? If you answer + ed yes to any of these questions this panel is for you!Join us for a silly + self-contained D&D session with some fan-favorite Dunmeshi (Delicious in + Dungeon) party members and everyone's favorite bard\, Hatsune Miku\, as th + ey embark on an adventure filled with tasty monsters\, deadly foes\, and s + ome special appearances from other familiar anime characters! Audience par + ticipation is encouraged! +LOCATION:Prog Panels - 3AB +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Havoc with the Harbingers +DTSTART:20250420T113000 +DTEND:20250420T130000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nJoin us in a chaos filled mee + ting for games\, QnA\, and overall interactions with the Fatui Harbinger's + (Note\; our content is in character) +LOCATION:Prog Panels - 307 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:The GameSurge! | Ultimate Video Game Trivia +DTSTART:20250420T113000 +DTEND:20250420T130000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\n3 teams battle it out across + all eras of gaming! Test your otaku knowledge to its limits as you battle + it out to be given the opportunity to plunder deep into The TREASURE TROVE + OF TRASH and win fantastic prizes! Do YOU have what it takes to win it al + l? Only one way to find out. +LOCATION:Prog Panels - 440-442 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Burning Rubber: An Introduction to Racing Anime +DTSTART:20250420T120000 +DTEND:20250420T130000 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nWant to check out some racin + g anime but don't know where to start? Seen some episodes of Speed Racer b + ack in the day and want to get into some real life racing series that have + the same feel? Come through and learn about some of the marquee shows and + movies in the genre\, and some of the racing series that inspired them! +LOCATION:Prog Panels - 303 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:D&D in Media: A Critical Fail? +DTSTART:20250420T120000 +DTEND:20250420T130000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nHave you ever wished your D&D + game was a cartoon? No? Well (un)fortunately for you it very much exists + and unlike what your therapist tells you it CAN hurt you. And are there be + tter D&D media examples now? +LOCATION:Prog Panels - 445-446 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Heaven is a Lie! A Hellaverse Sing-Along! +DTSTART:20250420T120000 +DTEND:20250420T130000 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\nFeeling like a Loser\, Baby? + Well I bet You Didn't Know that today is gonna be a Happy Day in Hell with + our jam packed sing-along! Don't worry\, You'll Be Okay because More Than + Anything we're ready to Poison your mind with Hazbin Hotel and Helluva Bo + ss musical brain rot! See you there! +LOCATION:Prog Panels - 2AB +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Extremely Hard Take-Home Anime Quiz (results) +DTSTART:20250420T121500 +DTEND:20250420T131500 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nWIN A PS5 AT THE EXTREMELY HA + RD TAKE-HOME ANIME QUIZ! This is a multiple-choice\, open-book\, take-home + quiz that begins on the Sakura-con site three weeks before the convention + . You are encouraged to use any resource at your disposal. Some of the que + stions will test your understanding and ability to analyze anime\, not jus + t your memory. Instead\, you will need to do research into the real world + of such topics as art\, geography\, history\, literature\, music and scien + ce. The answers to the questions will provide additional context and meani + ng to the anime that you already enjoy. +LOCATION:Prog Panels - 310 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Being a Better Bangya: Bringing Visual Kei Culture to the West +DTSTART:20250420T123000 +DTEND:20250420T130000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nAre you a fan of Visual Kei\, + or interested in becoming more in touch with the community? Come to our p + anel! We'll provide an introduction to the genre\, discuss what it means t + o be a fan (or a Bangya)\, teach some Furi\, and even showcase some mercha + ndise from Japan! +LOCATION:Prog Panels- 304 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:In My Y2K Era: Conventions and Cosplay +DTSTART:20250420T123000 +DTEND:20250420T133000 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nSo much shiny satin\, findin + g a party city wig to match that funky anime hair\, and figuring out how y + ou're going to survive on ramen\, rooming with 10 other nerds\, and on a l + imited budget. Elder millennial cosplayers\, Diana Soreil and Eri Victoria + discuss what it was like being a teen and figuring it all out before yout + ube tutorials and social media. +LOCATION:Prog Panels - 345-346 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Nerd Zumba +DTSTART:20250420T123000 +DTEND:20250420T133000 +CATEGORIES:Dance,SC-13 +DESCRIPTION:Track: Fan Panel\nTags: Dance\,SC-13\n\nGet ready to sweat and + smile! Nerd Zumba is a 45 minute dance cardio class featuring all of your + favorite music from anime\, video games and other pop culture. Lead by a + licensed Zumba instructor. +LOCATION:Dance Lessons - 420-422 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:The Most Powerful Fandom: Touhou Project +DTSTART:20250420T123000 +DTEND:20250420T133000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nTouhou Project has been aroun + d since 1997\, and in that time has created one of the most passionate and + creative fandoms the internet has ever seen! This panel will explore the + various musicians\, animators\, cosplayers\, and memes that have not only + defined the series as a whole\, but have even shaped the public perception + of Touhou! +LOCATION:Prog Panels - 340-342 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:How To Idol: Costuming +DTSTART:20250420T123000 +DTEND:20250420T140000 +DESCRIPTION:Track: Fan Panel\n\nWant to begin on your idol journey? Whethe + r your a kaigai idol or a idol cosplayer\, if you want to make your own co + stumes but don't know where to start\, this is the place to learn!! You'll + be able to learn about translating costumes from screen into real life te + chniques\, how to choose and where to buy fabric\, and techniques to eleva + te your own cosplay! +LOCATION:Prog Panels - 305 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Getting Started with Cosplay Photography +DTSTART:20250420T124500 +DTEND:20250420T134500 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nIn this panel we are going t + o discuss how to get started as a cosplay photographer. We will discuss eq + uipment\, working with cosplayers and working on location and at a studio. +LOCATION:Prog Panels - 343-344 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Zapp's Arcade of... Love? +DTSTART:20250420T124500 +DTEND:20250420T141500 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\n +LOCATION:Relations Panels/Premiers - Ballroom 2 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Weeb fat loss for cosplay with failure senpai +DTSTART:20250420T130000 +DTEND:20250420T140000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nJoin a weeb who lost 50 lbs a + fter failing 10 New Year’s resolutions in a row. Get all my advice and s + implifications of 10 years of failure\, mistakes\, doubt\, set backs and f + inally success. +LOCATION:Prog Panels - 347-348 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Creating your Cosplay Club +DTSTART:20250420T131500 +DTEND:20250420T141500 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nWant to create a cosplay clu + b in your community or at your school? Have a cosplay club\, but don't kno + w how to get more involvement? Join Central Washington University's Cospla + y Club Officers as they go over how we've become one of the biggest and mo + st active clubs on campus! +LOCATION:Prog Panels- 304 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Strange Anime For Strange People +DTSTART:20250420T131500 +DTEND:20250420T141500 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nAre you a weirdo who likes to + explore the weird\, offputting side of whatever media you consume? Well\, + this is the panel for you! Surreal humor\, mind-bending visuals\, outrage + ous characters\, and more await as we highlight the anime and creators tha + t dare to be different. +LOCATION:Prog Panels - 3AB +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:It All Starts Here! An Anime Intro Sing-Along +DTSTART:20250420T133000 +DTEND:20250420T143000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nWho doesn’t love a good the + me song? They set the tone for the show! Some are so catchy they stay in y + our head rent free for years and years. Join us as we celebrate some of th + e most popular and beloved anime intros in this sing-along! +LOCATION:Prog Panels - 2AB +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:B-Daman/iPGA - Learn to Play +DTSTART:20250420T133000 +DTEND:20250420T150000 +CATEGORIES:SC-10 +DESCRIPTION:Track: Fan Panel\nTags: SC-10\n\nInterested in Japan's marble + launching toy: B-Daman?Attend to learn how to play B-daman! Learn about th + e history (and future) of B-Daman\, then compete in B-Daman challenges to + get iPGA certified!Score high! Obtain victory! B-Da-FIRE!Note: Free B-Dama + n will be supplied(while supplies last!) +LOCATION:Prog Panels - 303 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:The Legend belongs to Zelda +DTSTART:20250420T134500 +DTEND:20250420T141500 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nIt's a case of mistaken iden + tity as old as the franchise itself: the assumption that the hero in green + \, the veritable savior of Hyrule\, was named Zelda. Until recently\, that + has never been the case. So why has the franchise always been named after + Hyrule's Princess? Come discover the origins of The Legend\, and why it s + till fits to this very day. +LOCATION:Prog Panels - 345-346 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Anime MENTAL HEALTH +DTSTART:20250420T134500 +DTEND:20250420T144500 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\nWe will be talking about how + anime show cases mental health. Teaching everyone how to better understand + someone with mental health and also how to let them know that they are no + t alone when dealing with it. +LOCATION:Prog Panels - 310 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Mecha History: Armageddon. +DTSTART:20250420T134500 +DTEND:20250420T160000 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\nThere’s not much in the his + tory of mecha that can’t be discussed in a normal panel… but what’s + there is pretty hilarious! Much of this panel is the same as the other one + \, but with a few included extras… and an expanded talk about the histor + y of mecha video games! +LOCATION:Prog Panels - 307 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Cosplay Lip Sync Extravaganza Doors Open +DTSTART:20250420T140000 +DTEND:20250420T143000 +DESCRIPTION:Track: Fan Panel\n\n +LOCATION:Summit Stage +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Riichi Mahjong 102: Ready to Win +DTSTART:20250420T140000 +DTEND:20250420T150000 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nHave the basics of the game + down but are wondering how to improve? This panel will go over strategy ti + ps for moving from Beginner to Intermediate such as 5 Block Theory\, when + to play aggressive\, and how to defend. I'll also go over how to count Fu + and further terminology. I'll be sharing some tools you might not be aware + like efficiency trainers and scoring trainers as well. +LOCATION:Prog Panels - 343-344 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:You Can (Not) Run Away: 30 Years of EVANGELION +DTSTART:20250420T140000 +DTEND:20250420T160000 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\nEvangelion's legacy is inesca + pable whether you like this series or not. This mighty mecha anime is cele + brating its 30th anniversary this year and there are things to discuss and + there shall be questions answered . This panel however is aimed at mature + audiences due to... well... let's just say some subject matter pertaining + to The End of Evangelion wouldn't fly by in a Christian Discord server. T + his panel will also cover several Evangelion manga as such material does e + xist. Of course\, the Rebuild of Evangelion will be discussed since it is + a part of Evangelion's history. If you are a fan of this iconic mecha anim + e\, get in the panel! +LOCATION:Prog Panels - 340-342 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Queerness and Cosplay\, a Retrospective +DTSTART:20250420T143000 +DTEND:20250420T153000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\ndeep dive into the intersecti + on of Queer Identity and cosplay as well as the queer cosplay community. +LOCATION:Prog Panels - 3AB +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Cosplay Lip Sync Extravaganza +DTSTART:20250420T143000 +DTEND:20250420T160000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\n +LOCATION:Summit Stage +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Ultimate Werewolf +DTSTART:20250420T143000 +DTEND:20250420T160000 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nYou're in a village with you + r friends. Some of them are not as they seem. What do you do? Join us in t + his game deduction where participants are given a card to define their rol + e. Participants must figure out who are villagers and werewolves. Can you + solve the mystery? +LOCATION:Prog Panels - 345-346 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:(18+) Dio Brando's WORLD +DTSTART:20250420T150000 +DTEND:20250420T160000 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\n((SPOILER HEAVY))An analysis + of the various reincarnation of Dio Brando and his motives\, mind set and + methods across the Jojo-verse. Rated for subject material +LOCATION:Prog Panels - 443-444 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:A Brief History of CLAMP Yaoi +DTSTART:20250420T150000 +DTEND:20250420T160000 +CATEGORIES:SC-MA +DESCRIPTION:Track: Fan Panel\nTags: SC-MA\n\nCLAMP\, the four-woman manga + making powerhouse\, are known for incorporating queer characters & themes + across their vast body of works. Starting from their debut\, to the worldw + ide hits like Cardcaptor Sakura and everything in between\, your CLAMP Yao + i Historian will lead you on this journey! +LOCATION:Prog Panels- 304 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Seattle Video Game Orchestra Live Concert +DTSTART:20250420T150000 +DTEND:20250420T160000 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nA live orchestral performanc + e of music from your favorite games! The Seattle Video Game Orchestra is a + local community orchestra made up of players from all musical backgrounds + and skill levels\, all with a love for video games. +LOCATION:SakuraDome - 6E +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Sonic: An Unfortunate History +DTSTART:20250420T150000 +DTEND:20250420T160000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nSonic the Hedgehog is a stapl + e holding together the childhood of any proper 90s kid\, but just like Soa + p shoes he’s tragically out of fashion. We’ll be going over the histor + y of Sonic The Hedgehog games\, Sega Consoles\, Crush 40\, and various chi + li dogs. +LOCATION:Prog Panels - 445-446 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Taboo! Game Show: Anime Edition +DTSTART:20250420T150000 +DTEND:20250420T160000 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\n"It's the Taboo! Game Show: A + nime Edition! Compete in a team of 2-4 and try to get your teammates to gu + ess anime-related terms. Think fast\, flex your otaku knowledge to its lim + its\, and get your team as many points as possible! Be careful not to use + any of the ""taboo"" words\, or we and the audience will buzz you! Glory a + nd prizes are in store for the winners!" +LOCATION:Prog Panels - 440-442 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:UAMQ - Live Band Anime Music Quiz by UAM! +DTSTART:20250420T150000 +DTEND:20250420T160000 +CATEGORIES:SC-ALL +DESCRIPTION:Track: Fan Panel\nTags: SC-ALL\n\nIt’s family feud but ANIME + !!!! Hosted by Anime Nation UW\, (the University of Washington's premier a + nime student organization)\, we’re so excited to bring our fav game to y + 'all!!! Stop by and learn more about what ANUW does and enjoy the best of + what we have to offer: a fun game to play with your fellow con-goers\, and + a chance to win petal points for prizes !! We go all out with everything + we do\, and this is no exception!! We’re honored to have this opportunit + y to panel at sakura-con for the first time— and for our debut\, we’ll + be making it extra special X3 Come through and let’s make some memories + that’ll last 4evr <3333 +LOCATION:Prog Panels - 2AB +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Driving in the 90s\, a primer on importing and driving cars from J + apan +DTSTART:20250420T151500 +DTEND:20250420T154500 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\nHave you ever wanted to drift + around corners like Takumi Fujiwara in Initial D? Have you ever wanted to + off road in a street legal* pickup that weighs less than some horses? Did + you enjoy the Kei Car class just a little too much in Gran Tourismo? Do y + ou find drive-thrus and toll booths to be just too darn easy? This may jus + t be the panel for you.We'll tackle the options for importing and register + ing foreign cars to the United States\, some of the common pit-falls on ow + nership & maintenance and generally explain what it's like to own a weird + car. Even if you already drive from the right seat\, come on in to share k + nowledge about your experiences! +LOCATION:Prog Panels - 303 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:"Kojima's Sci-Fi Classics: ""Snatcher"" & ""Policenauts""" +DTSTART:20250420T151500 +DTEND:20250420T161500 +CATEGORIES:SC-13 +DESCRIPTION:Track: Fan Panel\nTags: SC-13\n\n"You've probably heard of the + ""Metal Gear Solid"" saga and ""Death Stranding""\, but what about Hideo + Kojima's earlier games? Come learn about the sci-fi adventure games ""Snat + cher"" and ""Policenauts""\, how they connect to Kojima's later works\, an + d why they're still worth playing today." +LOCATION:Prog Panels - 343-344 +STATUS:ACTIVE +END:VEVENT +END:VCALENDAR diff --git a/calendar_Gaming.ics b/calendar_Gaming.ics new file mode 100644 index 0000000..daaad97 --- /dev/null +++ b/calendar_Gaming.ics @@ -0,0 +1,2288 @@ +BEGIN:VCALENDAR +VERSION:2.0 +PRODID:-//Gaming Schedule//eventeny.com// +X-WR-CALNAME:Gaming +BEGIN:VEVENT +SUMMARY:Magic: the Gathering – Casual Commander +DTSTART:20250418T090000 +DTEND:20250418T235900 +DESCRIPTION:Track: Gaming\n\nCome play a casual Commander game with friend + s\, strangers\, or even Sakura-Con staff! \n\nPods of 4 will be seated on- + demand. No deck? No problem! We've got a library of pre-constructed decks + you can borrow for the duration of your game. All participants will also r + eceive a ticket for the Grand Giveaway! +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:TCGs @ Sakura-Con - Friday +DTSTART:20250418T090000 +DTEND:20250418T235900 +DESCRIPTION:Track: Gaming\n\nWelcome to the Sakura-Con 2025 Trading Card G + ames room! We'll be running events wall to wall all weekend long\, from Le + arn to Play events\, to Drafts\, Sealed\, Constructured\, and more for all + (maybe!) your favorite games! Any event you do in the room will earn you + a ticket that you can jealously hoard until Sunday when we have our Grand + Giveaway! Most of which is generously donated by our lovely sponsors\, don + ors\, and friends of the Con! \n\nWhether you're a seasoned pro or a you'v + e never played a card game in your life\, we'll have content for you! Come + learn a game you have always wanted to play or one you've never even hear + d of. And best of all\, every single thing in this room is free! So if you + want to come hang out with your fellow con-goer\, meet some new friends a + nd learn some fun games along the way\, our team of dedicated volunteers w + ill be here all weekend to guide you through the wonderful world of cardbo + ard. +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Video Game Tournament Room Open +DTSTART:20250418T090000 +DTEND:20250418T235900 +DESCRIPTION:Track: Gaming\n\nWe're running tournaments in all kinds of vid + eo games! Check out our full slate and register in the room or pre-registe + r ahead of time on https://www.start.gg/sakuracon - More spots will be mad + e available in-person on the day of the event\, so don't be discouraged if + your game's bracket is full online: Stop by the room to register or to be + added to the waitlist! +LOCATION:Tournament Gaming - 606-607 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Digimon Card Game – Learn to Play +DTSTART:20250418T093000 +DTEND:20250418T120000 +DESCRIPTION:Track: Gaming\n\nDi-Di-Digimon! Digital Monsters\, The Card Ga + me! Come help to save the digital world and learn to play this rich card g + ame that has captivated audiences since 2020! Change yourself into a digit + al champion and save the digital world. And after you're done digivolving\ + , you'll receive a pack on us to start your journey and a ticket for the G + rand Giveaway on Sunday! +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:One Piece – Learn to Play +DTSTART:20250418T093000 +DTEND:20250418T120000 +DESCRIPTION:Track: Gaming\n\nObtain Fame\, Wealth\, and Power beyond your + wildest dreams by coming to the TCG Room and learning to play the One Piec + e TCG! Will you be able to find the buried treasure- Or perhaps the treasu + re is actually the friendships you formed in your journey? No matter what\ + , if you complete a learn to play session you will receive a ticket for ou + r Grand Giveaway on Sunday! +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:WIXOSS – Learn to Play +DTSTART:20250418T093000 +DTEND:20250418T123000 +DESCRIPTION:Track: Gaming\n\nWixoss LTP \n\nA girl prayed to fulfill her w + ish. Scattered strange gene "Wixoss". All around the world fusion into one + form. Searching in vain for a fight...\n\nVictory will be the only way fo + r wish to revolutionize.\n\nNow\, shall her "Wish Across" be conquered. \n + \nDo you love card games? Do you like cute anime girls? Do you love rippin + g your opponent's entire hand 3 turns in a row? If so\, this might be the + game for you! We are looking to train new Selectors! In this strategy card + game you can pick your favorite anime girl\, also known as LRIGs to BATTL + E against other Selectors!\n\nWe are here to help you! Come by our table + and let us show you the ropes! You will be in good hands with our experien + ced team\, including the most recent North American Grand Prix Champion\, + Nichole Win.\n\nIf you like resource intensive games\, make sure to stop b + y! We look forward to meeting new Selectors and hope you have a great time + .\n\nOPEN! +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Grand Archive – Learn to Play Demos +DTSTART:20250418T093000 +DTEND:20250418T163000 +DESCRIPTION:Track: Gaming\n\nWelcome to the Archive\, Champion – do you + have what it takes to forestall an apocalypse?\n\nCome find out and learn + Grand Archive\, a growing new TCG fusing anime aesthetics with the best of + western game design! Along with your demo kit\, all participants will rec + eive a ticket for the Grand Raffle!\n\nAll material graciously provided by + Grand Archive’s developer and Sakura-Con sponsor\, Weebs of the Shore. +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Flesh and Blood – Learn to Play +DTSTART:20250418T093000 +DTEND:20250418T233000 +DESCRIPTION:Track: Gaming\n\nDear Con-goer\, do you desire Flesh? Do you d + esire Blood? Perhaps even both at the same time? In that case\, we at the + TCG Room have you covered. Come see us and one of our Flesh Experts (Blood + Experts available upon request) will teach you all the ins and outs of th + e Flesh and Blood TCG. Should you survive the trials\, you will be rewarde + d with a raffle ticket for the Grand Giveaway on Sunday! +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Magic: the Gathering – Curated Chaos Draft +DTSTART:20250418T100000 +DTEND:20250418T140000 +DESCRIPTION:Track: Gaming\n\nPresented by MTGPlatinum.com< + /a> !\n\nCome and enjoy a completely free\, curated draft experience reach + ing through MTG history to provide you with an unpredictable experience yo + u won’t find anywhere else\n\nAll Curated Chaos drafts are three rounds + of best-of-one games. All participants will also receive a ticket for the + Grand Giveaway!\n\nReservation tickets will be available at the TCG Infode + sk on the day of the event. Unclaimed spots will be filled first-come-firs + t-serve from attendees present at event start time. +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Netrunner -- Learn to Play Demos +DTSTART:20250418T100000 +DTEND:20250418T140000 +DESCRIPTION:Track: Gaming\n\nPresented by Null Signal Games! +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Pokémon TCG – Learn to Play +DTSTART:20250418T100000 +DTEND:20250418T160000 +DESCRIPTION:Track: Gaming\n\nSure\, maybe you can identify all the origina + l 151 just by their silhouettes\, sing every word of “Gotta Catch ‘Em + All” to yourself in the shower\, and have a full shiny living ‘dex on + Pokémon HOME - but if you really want to be the Champion\, you have to be + ready to take on all comers\, anytime\, anywhere… even at the card tabl + e.\n\nThat’s where we come in! Swing by and learn to play from some of t + he best trainers around\, courtesy of Tabletop Village’s elite roster.\n + \nAll participants will also receive a ticket for the Grand Giveaway – s + o start your climb to the top here\, and aim to become the very best. You + know it’s your destiny. +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Learn to play mahjong +DTSTART:20250418T100000 +DTEND:20250418T220000 +DESCRIPTION:Track: Gaming\n\nLearn to play Japanese riichi mahjong with on + e of our teachers! +LOCATION:Mahjong gaming - Summit 333+334 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Mahjong freeplay +DTSTART:20250418T100000 +DTEND:20250418T220000 +DESCRIPTION:Track: Gaming\n\nPlay mahjong with other attendees at one of o + ur many tables. An annual classic. +LOCATION:Mahjong gaming - Summit 333+334 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Board Game Library +DTSTART:20250418T100000 +DTEND:20250418T235000 +DESCRIPTION:Track: Gaming\n\nBoard game library\, borrow board games from + Dragonflight and play with your friends! +LOCATION:Tabletop Gaming - 615-617 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Alexandria RPG Library Presents: Classic\, Modern\, and Indie RPGs +DTSTART:20250418T100000 +DTEND:20250418T235900 +DESCRIPTION:Track: Gaming\n\nVisit the Alexandria RPG Library\, showcasing + hundreds of books\, modules\, and player aids from countless tabletop RPG + systems. Browse the history of TTRPGs\, create a character\, borrow a boo + k for the weekend\, or even sign up to play in or run an RPG session!\n\nT + he RPG room will open at 10am daily for browsing\, game signups\, and char + acter creation. Tickets for each day's scheduled sessions will be made ava + ilable at 10am\, and are first-come\, first-served. Game sessions begin at + 10:30am\, and start at intervals throughout the day. Check the con schedu + le\, or the signup desk in the RPG area\, to see available games and start + times. +LOCATION:Role-Playing Games - Arch 616-617 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Retro Gaming +DTSTART:20250418T100000 +DTEND:20250420T170000 +DESCRIPTION:Track: Gaming\n\n +LOCATION:Retro Gaming - 611-612 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Galaxy Fight (One Second Timer) Tournament +DTSTART:20250418T110000 +DTEND:20250418T140000 +DESCRIPTION:Track: Gaming\n\n +LOCATION:Tournament Gaming - 606-607 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Shadowverse: Evolve – Learn to Play +DTSTART:20250418T110000 +DTEND:20250418T140000 +DESCRIPTION:Track: Gaming\n\nWhether you've played the online TCG for Shad + owverse or not\, Shadowverse Evolve is a exciting and enjoyable game that + promises to keep you on your toes constantly. Our resident Anime TCG Speci + alist will be here to teach you how to play and put you on your journey to + becoming a champion. +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Weiss Schwarz – Learn to Play +DTSTART:20250418T110000 +DTEND:20250418T140000 +DESCRIPTION:Track: Gaming\n\nHave you ever wanted every Anime ever made in + one TCG? Well then you'll love Weiss Schwarz! Come relive climactic battl + es and moments from your favorite Anime and learn a mechanically deep TCG + while you're at it! Hosted by our resident Anime TCG Expert\, you'll be gu + ided through your first game and then be on your way to being a champion! + All participants will also receive a ticket for the Grand Giveaway! +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Windjammers 2 Tournament +DTSTART:20250418T110000 +DTEND:20250418T140000 +DESCRIPTION:Track: Gaming\n\n +LOCATION:Tournament Gaming - 606-607 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Chunithm LOWERS Tournament +DTSTART:20250418T110000 +DTEND:20250418T160000 +DESCRIPTION:Track: Gaming\n\nLower level tournament for the arcade game Ch + unithm +LOCATION:Arcade - 6AB +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Flesh and Blood - Booster Draft +DTSTART:20250418T113000 +DTEND:20250418T153000 +DESCRIPTION:Track: Gaming\n\nReservation tickets will be available at the + TCG Infodesk on the day of the event. Unclaimed spots will be filled first + -come-first-serve from attendees present at event start time. +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Mahjong quiz time: New beginnings +DTSTART:20250418T120000 +DTEND:20250418T130000 +DESCRIPTION:Track: Gaming\n\nDrop in during the time block to try one of m + ultiple short mahjong quizzes - good scores get a badge ribbon! Have a sho + t at questions around hand readiness\, final tile waits\, and good ol' yak + u! +LOCATION:Mahjong stadium - Summit 335 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Cardfight Vanguard!! Learn to Play +DTSTART:20250418T120000 +DTEND:20250418T140000 +DESCRIPTION:Track: Gaming\n\nEver wanted to try out an Anime card game kno + wn for being easy to learn and incredibly fun to master? Cardfight Vanguar + d!! is right up your alley then! Come and play with one of our Starter Dec + ks and be guided through a game by one of our volunteers! Complete a Learn + to Play session and receive a ticket for the Sunday Giveaway! +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Magic: The Gathering - Murders At Karlov Manor Draft +DTSTART:20250418T120000 +DTEND:20250418T160000 +DESCRIPTION:Track: Gaming\n\nCome and enjoy a completely free Draft experi + ence at Sakura-Con!\n\nAll drafts are three rounds of best-of-one games. A + ll participants will receive a ticket for the Grand Giveaway\, as well as + one pack per win!\n\nReservation tickets will be available at the TCG Info + desk on the day of the event. Unclaimed spots will be filled first-come-fi + rst-serve from attendees present at event start time. +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Naruto Ultimate Ninja Storm 4 Tournament +DTSTART:20250418T120000 +DTEND:20250418T160000 +DESCRIPTION:Track: Gaming\n\n +LOCATION:Tournament Gaming - 606-607 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Super Smash Bros Ultimate Tournament (1 of 4) +DTSTART:20250418T120000 +DTEND:20250418T160000 +DESCRIPTION:Track: Gaming\n\n +LOCATION:Tournament Gaming - 606-607 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Yu-Gi-Oh! Standard +DTSTART:20250418T120000 +DTEND:20250418T160000 +DESCRIPTION:Track: Gaming\n\nWelcome\, Duelist! Here's something a bit mor + e modern for you – a Standard Format Yu-Gi-Oh Tournament. Come over to t + he TCG Room and prove you're the best duelist at Sakura-Con (besides Kaiba + \, of course) and put your skills on display. Eager to show off your Ryzea + l deck? Or maybe you're still playing Tenpai Dragon? – No matter what yo + u're playing\, we encourage you to stop by and win some prizes.\n\nThree r + ounds of best-of-one games. All participants will receive a ticket for the + Grand Giveaway\, as well as one pack per win!\n\nReservation tickets will + be available at the TCG Infodesk on the day of the event. Two loaner deck + s are available upon request (First come first serve) upon request as part + of your reservation. Unclaimed spots will be filled first-come-first-serv + e from attendees present at event start time. +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Mahjong freeplay - autotables +DTSTART:20250418T120000 +DTEND:20250418T210000 +DESCRIPTION:Track: Gaming\n\nPlay mahjong with other attendees at one of o + ur autotables. An annual classic now with its own queue. +LOCATION:Mahjong stadium - Summit 335 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:One Piece - Starter Deck Tournament +DTSTART:20250418T123000 +DTEND:20250418T143000 +DESCRIPTION:Track: Gaming\n\nReservation tickets will be available at the + TCG Infodesk on the day of the event. Unclaimed spots will be filled first + -come-first-serve from attendees present at event start time. +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Digimon Card Game - Starter Deck Tournament +DTSTART:20250418T123000 +DTEND:20250418T153000 +DESCRIPTION:Track: Gaming\n\nReservation tickets will be available at the + TCG Infodesk on the day of the event. Unclaimed spots will be filled first + -come-first-serve from attendees present at event start time. +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Anime mahjong compilation +DTSTART:20250418T130000 +DTEND:20250418T140000 +DESCRIPTION:Track: Gaming\n\nYou've heard of Saki and Akagi\, but did you + know that there was a mahjong scene in XxX Holic? Or Osumatsu-san? Or Uma + Musume? Look at some of the obscure (and often hilarious) times mahjong m + ade a cameo in otherwise unrelated shows. +LOCATION:Mahjong stadium - Summit 335 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:WIXOSS - Diva Debut Tournament (Starter Deck) +DTSTART:20250418T133000 +DTEND:20250418T163000 +DESCRIPTION:Track: Gaming\n\nReservation tickets will be available at the + TCG Infodesk on the day of the event. Unclaimed spots will be filled first + -come-first-serve from attendees present at event start time. +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:On mahjong in anime +DTSTART:20250418T140000 +DTEND:20250418T150000 +DESCRIPTION:Track: Gaming\n\nA look at how mahjong is represented in anime + \, both in shows that revolve around mahjong and those that briefly featur + e it. We break down how mahjong is depicted and study its realism across v + arious shows. +LOCATION:Mahjong stadium - Summit 335 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Granblue Fantasy Versus: Rising Tournament +DTSTART:20250418T140000 +DTEND:20250418T170000 +DESCRIPTION:Track: Gaming\n\n +LOCATION:Tournament Gaming - 606-607 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:King of Fighters XV Tournament +DTSTART:20250418T140000 +DTEND:20250418T180000 +DESCRIPTION:Track: Gaming\n\n +LOCATION:Tournament Gaming - 606-607 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Magic: the Gathering – Curated Chaos Draft +DTSTART:20250418T143000 +DTEND:20250418T183000 +DESCRIPTION:Track: Gaming\n\nPresented by MTGPlatinum.com< + /a> !\n\nCome and enjoy a completely free\, curated draft experience reach + ing through MTG history to provide you with an unpredictable experience yo + u won’t find anywhere else\n\nAll Curated Chaos drafts are three rounds + of best-of-one games. All participants will also receive a ticket for the + Grand Giveaway!\n\nReservation tickets will be available at the TCG Infode + sk on the day of the event. Unclaimed spots will be filled first-come-firs + t-serve from attendees present at event start time. +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Intro to riichi mahjong +DTSTART:20250418T150000 +DTEND:20250418T160000 +DESCRIPTION:Track: Gaming\n\nThis primer for riichi mahjong covers all the + basics of how to play in an easy to understand manner. Suitable by itself + \, or as a companion to our guided teaching sessions. +LOCATION:Mahjong stadium - Summit 335 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:One Piece – Learn to Play +DTSTART:20250418T153000 +DTEND:20250418T180000 +DESCRIPTION:Track: Gaming\n\nObtain Fame\, Wealth\, and Power beyond your + wildest dreams by coming to the TCG Room and learning to play the One Piec + e TCG! Will you be able to find the buried treasure- Or perhaps the treasu + re is actually the friendships you formed in your journey? No matter what\ + , if you complete a learn to play session you will receive a ticket for ou + r Grand Giveaway on Sunday! +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Mahjong Soul emote strategy +DTSTART:20250418T160000 +DTEND:20250418T170000 +DESCRIPTION:Track: Gaming\n\nSure\, you may be a Jade room Master\, but do + you know the correct counter-pick to Wanjiro? From basic emote theory to + chain strategy to team play\, learn from the experts how to make sure you + pick the correct emote for every situation. +LOCATION:Mahjong stadium - Summit 335 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Super Smash Bros Ultimate Tournament (2 of 4) +DTSTART:20250418T160000 +DTEND:20250418T200000 +DESCRIPTION:Track: Gaming\n\n +LOCATION:Tournament Gaming - 606-607 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:UNDER NIGHT IN-BIRTH II Sys:Celes Tournament +DTSTART:20250418T160000 +DTEND:20250418T200000 +DESCRIPTION:Track: Gaming\n\n +LOCATION:Tournament Gaming - 606-607 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Weiss Schwarz – Neo Standard Tournament +DTSTART:20250418T160000 +DTEND:20250418T200000 +DESCRIPTION:Track: Gaming\n\nDid you remember to bring your Weiss deck to + con? If so\, we think you'll love this Neo-Standard format tournament. Com + e on down to the TCG room and battle it out with other players to prove yo + u're the best Weiss Schwarz player at Sakura-Con - and win some prizes\, t + oo! All participants will also receive a ticket for the Grand Giveaway!\n\ + nReservation tickets will be available at the TCG Infodesk on the day of t + he event. Unclaimed spots will be filled first-come-first-serve from atten + dees present at event start time. +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Social Deception Gaming +DTSTART:20250418T160000 +DTEND:20250419T000000 +DESCRIPTION:Track: Gaming\n\nHave you ever wanted to lie\, betray and mayb + e even murder your friends or strangers? Come play Werewolf and other soci + al deception games! +LOCATION:Social Deception Games - 201 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Quick & Crash Fastest Time Contest #1 +DTSTART:20250418T163000 +DTEND:20250418T180000 +DESCRIPTION:Track: Gaming\n\nTry to get the fastest time in Quick & Crash + for prizes! +LOCATION:Arcade - 6AB +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Digimon Card Game – Learn to Play +DTSTART:20250418T163000 +DTEND:20250418T190000 +DESCRIPTION:Track: Gaming\n\nDi-Di-Digimon! Digital Monsters\, The Card Ga + me! Come help to save the digital world and learn to play this rich card g + ame that has captivated audiences since 2020! Change yourself into a digit + al champion and save the digital world. And after you're done digivolving\ + , you'll receive a pack on us to start your journey and a ticket for the G + rand Giveaway on Sunday! +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Flesh and Blood - Blitz Deck Tournament +DTSTART:20250418T163000 +DTEND:20250418T193000 +DESCRIPTION:Track: Gaming\n\nReservation tickets will be available at the + TCG Infodesk on the day of the event. Unclaimed spots will be filled first + -come-first-serve from attendees present at event start time. +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:How to become a literal mahjong pro +DTSTART:20250418T170000 +DTEND:20250418T180000 +DESCRIPTION:Track: Gaming\n\nDo you want to advance your Mahjong career an + d compete at higher levels? This session delves into what it means to beco + me a Mahjong pro and how you can become one. We'll also provide tips to he + lp you prepare for and succeed in passing the pro test. +LOCATION:Mahjong stadium - Summit 335 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Battle Stadium DON Tournament +DTSTART:20250418T170000 +DTEND:20250418T200000 +DESCRIPTION:Track: Gaming\n\n +LOCATION:Tournament Gaming - 606-607 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Grand Archive – Starter Deck Tournament +DTSTART:20250418T170000 +DTEND:20250418T200000 +DESCRIPTION:Track: Gaming\n\nYou’ve learned how to start the fight\, Cha + mpion – now let’s find out if you can finish it. Take up your provided + starter deck\, and go toe-to-toe with your peers in a test of skill alone + . But remember: even in defeat\, there is victory… in the form of a tick + et to the Grand Giveaway.\n\nReservation tickets will be available at the + TCG Infodesk on the day of the event. Unclaimed spots will be filled first + -come-first-serve from attendees present at event start time.\n\nAll mater + ial graciously provided by Grand Archive’s developer and Sakura-Con spon + sor\, Weebs of the Shore. +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:WIXOSS - Sealed Tournament +DTSTART:20250418T170000 +DTEND:20250418T200000 +DESCRIPTION:Track: Gaming\n\nReservation tickets will be available at the + TCG Infodesk on the day of the event. Unclaimed spots will be filled first + -come-first-serve from attendees present at event start time. +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Magic: The Gathering - Innistrad Remastered Draft +DTSTART:20250418T170000 +DTEND:20250418T210000 +DESCRIPTION:Track: Gaming\n\nCome and enjoy a completely free Draft experi + ence at Sakura-Con!\n\nAll drafts are three rounds of best-of-one games. A + ll participants will receive a ticket for the Grand Giveaway\, as well as + one pack per win!\n\nReservation tickets will be available at the TCG Info + desk on the day of the event. Unclaimed spots will be filled first-come-fi + rst-serve from attendees present at event start time. +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Pokémon TCG – Build & Battle +DTSTART:20250418T170000 +DTEND:20250418T210000 +DESCRIPTION:Track: Gaming\n\nOh\, it’s all very fine and well to take yo + ur carefully-curated team to victory – but someone who’s true Champion + material has that special something that lets them bond with a team they + ’ve only just met\, intuitively understand their strengths and weaknesse + s\, and lead them to glory.\n\nHow do you develop a talent like that\, you + ask?\n\nWhy\, many rounds of Build & Battle\, of course! Assemble your de + ck from the contents of the provided Build & Battle Box\, and battle your + way to to the top of the mountain… or at least to a good time. All parti + cipants will also receive a ticket for the Grand Giveaway!\n\nReservation + tickets will be available at the TCG Infodesk on the day of the event. Unc + laimed spots will be filled first-come-first-serve from attendees present + at event start time. +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Yu-Gi-Oh! Sealed +DTSTART:20250418T170000 +DTEND:20250418T220000 +DESCRIPTION:Track: Gaming\n\nReservation tickets will be available at the + TCG Infodesk on the day of the event. Unclaimed spots will be filled first + -come-first-serve from attendees present at event start time. +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Chinitsu challenge: 1v1 a friend +DTSTART:20250418T180000 +DTEND:20250418T200000 +DESCRIPTION:Track: Gaming\n\nDrop in during the time block to play a quick + mahjong challenge against another attendee. Winner gets an exclusive badg + e ribbon! +LOCATION:Mahjong stadium - Summit 335 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Cardfight Vanguard!! - Standard Tournament +DTSTART:20250418T180000 +DTEND:20250418T210000 +DESCRIPTION:Track: Gaming\n\nWhether you're just starting out with CFV or + a seasoned veteran\, if you have your own deck we invite you to come to th + is Constructed event and get to know your fellow CFV enjoying con-goer! So + come jam some games\, win some prizes\, and earn a ticket for the Grand G + iveaway on Sunday just for participating!\n\nReservation tickets will be a + vailable at the TCG Infodesk on the day of the event. Unclaimed spots will + be filled first-come-first-serve from attendees present at event start ti + me. +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Gundam Battle Assault 2 Tournament +DTSTART:20250418T180000 +DTEND:20250418T210000 +DESCRIPTION:Track: Gaming\n\n +LOCATION:Tournament Gaming - 606-607 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Netrunner -- Learn to Play Demos +DTSTART:20250418T180000 +DTEND:20250418T220000 +DESCRIPTION:Track: Gaming\n\nPresented by Null Signal Games! +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:maimai DX LOWERS Tournament +DTSTART:20250418T180000 +DTEND:20250418T230000 +DESCRIPTION:Track: Gaming\n\nLower level tournament for the arcade game ma + imai DX +LOCATION:Arcade - 6AB +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Netrunner -- Learn to Play Demos +DTSTART:20250418T180000 +DTEND:20250419T220000 +DESCRIPTION:Track: Gaming\n\nPresented by Null Signal Games! +LOCATION:TCG - 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:One Piece - Starter Deck Tournament +DTSTART:20250418T183000 +DTEND:20250418T203000 +DESCRIPTION:Track: Gaming\n\nReservation tickets will be available at the + TCG Infodesk on the day of the event. Unclaimed spots will be filled first + -come-first-serve from attendees present at event start time. +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Magic: the Gathering – Curated Chaos Draft +DTSTART:20250418T190000 +DTEND:20250418T230000 +DESCRIPTION:Track: Gaming\n\nPresented by MTGPlatinum.com< + /a> !\n\nCome and enjoy a completely free\, curated draft experience reach + ing through MTG history to provide you with an unpredictable experience yo + u won’t find anywhere else\n\nAll Curated Chaos drafts are three rounds + of best-of-one games. All participants will also receive a ticket for the + Grand Giveaway!\n\nReservation tickets will be available at the TCG Infode + sk on the day of the event. Unclaimed spots will be filled first-come-firs + t-serve from attendees present at event start time. +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Flesh and Blood - Booster Draft +DTSTART:20250418T193000 +DTEND:20250418T233000 +DESCRIPTION:Track: Gaming\n\nReservation tickets will be available at the + TCG Infodesk on the day of the event. Unclaimed spots will be filled first + -come-first-serve from attendees present at event start time. +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Mahjong strategy: review session +DTSTART:20250418T200000 +DTEND:20250418T210000 +DESCRIPTION:Track: Gaming\n\nOne of the best ways to get better is to see + what other players do. In this review session we go through mahjong game l + ogs and analyze the discards on a play-by-play basis\, covering topics of + strategy in the process. +LOCATION:Mahjong stadium - Summit 335 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Digimon Card Game – Sealed Tournament +DTSTART:20250418T200000 +DTEND:20250418T235900 +DESCRIPTION:Track: Gaming\n\nI've run out of Digimon puns and lyrics\, so + unfortunately you'll just have to settle with a Sealed tournament for free + ! Come visit us in the TCG Room and play a round of sealed Digimon on the + house\, complete with prizes and a ticket to all entries for our Grand Giv + eaway on Sunday!\n\nReservation tickets will be available at the TCG Infod + esk on the day of the event. Unclaimed spots will be filled first-come-fir + st-serve from attendees present at event start time. +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Dragonball FighterZ Tournament +DTSTART:20250418T200000 +DTEND:20250418T235900 +DESCRIPTION:Track: Gaming\n\n +LOCATION:Tournament Gaming - 606-607 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Naruto: Narutimate Hero 3 Tournament +DTSTART:20250418T200000 +DTEND:20250418T235900 +DESCRIPTION:Track: Gaming\n\n +LOCATION:Tournament Gaming - 606-607 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Rivals of Aether II Tournament +DTSTART:20250418T200000 +DTEND:20250418T235900 +DESCRIPTION:Track: Gaming\n\n +LOCATION:Tournament Gaming - 606-607 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Grand Archive – Learn to Play Demos +DTSTART:20250418T210000 +DTEND:20250418T235900 +DESCRIPTION:Track: Gaming\n\nWelcome to the Archive\, Champion – do you + have what it takes to forestall an apocalypse?\n\nCome find out and learn + Grand Archive\, a growing new TCG fusing anime aesthetics with the best of + western game design! Along with your demo kit\, all participants will rec + eive a ticket for the Grand Giveaway!\n\nAll material graciously provided + by Grand Archive’s developer and Sakura-Con sponsor\, Weebs of the Shore + . +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Virtua Fighter 5 R.E.V.O. Tournament +DTSTART:20250418T210000 +DTEND:20250418T235900 +DESCRIPTION:Track: Gaming\n\n +LOCATION:Tournament Gaming - 606-607 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:WIXOSS – Learn to Play +DTSTART:20250418T210000 +DTEND:20250418T235900 +DESCRIPTION:Track: Gaming\n\nWixoss LTP \n\nA girl prayed to fulfill her w + ish. Scattered strange gene "Wixoss". All around the world fusion into one + form. Searching in vain for a fight...\n\nVictory will be the only way fo + r wish to revolutionize.\n\nNow\, shall her "Wish Across" be conquered. \n + \nDo you love card games? Do you like cute anime girls? Do you love rippin + g your opponent's entire hand 3 turns in a row? If so\, this might be the + game for you! We are looking to train new Selectors! In this strategy card + game you can pick your favorite anime girl\, also known as LRIGs to BATTL + E against other Selectors!\n\nWe are here to help you! Come by our table + and let us show you the ropes! You will be in good hands with our experien + ced team\, including the most recent North American Grand Prix Champion\, + Nichole Win.\n\nIf you like resource intensive games\, make sure to stop b + y! We look forward to meeting new Selectors and hope you have a great time + .\n\nOPEN! +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:One Piece – Learn to Play +DTSTART:20250418T213000 +DTEND:20250418T235900 +DESCRIPTION:Track: Gaming\n\nObtain Fame\, Wealth\, and Power beyond your + wildest dreams by coming to the TCG Room and learning to play the One Piec + e TCG! Will you be able to find the buried treasure- Or perhaps the treasu + re is actually the friendships you formed in your journey? No matter what\ + , if you complete a learn to play session you will receive a ticket for ou + r Grand Giveaway on Sunday! +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Tetsuman registration +DTSTART:20250418T220000 +DTEND:20250418T230000 +DESCRIPTION:Track: Gaming\n\nRegistration window for the Super Secret Tets + uman Tournament. +LOCATION:Mahjong after dark - Arch 204+205 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Terroscape Horror Board Game +DTSTART:20250418T220000 +DTEND:20250418T235000 +DESCRIPTION:Track: Gaming\n\nTerrorscape is a team-based asymmetric horror + game. You could take the roles of the survivors or the killer. Survivors + cooperate to escape the mansion by searching for 5 keys or repairing the r + adio to make an emergency call. The killer is solely against the survivors + . The killer needs to locate the survivors by their noise or by skills and + decide how to eliminate them. +LOCATION:Tabletop Gaming - 615-617 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Naruto: Gekitou Ninja Taisen 4 Tournament +DTSTART:20250418T220000 +DTEND:20250418T235900 +DESCRIPTION:Track: Gaming\n\n +LOCATION:Tournament Gaming - 606-607 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Mahjong freeplay +DTSTART:20250418T230000 +DTEND:20250419T030000 +DESCRIPTION:Track: Gaming\n\nPlay mahjong with other attendees at one of o + ur many tables. An annual classic. +LOCATION:Mahjong after dark - Arch 204+205 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Super Secret Tetsuman Tournament +DTSTART:20250418T230000 +DTEND:20250419T040000 +DESCRIPTION:Track: Gaming\n\nThe after-hours mahjong tournament returns ag + ain! Stay up late alongside the pleasing sound of tiles and point sticks a + s you fight for your right to riichi. +LOCATION:Mahjong after dark - Arch 204+205 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Retro Gaming +DTSTART:20250418T100000 +DTEND:20250420T170000 +DESCRIPTION:Track: Gaming\n\n +LOCATION:Retro Gaming - 611-612 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Social Deception Gaming +DTSTART:20250418T160000 +DTEND:20250419T000000 +DESCRIPTION:Track: Gaming\n\nHave you ever wanted to lie\, betray and mayb + e even murder your friends or strangers? Come play Werewolf and other soci + al deception games! +LOCATION:Social Deception Games - 201 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Netrunner -- Learn to Play Demos +DTSTART:20250418T180000 +DTEND:20250419T220000 +DESCRIPTION:Track: Gaming\n\nPresented by Null Signal Games! +LOCATION:TCG - 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Mahjong freeplay +DTSTART:20250418T230000 +DTEND:20250419T030000 +DESCRIPTION:Track: Gaming\n\nPlay mahjong with other attendees at one of o + ur many tables. An annual classic. +LOCATION:Mahjong after dark - Arch 204+205 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Super Secret Tetsuman Tournament +DTSTART:20250418T230000 +DTEND:20250419T040000 +DESCRIPTION:Track: Gaming\n\nThe after-hours mahjong tournament returns ag + ain! Stay up late alongside the pleasing sound of tiles and point sticks a + s you fight for your right to riichi. +LOCATION:Mahjong after dark - Arch 204+205 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Video Game Tournament Room Open +DTSTART:20250419T060000 +DTEND:20250419T235900 +DESCRIPTION:Track: Gaming\n\nWe're running tournaments in all kinds of vid + eo games! Check out our full slate and register in the room or pre-registe + r ahead of time on https://www.start.gg/sakuracon - More spots will be mad + e available in-person on the day of the event\, so don't be discouraged if + your game's bracket is full online: Stop by the room to register or to be + added to the waitlist! +LOCATION:Tournament Gaming - 606-607 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Learn to play mahjong +DTSTART:20250419T090000 +DTEND:20250419T130000 +DESCRIPTION:Track: Gaming\n\nLearn to play Japanese riichi mahjong with on + e of our teachers! +LOCATION:Mahjong gaming - Summit 333+334 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Mahjong freeplay +DTSTART:20250419T090000 +DTEND:20250419T220000 +DESCRIPTION:Track: Gaming\n\nPlay mahjong with other attendees at one of o + ur many tables. An annual classic. +LOCATION:Mahjong gaming - Summit 333+334 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Magic: the Gathering – Casual Commander +DTSTART:20250419T090000 +DTEND:20250419T235900 +DESCRIPTION:Track: Gaming\n\nCome play a casual Commander game with friend + s\, strangers\, or even Sakura-Con staff! \n\nPods of 4 will be seated on- + demand. No deck? No problem! We've got a library of pre-constructed decks + you can borrow for the duration of your game. All participants will also r + eceive a ticket for the Grand Giveaway! +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:TCGs @ Sakura-Con - Saturday +DTSTART:20250419T090000 +DTEND:20250419T235900 +DESCRIPTION:Track: Gaming\n\nWelcome to the Sakura-Con 2025 Trading Card G + ames room! We'll be running events wall to wall all weekend long\, from Le + arn to Play events\, to Drafts\, Sealed\, Constructured\, and more for all + (maybe!) your favorite games! Any event you do in the room will earn you + a ticket that you can jealously hoard until Sunday when we have our Grand + Giveaway! Most of which is generously donated by our lovely sponsors\, don + ors\, and friends of the Con! \n\nWhether you're a seasoned pro or a you'v + e never played a card game in your life\, we'll have content for you! Come + learn a game you have always wanted to play or one you've never even hear + d of. And best of all\, every single thing in this room is free! So if you + want to come hang out with your fellow con-goer\, meet some new friends a + nd learn some fun games along the way\, our team of dedicated volunteers w + ill be here all weekend to guide you through the wonderful world of cardbo + ard. +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:WIXOSS – Learn to Play +DTSTART:20250419T093000 +DTEND:20250419T113000 +DESCRIPTION:Track: Gaming\n\nWixoss LTP \n\nA girl prayed to fulfill her w + ish. Scattered strange gene "Wixoss". All around the world fusion into one + form. Searching in vain for a fight...\n\nVictory will be the only way fo + r wish to revolutionize.\n\nNow\, shall her "Wish Across" be conquered. \n + \nDo you love card games? Do you like cute anime girls? Do you love rippin + g your opponent's entire hand 3 turns in a row? If so\, this might be the + game for you! We are looking to train new Selectors! In this strategy card + game you can pick your favorite anime girl\, also known as LRIGs to BATTL + E against other Selectors!\n\nWe are here to help you! Come by our table + and let us show you the ropes! You will be in good hands with our experien + ced team\, including the most recent North American Grand Prix Champion\, + Nichole Win.\n\nIf you like resource intensive games\, make sure to stop b + y! We look forward to meeting new Selectors and hope you have a great time + .\n\nOPEN! +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Digimon Card Game – Learn to Play +DTSTART:20250419T093000 +DTEND:20250419T120000 +DESCRIPTION:Track: Gaming\n\nDi-Di-Digimon! Digital Monsters\, The Card Ga + me! Come help to save the digital world and learn to play this rich card g + ame that has captivated audiences since 2020! Change yourself into a digit + al champion and save the digital world. And after you're done digivolving\ + , you'll receive a pack on us to start your journey and a ticket for the G + rand Giveaway on Sunday! +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Grand Archive – Learn to Play Demos +DTSTART:20250419T093000 +DTEND:20250419T163000 +DESCRIPTION:Track: Gaming\n\nWelcome to the Archive\, Champion – do you + have what it takes to forestall an apocalypse?\n\nCome find out and learn + Grand Archive\, a growing new TCG fusing anime aesthetics with the best of + western game design! Along with your demo kit\, all participants will rec + eive a ticket for the Grand Giveaway!\n\nAll material graciously provided + by Grand Archive’s developer and Sakura-Con sponsor\, Weebs of the Shore + . +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Flesh and Blood – Learn to Play +DTSTART:20250419T093000 +DTEND:20250419T233000 +DESCRIPTION:Track: Gaming\n\nDear Con-goer\, do you desire Flesh? Do you d + esire Blood? Perhaps even both at the same time? In that case\, we at the + TCG Room have you covered. Come see us and one of our Flesh Experts (Blood + Experts available upon request) will teach you all the ins and outs of th + e Flesh and Blood TCG. Should you survive the trials\, you will be rewarde + d with a raffle ticket for the Grand Giveaway on Sunday! +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:One Piece - Starter Deck Tournament +DTSTART:20250419T100000 +DTEND:20250419T120000 +DESCRIPTION:Track: Gaming\n\nReservation tickets will be available at the + TCG Infodesk on the day of the event. Unclaimed spots will be filled first + -come-first-serve from attendees present at event start time. +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Flesh and Blood - Blitz Deck Tournament +DTSTART:20250419T100000 +DTEND:20250419T123000 +DESCRIPTION:Track: Gaming\n\nReservation tickets will be available at the + TCG Infodesk on the day of the event. Unclaimed spots will be filled first + -come-first-serve from attendees present at event start time. +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Bust a Move Tournament +DTSTART:20250419T100000 +DTEND:20250419T130000 +DESCRIPTION:Track: Gaming\n\n +LOCATION:Tournament Gaming - 606-607 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Magic: the Gathering – Curated Chaos Draft +DTSTART:20250419T100000 +DTEND:20250419T140000 +DESCRIPTION:Track: Gaming\n\nPresented by MTGPlatinum.com< + /a> !\n\nCome and enjoy a completely free\, curated draft experience reach + ing through MTG history to provide you with an unpredictable experience yo + u won’t find anywhere else\n\nAll Curated Chaos drafts are three rounds + of best-of-one games. All participants will also receive a ticket for the + Grand Giveaway!\n\nReservation tickets will be available at the TCG Infode + sk on the day of the event. Unclaimed spots will be filled first-come-firs + t-serve from attendees present at event start time. +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Netrunner -- Learn to Play Demos +DTSTART:20250419T100000 +DTEND:20250419T140000 +DESCRIPTION:Track: Gaming\n\nPresented by Null Signal Games! +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Pokémon TCG – Build & Battle +DTSTART:20250419T100000 +DTEND:20250419T140000 +DESCRIPTION:Track: Gaming\n\nOh\, it’s all very fine and well to take yo + ur carefully-curated team to victory – but someone who’s true Champion + material has that special something that lets them bond with a team they + ’ve only just met\, intuitively understand their strengths and weaknesse + s\, and lead them to glory.\n\nHow do you develop a talent like that\, you + ask?\n\nWhy\, many rounds of Build & Battle\, of course! Assemble your de + ck from the contents of the provided Build & Battle Box\, and battle your + way to to the top of the mountain… or at least to a good time. All parti + cipants will also receive a ticket for the Grand Giveaway!\n\nReservation + tickets will be available at the TCG Infodesk on the day of the event. Unc + laimed spots will be filled first-come-first-serve from attendees present + at event start time. +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Alexandria RPG Library Presents: Classic\, Modern\, and Indie RPGs +DTSTART:20250419T100000 +DTEND:20250419T235900 +DESCRIPTION:Track: Gaming\n\nVisit the Alexandria RPG Library\, showcasing + hundreds of books\, modules\, and player aids from countless tabletop RPG + systems. Browse the history of TTRPGs\, create a character\, borrow a boo + k for the weekend\, or even sign up to play in or run an RPG session!\n\nT + he RPG room will open at 10am daily for browsing\, game signups\, and char + acter creation. Tickets for each day's scheduled sessions will be made ava + ilable at 10am\, and are first-come\, first-served. Game sessions begin at + 10:30am\, and start at intervals throughout the day. Check the con schedu + le\, or the signup desk in the RPG area\, to see available games and start + times. +LOCATION:Role-Playing Games - Arch 616-617 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Board Game Library +DTSTART:20250419T100000 +DTEND:20250420T235000 +DESCRIPTION:Track: Gaming\n\nBoard game library\, borrow board games from + Dragonflight and play with your friends! +LOCATION:Tabletop Gaming - 615-617 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Guilty Gear Strive Tournament +DTSTART:20250419T110000 +DTEND:20250419T140000 +DESCRIPTION:Track: Gaming\n\n +LOCATION:Tournament Gaming - 606-607 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Mighty Morphin' Power Rangers: Fighting Edition Tournament +DTSTART:20250419T110000 +DTEND:20250419T140000 +DESCRIPTION:Track: Gaming\n\n +LOCATION:Tournament Gaming - 606-607 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Shadowverse: Evolve – Learn to Play +DTSTART:20250419T110000 +DTEND:20250419T140000 +DESCRIPTION:Track: Gaming\n\nWhether you've played the online TCG for Shad + owverse or not\, Shadowverse Evolve is a exciting and enjoyable game that + promises to keep you on your toes constantly. Our resident Anime TCG Speci + alist will be here to teach you how to play and put you on your journey to + becoming a champion. +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Weiss Schwarz – Learn to Play +DTSTART:20250419T110000 +DTEND:20250419T140000 +DESCRIPTION:Track: Gaming\n\nHave you ever wanted every Anime ever made in + one TCG? Well then you'll love Weiss Schwarz! Come relive climactic battl + es and moments from your favorite Anime and learn a mechanically deep TCG + while you're at it! Hosted by our resident Anime TCG Expert\, you'll be gu + ided through your first game and then be on your way to being a champion! + All participants will also receive a ticket for the Grand Giveaway! +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:maimai DX UPPERS Tournament +DTSTART:20250419T110000 +DTEND:20250419T160000 +DESCRIPTION:Track: Gaming\n\nAdvance level tournament for the arcade game + maimai DX +LOCATION:Arcade - 6AB +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Mahjong etiquette +DTSTART:20250419T120000 +DTEND:20250419T123000 +DESCRIPTION:Track: Gaming\n\nRules\, tradition\, or social conspiracy? In + this session\, we go over etiquette at the table and at various points of + play in riichi mahjong so you won't have to wonder if it's polite to make + drumbeats or slam tiles at your next game. +LOCATION:Mahjong stadium - Summit 335 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Cardfight Vanguard!! Learn to Play +DTSTART:20250419T120000 +DTEND:20250419T140000 +DESCRIPTION:Track: Gaming\n\nEver wanted to try out an Anime card game kno + wn for being easy to learn and incredibly fun to master? Cardfight Vanguar + d!! is right up your alley then! Come and play with one of our Starter Dec + ks and be guided through a game by one of our volunteers! Complete a Learn + to Play session and receive a ticket for the Sunday Giveaway! +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:WIXOSS - Constructed Tournament +DTSTART:20250419T120000 +DTEND:20250419T150000 +DESCRIPTION:Track: Gaming\n\nReservation tickets will be available at the + TCG Infodesk on the day of the event. Unclaimed spots will be filled first + -come-first-serve from attendees present at event start time. +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Blood on The Clocktower +DTSTART:20250419T120000 +DTEND:20250419T160000 +DESCRIPTION:Track: Gaming\n\nCome play Blood on the Clocktower! These game + s will be for new players\, rules be taught. +LOCATION:Social Deception Games - 201 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Magic: The Gathering - Aetherdrift Draft +DTSTART:20250419T120000 +DTEND:20250419T160000 +DESCRIPTION:Track: Gaming\n\nCome and enjoy a completely free Draft experi + ence at Sakura-Con!\n\nAll drafts are three rounds of best-of-one games. A + ll participants will receive a ticket for the Grand Giveaway\, as well as + one pack per win!\n\nReservation tickets will be available at the TCG Info + desk on the day of the event. Unclaimed spots will be filled first-come-fi + rst-serve from attendees present at event start time. +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Mahjong freeplay - autotables +DTSTART:20250419T120000 +DTEND:20250419T160000 +DESCRIPTION:Track: Gaming\n\nPlay mahjong with other attendees at one of o + ur autotables. An annual classic now with its own queue. +LOCATION:Mahjong stadium - Summit 335 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Super Smash Bros Ultimate Tournament (3 of 4) +DTSTART:20250419T120000 +DTEND:20250419T160000 +DESCRIPTION:Track: Gaming\n\n +LOCATION:Tournament Gaming - 606-607 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Yu-Gi-Oh! Edison +DTSTART:20250419T120000 +DTEND:20250419T160000 +DESCRIPTION:Track: Gaming\n\nTravel back in time to 2010 and relive the fo + rmat as it was in the days of the last Shonen Jump Championship – as hel + d in the eponymous Edison\, NJ.\n\nThree rounds of best-of-one games. All + participants will receive a ticket for the Grand Giveaway\, as well as one + pack per win! (Modern product only – sorry!)\n\nReservation tickets wil + l be available at the TCG Infodesk on the day of the event. Two loaner dec + ks are available upon request as part of your reservation. Unclaimed spots + will be filled first-come-first-serve from attendees present at event sta + rt time. +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Social Deception Gaming +DTSTART:20250419T120000 +DTEND:20250420T000000 +DESCRIPTION:Track: Gaming\n\nHave you ever wanted to lie\, betray and mayb + e even murder your friends or strangers? Come play Werewolf and other soci + al deception games! +LOCATION:Social Deception Games - 201 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Sakura Cup orientation +DTSTART:20250419T123000 +DTEND:20250419T130000 +DESCRIPTION:Track: Gaming\n\nMatchmaking and table assignment for the Saku + ra Cup tournament. +LOCATION:Mahjong stadium - Summit 335 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:One Piece – Learn to Play +DTSTART:20250419T130000 +DTEND:20250419T160000 +DESCRIPTION:Track: Gaming\n\nObtain Fame\, Wealth\, and Power beyond your + wildest dreams by coming to the TCG Room and learning to play the One Piec + e TCG! Will you be able to find the buried treasure- Or perhaps the treasu + re is actually the friendships you formed in your journey? No matter what\ + , if you complete a learn to play session you will receive a ticket for ou + r Grand Giveaway on Sunday! +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Bomberman Tournament +DTSTART:20250419T130000 +DTEND:20250419T170000 +DESCRIPTION:Track: Gaming\n\n +LOCATION:Tournament Gaming - 606-607 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Digimon Card Game - Sealed +DTSTART:20250419T130000 +DTEND:20250419T170000 +DESCRIPTION:Track: Gaming\n\nReservation tickets will be available at the + TCG Infodesk on the day of the event. Unclaimed spots will be filled first + -come-first-serve from attendees present at event start time. +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Riichi Nomi N-League +DTSTART:20250419T130000 +DTEND:20250419T180000 +DESCRIPTION:Track: Gaming\n\nFrom Riichi Nomi in NYC comes the N-League\, + a series of streamed and commentated games played on live auto-tables. Wat + ch some of the best players in North America compete in this highly produc + ed and entertaining spectator mahjong show. +LOCATION:Mahjong stadium - Summit 335 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Sakura Cup +DTSTART:20250419T130000 +DTEND:20250419T180000 +DESCRIPTION:Track: Gaming\n\nJoin the annual Sakura Cup mahjong tournament + . Open to all attendees and free to enter! Registration opens Saturday mor + ning and ends at 12:30pm. +LOCATION:Mahjong gaming - Summit 333+334 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:PopCats Fighter! +DTSTART:20250419T140000 +DTEND:20250419T163000 +DESCRIPTION:Track: Gaming\n\nJoin the PopCats Fighter battle and claw your + way up to becoming the next Hairweight Champion by building out combos wi + th your Moves and uleashing Super Moves\, and unique Purrks! Test your mi + ght in a fast-paced 1v1 card game\, or become part of the world in the Pop + Cats RPG! +LOCATION:Tabletop Gaming - 615-617 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Street Fighter 6 Tournament +DTSTART:20250419T140000 +DTEND:20250419T180000 +DESCRIPTION:Track: Gaming\n\n +LOCATION:Tournament Gaming - 606-607 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Cardfight Vanguard!! - Starter Deck Showdown! +DTSTART:20250419T143000 +DTEND:20250419T173000 +DESCRIPTION:Track: Gaming\n\nReservation tickets will be available at the + TCG Infodesk on the day of the event. Unclaimed spots will be filled first + -come-first-serve from attendees present at event start time. +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Magic: the Gathering – Curated Chaos Draft +DTSTART:20250419T143000 +DTEND:20250419T183000 +DESCRIPTION:Track: Gaming\n\nPresented by MTGPlatinum.com< + /a> !\n\nCome and enjoy a completely free\, curated draft experience reach + ing through MTG history to provide you with an unpredictable experience yo + u won’t find anywhere else\n\nAll Curated Chaos drafts are three rounds + of best-of-one games. All participants will also receive a ticket for the + Grand Giveaway!\n\nReservation tickets will be available at the TCG Infode + sk on the day of the event. Unclaimed spots will be filled first-come-firs + t-serve from attendees present at event start time. +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Flesh and Blood - Booster Draft +DTSTART:20250419T150000 +DTEND:20250419T190000 +DESCRIPTION:Track: Gaming\n\nReservation tickets will be available at the + TCG Infodesk on the day of the event. Unclaimed spots will be filled first + -come-first-serve from attendees present at event start time. +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Pokémon TCG – Learn to Play +DTSTART:20250419T150000 +DTEND:20250419T210000 +DESCRIPTION:Track: Gaming\n\nSure\, maybe you can identify all the origina + l 151 just by their silhouettes\, sing every word of “Gotta Catch ‘Em + All” to yourself in the shower\, and have a full shiny living ‘dex on + Pokémon HOME - but if you really want to be the Champion\, you have to be + ready to take on all comers\, anytime\, anywhere… even at the card tabl + e.\n\nThat’s where we come in! Swing by and learn to play from some of t + he best trainers around\, courtesy of Tabletop Village’s elite roster.\n + \nAll participants will also receive a ticket for the Grand Giveaway – s + o start your climb to the top here\, and aim to become the very best. You + know it’s your destiny. +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:WIXOSS – Learn to Play +DTSTART:20250419T160000 +DTEND:20250419T190000 +DESCRIPTION:Track: Gaming\n\nWixoss LTP \n\nA girl prayed to fulfill her w + ish. Scattered strange gene "Wixoss". All around the world fusion into one + form. Searching in vain for a fight...\n\nVictory will be the only way fo + r wish to revolutionize.\n\nNow\, shall her "Wish Across" be conquered. \n + \nDo you love card games? Do you like cute anime girls? Do you love rippin + g your opponent's entire hand 3 turns in a row? If so\, this might be the + game for you! We are looking to train new Selectors! In this strategy card + game you can pick your favorite anime girl\, also known as LRIGs to BATTL + E against other Selectors!\n\nWe are here to help you! Come by our table + and let us show you the ropes! You will be in good hands with our experien + ced team\, including the most recent North American Grand Prix Champion\, + Nichole Win.\n\nIf you like resource intensive games\, make sure to stop b + y! We look forward to meeting new Selectors and hope you have a great time + .\n\nOPEN! +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Shadowverse: Evolve – Standard Tournament +DTSTART:20250419T160000 +DTEND:20250419T200000 +DESCRIPTION:Track: Gaming\n\nAre you a rookie? Or perhaps you're a practic + ed veteran of Shadowverse. Either way\, come and test your skills in this + Constructed Standard format tournament and win some prizes! All participan + ts will also receive a ticket for the Grand Giveaway!\n\nReservation ticke + ts will be available at the TCG Infodesk on the day of the event. Unclaime + d spots will be filled first-come-first-serve from attendees present at ev + ent start time. +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Super Smash Bros Ultimate Tournament (4 of 4) +DTSTART:20250419T160000 +DTEND:20250419T200000 +DESCRIPTION:Track: Gaming\n\n +LOCATION:Tournament Gaming - 606-607 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Learn to play mahjong +DTSTART:20250419T160000 +DTEND:20250419T220000 +DESCRIPTION:Track: Gaming\n\nLearn to play Japanese riichi mahjong with on + e of our teachers! +LOCATION:Mahjong gaming - Summit 333+334 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Quick & Crash Fastest Time Contest #2 +DTSTART:20250419T163000 +DTEND:20250419T180000 +DESCRIPTION:Track: Gaming\n\nTry to get the fastest time in Quick & Crash + for prizes! +LOCATION:Arcade - 6AB +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:One Piece - Starter Deck Tournament +DTSTART:20250419T163000 +DTEND:20250419T183000 +DESCRIPTION:Track: Gaming\n\nReservation tickets will be available at the + TCG Infodesk on the day of the event. Unclaimed spots will be filled first + -come-first-serve from attendees present at event start time. +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Grand Archive – Starter Deck Tournament +DTSTART:20250419T170000 +DTEND:20250419T200000 +DESCRIPTION:Track: Gaming\n\nYou’ve learned how to start the fight\, Cha + mpion – now let’s find out if you can finish it. Take up your provided + starter deck\, and go toe-to-toe with your peers in a test of skill alone + . But remember: even in defeat\, there is victory… in the form of a tick + et to the Grand Giveaway.\n\nReservation tickets will be available at the + TCG Infodesk on the day of the event. Unclaimed spots will be filled first + -come-first-serve from attendees present at event start time.\n\nAll mater + ial graciously provided by Grand Archive’s developer and Sakura-Con spon + sor\, Weebs of the Shore. +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Mario Kart 8 Tournament +DTSTART:20250419T170000 +DTEND:20250419T200000 +DESCRIPTION:Track: Gaming\n\n +LOCATION:Tournament Gaming - 606-607 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Magic: The Gathering - TBD Draft +DTSTART:20250419T170000 +DTEND:20250419T210000 +DESCRIPTION:Track: Gaming\n\nCome and enjoy a completely free Draft experi + ence at Sakura-Con!\n\nAll drafts are three rounds of best-of-one games. A + ll participants will receive a ticket for the Grand Giveaway\, as well as + one pack per win!\n\nReservation tickets will be available at the TCG Info + desk on the day of the event. Unclaimed spots will be filled first-come-fi + rst-serve from attendees present at event start time. +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Marvel vs. Capcom 2 Tournament +DTSTART:20250419T170000 +DTEND:20250419T210000 +DESCRIPTION:Track: Gaming\n\n +LOCATION:Tournament Gaming - 606-607 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Yu-Gi-Oh! Sealed +DTSTART:20250419T170000 +DTEND:20250419T220000 +DESCRIPTION:Track: Gaming\n\nReservation tickets will be available at the + TCG Infodesk on the day of the event. Unclaimed spots will be filled first + -come-first-serve from attendees present at event start time. +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Digimon Card Game - Starter Deck Tournament +DTSTART:20250419T173000 +DTEND:20250419T203000 +DESCRIPTION:Track: Gaming\n\nReservation tickets will be available at the + TCG Infodesk on the day of the event. Unclaimed spots will be filled first + -come-first-serve from attendees present at event start time. +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Chinitsu challenge: 1v1 a friend +DTSTART:20250419T180000 +DTEND:20250419T200000 +DESCRIPTION:Track: Gaming\n\nDrop in during the time block to play a quick + mahjong challenge against another attendee. Winner gets an exclusive badg + e ribbon! +LOCATION:Mahjong stadium - Summit 335 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Mahjong freeplay - autotables +DTSTART:20250419T180000 +DTEND:20250419T210000 +DESCRIPTION:Track: Gaming\n\nPlay mahjong with other attendees at one of o + ur autotables. An annual classic now with its own queue. +LOCATION:Mahjong stadium - Summit 335 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Tekken 8 Tournament +DTSTART:20250419T180000 +DTEND:20250419T220000 +DESCRIPTION:Track: Gaming\n\n +LOCATION:Tournament Gaming - 606-607 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:WACCA+ UPPERS Tournament +DTSTART:20250419T180000 +DTEND:20250419T230000 +DESCRIPTION:Track: Gaming\n\nAdvance level tournament for the arcade game + WACCA+ +LOCATION:Arcade - 6AB +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Magic: the Gathering – Curated Chaos Draft +DTSTART:20250419T190000 +DTEND:20250419T230000 +DESCRIPTION:Track: Gaming\n\nPresented by MTGPlatinum.com< + /a> !\n\nCome and enjoy a completely free\, curated draft experience reach + ing through MTG history to provide you with an unpredictable experience yo + u won’t find anywhere else\n\nAll Curated Chaos drafts are three rounds + of best-of-one games. All participants will also receive a ticket for the + Grand Giveaway!\n\nReservation tickets will be available at the TCG Infode + sk on the day of the event. Unclaimed spots will be filled first-come-firs + t-serve from attendees present at event start time. +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:One Piece – Learn to Play +DTSTART:20250419T193000 +DTEND:20250419T213000 +DESCRIPTION:Track: Gaming\n\nObtain Fame\, Wealth\, and Power beyond your + wildest dreams by coming to the TCG Room and learning to play the One Piec + e TCG! Will you be able to find the buried treasure- Or perhaps the treasu + re is actually the friendships you formed in your journey? No matter what\ + , if you complete a learn to play session you will receive a ticket for ou + r Grand Giveaway on Sunday! +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Mahjong quiz time: New beginnings +DTSTART:20250419T200000 +DTEND:20250419T210000 +DESCRIPTION:Track: Gaming\n\nDrop in during the time block to try one of m + ultiple short mahjong quizzes - good scores get a badge ribbon! Have a sho + t at questions around hand readiness\, final tile waits\, and good ol' yak + u! +LOCATION:Mahjong stadium - Summit 335 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Super Smash Bros Ultimate Top 8 Tournament +DTSTART:20250419T200000 +DTEND:20250419T220000 +DESCRIPTION:Track: Gaming\n\n +LOCATION:Tournament Gaming - 606-607 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Skullgirls Tournament +DTSTART:20250419T200000 +DTEND:20250419T230000 +DESCRIPTION:Track: Gaming\n\n +LOCATION:Tournament Gaming - 606-607 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:WIXOSS - Diva Debut Tournament (Starter Deck) +DTSTART:20250419T200000 +DTEND:20250419T230000 +DESCRIPTION:Track: Gaming\n\nReservation tickets will be available at the + TCG Infodesk on the day of the event. Unclaimed spots will be filled first + -come-first-serve from attendees present at event start time. +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Flesh and Blood - Blitz Deck Tournament +DTSTART:20250419T210000 +DTEND:20250419T233000 +DESCRIPTION:Track: Gaming\n\nReservation tickets will be available at the + TCG Infodesk on the day of the event. Unclaimed spots will be filled first + -come-first-serve from attendees present at event start time. +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Grand Archive – Learn to Play Demos +DTSTART:20250419T210000 +DTEND:20250419T235900 +DESCRIPTION:Track: Gaming\n\nWelcome to the Archive\, Champion – do you + have what it takes to forestall an apocalypse?\n\nCome find out and learn + Grand Archive\, a growing new TCG fusing anime aesthetics with the best of + western game design! Along with your demo kit\, all participants will rec + eive a ticket for the Grand Giveaway!\n\nAll material graciously provided + by Grand Archive’s developer and Sakura-Con sponsor\, Weebs of the Shore + . +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Two Rooms and A Boom +DTSTART:20250419T210000 +DTEND:20250420T000000 +DESCRIPTION:Track: Gaming\n\nIn this social game of hidden roles and deduc + tion\, players are divided into 2 different rooms. Find your teammates\, e + stablish trust\, and exchange hostages before time runs out and the bomb e + xplodes! It's the party game that's always a blast. +LOCATION:Social Deception Games - 201 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Digimon Card Game – Learn to Play +DTSTART:20250419T213000 +DTEND:20250419T233000 +DESCRIPTION:Track: Gaming\n\nDi-Di-Digimon! Digital Monsters\, The Card Ga + me! Come help to save the digital world and learn to play this rich card g + ame that has captivated audiences since 2020! Change yourself into a digit + al champion and save the digital world. And after you're done digivolving\ + , you'll receive a pack on us to start your journey and a ticket for the G + rand Giveaway on Sunday! +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:One Piece - Starter Deck Tournament +DTSTART:20250419T220000 +DTEND:20250419T120000 +DESCRIPTION:Track: Gaming\n\nReservation tickets will be available at the + TCG Infodesk on the day of the event. Unclaimed spots will be filled first + -come-first-serve from attendees present at event start time. +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Learn to play mahjong +DTSTART:20250419T220000 +DTEND:20250420T010000 +DESCRIPTION:Track: Gaming\n\nLearn to play Japanese riichi mahjong with on + e of our teachers! +LOCATION:Mahjong after dark - Arch 204+205 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Mahjong freeplay +DTSTART:20250419T220000 +DTEND:20250420T030000 +DESCRIPTION:Track: Gaming\n\nPlay mahjong with other attendees at one of o + ur many tables. An annual classic. +LOCATION:Mahjong after dark - Arch 204+205 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Retro Gaming +DTSTART:20250418T100000 +DTEND:20250420T170000 +DESCRIPTION:Track: Gaming\n\n +LOCATION:Retro Gaming - 611-612 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Board Game Library +DTSTART:20250419T100000 +DTEND:20250420T235000 +DESCRIPTION:Track: Gaming\n\nBoard game library\, borrow board games from + Dragonflight and play with your friends! +LOCATION:Tabletop Gaming - 615-617 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Social Deception Gaming +DTSTART:20250419T120000 +DTEND:20250420T000000 +DESCRIPTION:Track: Gaming\n\nHave you ever wanted to lie\, betray and mayb + e even murder your friends or strangers? Come play Werewolf and other soci + al deception games! +LOCATION:Social Deception Games - 201 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Two Rooms and A Boom +DTSTART:20250419T210000 +DTEND:20250420T000000 +DESCRIPTION:Track: Gaming\n\nIn this social game of hidden roles and deduc + tion\, players are divided into 2 different rooms. Find your teammates\, e + stablish trust\, and exchange hostages before time runs out and the bomb e + xplodes! It's the party game that's always a blast. +LOCATION:Social Deception Games - 201 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Learn to play mahjong +DTSTART:20250419T220000 +DTEND:20250420T010000 +DESCRIPTION:Track: Gaming\n\nLearn to play Japanese riichi mahjong with on + e of our teachers! +LOCATION:Mahjong after dark - Arch 204+205 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Mahjong freeplay +DTSTART:20250419T220000 +DTEND:20250420T030000 +DESCRIPTION:Track: Gaming\n\nPlay mahjong with other attendees at one of o + ur many tables. An annual classic. +LOCATION:Mahjong after dark - Arch 204+205 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Video Game Tournament Room Open +DTSTART:20250420T060000 +DTEND:20250420T170000 +DESCRIPTION:Track: Gaming\n\nWe're running tournaments in all kinds of vid + eo games! Check out our full slate and register in the room or pre-registe + r ahead of time on https://www.start.gg/sakuracon - More spots will be mad + e available in-person on the day of the event\, so don't be discouraged if + your game's bracket is full online: Stop by the room to register or to be + added to the waitlist! +LOCATION:Tournament Gaming - 606-607 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Mahjong quiz time: New beginnings +DTSTART:20250420T090000 +DTEND:20250420T100000 +DESCRIPTION:Track: Gaming\n\nDrop in during the time block to try one of m + ultiple short mahjong quizzes - good scores get a badge ribbon! Have a sho + t at questions around hand readiness\, final tile waits\, and good ol' yak + u! +LOCATION:Mahjong stadium - Summit 335 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Digimon Card Game – Learn to Play +DTSTART:20250420T090000 +DTEND:20250420T110000 +DESCRIPTION:Track: Gaming\n\nI've run out of Digimon puns and lyrics\, so + unfortunately you'll just have to settle with a Sealed tournament for free + ! Come visit us in the TCG Room and play a round of sealed Digimon on the + house\, complete with prizes and a ticket to all entries for our Grand Giv + eaway on Sunday!\n\nReservation tickets will be available at the TCG Infod + esk on the day of the event. Unclaimed spots will be filled first-come-fir + st-serve from attendees present at event start time. +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Pokémon TCG – Learn to Play +DTSTART:20250420T090000 +DTEND:20250420T110000 +DESCRIPTION:Track: Gaming\n\nSure\, maybe you can identify all the origina + l 151 just by their silhouettes\, sing every word of “Gotta Catch ‘Em + All” to yourself in the shower\, and have a full shiny living ‘dex on + Pokémon HOME - but if you really want to be the Champion\, you have to be + ready to take on all comers\, anytime\, anywhere… even at the card tabl + e.\n\nThat’s where we come in! Swing by and learn to play from some of t + he best trainers around\, courtesy of Tabletop Village’s elite roster.\n + \nAll participants will also receive a ticket for the Grand Giveaway – s + o start your climb to the top here\, and aim to become the very best. You + know it’s your destiny. +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Magic: the Gathering – Casual Commander +DTSTART:20250420T090000 +DTEND:20250420T150000 +DESCRIPTION:Track: Gaming\n\nCome play a casual Commander game with friend + s\, strangers\, or even Sakura-Con staff! \n\nPods of 4 will be seated on- + demand. No deck? No problem! We've got a library of pre-constructed decks + you can borrow for the duration of your game. All participants will also r + eceive a ticket for the Grand Giveaway! +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:TCGs @ Sakura-Con - Sunday +DTSTART:20250420T090000 +DTEND:20250420T150000 +DESCRIPTION:Track: Gaming\n\nWelcome to the Sakura-Con 2025 Trading Card G + ames room! We'll be running events wall to wall all weekend long\, from Le + arn to Play events\, to Drafts\, Sealed\, Constructured\, and more for all + (maybe!) your favorite games! Any event you do in the room will earn you + a ticket that you can jealously hoard until Sunday when we have our Grand + Giveaway! Most of which is generously donated by our lovely sponsors\, don + ors\, and friends of the Con! \n\nWhether you're a seasoned pro or a you'v + e never played a card game in your life\, we'll have content for you! Come + learn a game you have always wanted to play or one you've never even hear + d of. And best of all\, every single thing in this room is free! So if you + want to come hang out with your fellow con-goer\, meet some new friends a + nd learn some fun games along the way\, our team of dedicated volunteers w + ill be here all weekend to guide you through the wonderful world of cardbo + ard. +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Learn to play mahjong +DTSTART:20250420T090000 +DTEND:20250420T160000 +DESCRIPTION:Track: Gaming\n\nLearn to play Japanese riichi mahjong with on + e of our teachers! +LOCATION:Mahjong gaming - Summit 333+334 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Mahjong freeplay +DTSTART:20250420T090000 +DTEND:20250420T160000 +DESCRIPTION:Track: Gaming\n\nPlay mahjong with other attendees at one of o + ur many tables. An annual classic. +LOCATION:Mahjong gaming - Summit 333+334 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Mahjong freeplay - autotables +DTSTART:20250420T090000 +DTEND:20250420T160000 +DESCRIPTION:Track: Gaming\n\nPlay mahjong with other attendees at one of o + ur autotables. An annual classic now with its own queue. +LOCATION:Mahjong stadium - Summit 335 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:WIXOSS – Learn to Play +DTSTART:20250420T093000 +DTEND:20250420T120000 +DESCRIPTION:Track: Gaming\n\nWixoss LTP \n\nA girl prayed to fulfill her w + ish. Scattered strange gene "Wixoss". All around the world fusion into one + form. Searching in vain for a fight...\n\nVictory will be the only way fo + r wish to revolutionize.\n\nNow\, shall her "Wish Across" be conquered. \n + \nDo you love card games? Do you like cute anime girls? Do you love rippin + g your opponent's entire hand 3 turns in a row? If so\, this might be the + game for you! We are looking to train new Selectors! In this strategy card + game you can pick your favorite anime girl\, also known as LRIGs to BATTL + E against other Selectors!\n\nWe are here to help you! Come by our table + and let us show you the ropes! You will be in good hands with our experien + ced team\, including the most recent North American Grand Prix Champion\, + Nichole Win.\n\nIf you like resource intensive games\, make sure to stop b + y! We look forward to meeting new Selectors and hope you have a great time + .\n\nOPEN! +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:One Piece – Learn to Play +DTSTART:20250420T093000 +DTEND:20250420T130000 +DESCRIPTION:Track: Gaming\n\nObtain Fame\, Wealth\, and Power beyond your + wildest dreams by coming to the TCG Room and learning to play the One Piec + e TCG! Will you be able to find the buried treasure- Or perhaps the treasu + re is actually the friendships you formed in your journey? No matter what\ + , if you complete a learn to play session you will receive a ticket for ou + r Grand Giveaway on Sunday! +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Flesh and Blood – Learn to Play +DTSTART:20250420T093000 +DTEND:20250420T153000 +DESCRIPTION:Track: Gaming\n\nDear Con-goer\, do you desire Flesh? Do you d + esire Blood? Perhaps even both at the same time? In that case\, we at the + TCG Room have you covered. Come see us and one of our Flesh Experts (Blood + Experts available upon request) will teach you all the ins and outs of th + e Flesh and Blood TCG. Should you survive the trials\, you will be rewarde + d with a raffle ticket for the Grand Giveaway on Sunday! +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Grand Archive – Constructed Tournament +DTSTART:20250420T093000 +DTEND:20250420T163000 +DESCRIPTION:Track: Gaming\n\nThis is it – the ultimate test of everythin + g you’ve learned and everything you’ve prepared. Carve your path to gr + eatness. We believe in you.\n\nAll participants will receive a ticket for + the Grand Giveaway\, plus prizes donated by Weebs of the Shore\n\nReservat + ion tickets will be available at the TCG Infodesk on the day of the event. + Unclaimed spots will be filled first-come-first-serve from attendees pres + ent at event start time. +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Mahjong strategy: review session +DTSTART:20250420T100000 +DTEND:20250420T120000 +DESCRIPTION:Track: Gaming\n\nOne of the best ways to get better is to see + what other players do. In this review session we go through mahjong game l + ogs and analyze the discards on a play-by-play basis\, covering topics of + strategy in the process. +LOCATION:Mahjong stadium - Summit 335 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Mystery Game Tournament +DTSTART:20250420T100000 +DTEND:20250420T130000 +DESCRIPTION:Track: Gaming\n\n +LOCATION:Tournament Gaming - 606-607 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Magic: the Gathering – Curated Chaos Draft +DTSTART:20250420T100000 +DTEND:20250420T140000 +DESCRIPTION:Track: Gaming\n\nPresented by MTGPlatinum.com< + /a> !\n\nCome and enjoy a completely free\, curated draft experience reach + ing through MTG history to provide you with an unpredictable experience yo + u won’t find anywhere else\n\nAll Curated Chaos drafts are three rounds + of best-of-one games. All participants will also receive a ticket for the + Grand Giveaway!\n\nReservation tickets will be available at the TCG Infode + sk on the day of the event. Unclaimed spots will be filled first-come-firs + t-serve from attendees present at event start time. +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Netrunner -- Learn to Play Demos +DTSTART:20250420T100000 +DTEND:20250420T140000 +DESCRIPTION:Track: Gaming\n\nPresented by Null Signal Games! +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Board Game Library +DTSTART:20250420T100000 +DTEND:20250420T160000 +DESCRIPTION:Track: Gaming\n\nBoard game library\, borrow board games from + Dragonflight and play with your friends! +LOCATION:Tabletop Gaming - 615-617 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Alexandria RPG Library Presents: Classic\, Modern\, and Indie RPGs +DTSTART:20250420T100000 +DTEND:20250420T170000 +DESCRIPTION:Track: Gaming\n\nVisit the Alexandria RPG Library\, showcasing + hundreds of books\, modules\, and player aids from countless tabletop RPG + systems. Browse the history of TTRPGs\, create a character\, borrow a boo + k for the weekend\, or even sign up to play in or run an RPG session!\n\nT + he RPG room will open at 10am daily for browsing\, game signups\, and char + acter creation. Tickets for each day's scheduled sessions will be made ava + ilable at 10am\, and are first-come\, first-served. Game sessions begin at + 10:30am\, and start at intervals throughout the day. Check the con schedu + le\, or the signup desk in the RPG area\, to see available games and start + times. +LOCATION:Role-Playing Games - Arch 616-617 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Shadowverse: Evolve – Learn to Play +DTSTART:20250420T110000 +DTEND:20250420T130000 +DESCRIPTION:Track: Gaming\n\nWhether you've played the online TCG for Shad + owverse or not\, Shadowverse Evolve is a exciting and enjoyable game that + promises to keep you on your toes constantly. Our resident Anime TCG Speci + alist will be here to teach you how to play and put you on your journey to + becoming a champion. +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Weiss Schwarz – Learn to Play +DTSTART:20250420T110000 +DTEND:20250420T130000 +DESCRIPTION:Track: Gaming\n\nHave you ever wanted every Anime ever made in + one TCG? Well then you'll love Weiss Schwarz! Come relive climactic battl + es and moments from your favorite Anime and learn a mechanically deep TCG + while you're at it! Hosted by our resident Anime TCG Expert\, you'll be gu + ided through your first game and then be on your way to being a champion! + All participants will also receive a ticket for the Grand Giveaway! +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:BlazBlue: Central Fiction Tournament +DTSTART:20250420T110000 +DTEND:20250420T140000 +DESCRIPTION:Track: Gaming\n\n +LOCATION:Tournament Gaming - 606-607 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Es Laf++ Tournament +DTSTART:20250420T110000 +DTEND:20250420T140000 +DESCRIPTION:Track: Gaming\n\n +LOCATION:Tournament Gaming - 606-607 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Magic: The Gathering - TBD Draft +DTSTART:20250420T110000 +DTEND:20250420T150000 +DESCRIPTION:Track: Gaming\n\nCome and enjoy a completely free Draft experi + ence at Sakura-Con!\n\nAll drafts are three rounds of best-of-one games. A + ll participants will receive a ticket for the Grand Giveaway\, as well as + one pack per win!\n\nReservation tickets will be available at the TCG Info + desk on the day of the event. Unclaimed spots will be filled first-come-fi + rst-serve from attendees present at event start time. +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Yu-Gi-Oh! Goat +DTSTART:20250420T110000 +DTEND:20250420T150000 +DESCRIPTION:Track: Gaming\n\nTake a trip back to the nostalgic days of the + summer of 2005 with Yu-Gi-Oh’s classic Goat format\, and experience the + timeless joy of starting your turn by playing Pot of Greed\, which allows + you to draw two more cards from your deck. But I’m not done yet…\n\nT + hree rounds of best-of-one games. All participants will receive a ticket f + or the Grand Giveaway\, as well as one pack per win! (Modern product only + – sorry!)\n\nReservation tickets will be available at the TCG Infodesk o + n the day of the event. Unclaimed spots will be filled first-come-first-se + rve from attendees present at event start time. +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Yu-Gi-Oh! Standard +DTSTART:20250420T110000 +DTEND:20250420T150000 +DESCRIPTION:Track: Gaming\n\nWelcome\, Duelist! Here's something a bit mor + e modern for you – a Standard Format Yu-Gi-Oh Tournament. Come over to t + he TCG Room and prove you're the best duelist at Sakura-Con (besides Kaiba + \, of course) and put your skills on display. Eager to show off your Ryzea + l deck? Or maybe you're still playing Tenpai Dragon? – No matter what yo + u're playing\, we encourage you to stop by and win some prizes.\n\nThree r + ounds of best-of-one games. All participants will receive a ticket for the + Grand Giveaway\, as well as one pack per win!\n\nReservation tickets will + be available at the TCG Infodesk on the day of the event. Two loaner deck + s are available upon request (First come first serve) upon request as part + of your reservation. Unclaimed spots will be filled first-come-first-serv + e from attendees present at event start time. +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Chunithm UPPERS Tournament +DTSTART:20250420T110000 +DTEND:20250420T160000 +DESCRIPTION:Track: Gaming\n\nAdvance level tournament for the arcade game + Chunithm +LOCATION:Arcade - 6AB +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Digimon Card Game - Sealed +DTSTART:20250420T113000 +DTEND:20250420T153000 +DESCRIPTION:Track: Gaming\n\nReservation tickets will be available at the + TCG Infodesk on the day of the event. Unclaimed spots will be filled first + -come-first-serve from attendees present at event start time. +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Flesh and Blood - Booster Draft +DTSTART:20250420T113000 +DTEND:20250420T153000 +DESCRIPTION:Track: Gaming\n\nReservation tickets will be available at the + TCG Infodesk on the day of the event. Unclaimed spots will be filled first + -come-first-serve from attendees present at event start time. +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Pokémon TCG – Build & Battle +DTSTART:20250420T113000 +DTEND:20250420T153000 +DESCRIPTION:Track: Gaming\n\nOh\, it’s all very fine and well to take yo + ur carefully-curated team to victory – but someone who’s true Champion + material has that special something that lets them bond with a team they + ’ve only just met\, intuitively understand their strengths and weaknesse + s\, and lead them to glory.\n\nHow do you develop a talent like that\, you + ask?\n\nWhy\, many rounds of Build & Battle\, of course! Assemble your de + ck from the contents of the provided Build & Battle Box\, and battle your + way to to the top of the mountain… or at least to a good time. All parti + cipants will also receive a ticket for the Grand Giveaway!\n\nReservation + tickets will be available at the TCG Infodesk on the day of the event. Unc + laimed spots will be filled first-come-first-serve from attendees present + at event start time. +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Mahjong in the US +DTSTART:20250420T120000 +DTEND:20250420T130000 +DESCRIPTION:Track: Gaming\n\nNow that you know how to play mahjong\, where + do you go from here? Mahjong in the US is flourishing\, with numerous reg + ional clubs\, online leagues\, and organized tournaments that funnel into + the highest levels of global mahjong play. Mahjong is now more available a + nd accessible than ever for people of all skill levels. +LOCATION:Mahjong stadium - Summit 335 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Social Deception Gaming +DTSTART:20250420T120000 +DTEND:20250420T170000 +DESCRIPTION:Track: Gaming\n\nHave you ever wanted to lie\, betray and mayb + e even murder your friends or strangers? Come play Werewolf and other soci + al deception games! +LOCATION:Social Deception Games - 201 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:WIXOSS - Diva Debut Tournament (Starter Deck) +DTSTART:20250420T123000 +DTEND:20250420T153000 +DESCRIPTION:Track: Gaming\n\nReservation tickets will be available at the + TCG Infodesk on the day of the event. Unclaimed spots will be filled first + -come-first-serve from attendees present at event start time. +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:How to crush at mahjong +DTSTART:20250420T130000 +DTEND:20250420T140000 +DESCRIPTION:Track: Gaming\n\nNot a mahjong beginner\, but not yet a pro? L + earn some tips and tricks to crush at mahjong more often. +LOCATION:Mahjong stadium - Summit 335 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Rock Paper Scissors: Hit and Cover Tournament +DTSTART:20250420T130000 +DTEND:20250420T150000 +DESCRIPTION:Track: Gaming\n\n +LOCATION:Tournament Gaming - 606-607 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Cardfight Vanguard!! Learn to Play +DTSTART:20250420T133000 +DTEND:20250420T153000 +DESCRIPTION:Track: Gaming\n\nWhether you're just starting out with CFV or + a seasoned veteran\, if you have your own deck we invite you to come to th + is Constructed event and get to know your fellow CFV enjoying con-goer! So + come jam some games\, win some prizes\, and earn a ticket for the Grand G + iveaway on Sunday just for participating!\n\nReservation tickets will be a + vailable at the TCG Infodesk on the day of the event. Unclaimed spots will + be filled first-come-first-serve from attendees present at event start ti + me. +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:One Piece - Starter Deck Tournament +DTSTART:20250420T133000 +DTEND:20250420T153000 +DESCRIPTION:Track: Gaming\n\nReservation tickets will be available at the + TCG Infodesk on the day of the event. Unclaimed spots will be filled first + -come-first-serve from attendees present at event start time. +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Chinitsu challenge: 1v1 a friend +DTSTART:20250420T140000 +DTEND:20250420T160000 +DESCRIPTION:Track: Gaming\n\nDrop in during the time block to play a quick + mahjong challenge against another attendee. Winner gets an exclusive badg + e ribbon! +LOCATION:Mahjong stadium - Summit 335 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:TCGs @ Sakura-Con – Grand Giveaway 2024 +DTSTART:20250420T160000 +DTEND:20250420T170000 +DESCRIPTION:Track: Gaming\n\nDo you feel... lucky?\n\nCome see if all thos + e tickets you’ve accumulated from TCG events have won you greatness and + glory… or just a giant stuffed Pokémon. It’s close enough to greatnes + s\, if you ask us. +LOCATION:Arch Floor 6 Room 618-620 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Quick & Crash Fastest Time Contest #3 +DTSTART:20250420T163000 +DTEND:20250420T180000 +DESCRIPTION:Track: Gaming\n\nTry to get the fastest time in Quick & Crash + for prizes! +LOCATION:Arcade - 6AB +STATUS:ACTIVE +END:VEVENT +END:VCALENDAR diff --git a/calendar_Guest_of_Honor.ics b/calendar_Guest_of_Honor.ics new file mode 100644 index 0000000..20794bc --- /dev/null +++ b/calendar_Guest_of_Honor.ics @@ -0,0 +1,435 @@ +BEGIN:VCALENDAR +VERSION:2.0 +PRODID:-//Guest of Honor Schedule//eventeny.com// +X-WR-CALNAME:Guest of Honor +BEGIN:VEVENT +SUMMARY:Ian & Sonny talk One Piece +DTSTART:20250418T110000 +DTEND:20250418T120000 +CATEGORIES:Ian Sinclair,Sonny Strait +DESCRIPTION:Track: Guest of Honor\nTags: Ian Sinclair\,Sonny Strait\n\nJoi + n Ian Sinclair and Sonny Strait as they chat about their thoughts and expe + riences voice acting for One Piece. +LOCATION:Relations Panels - 437-439 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Life Fibers\, Half-Demons\, and Explosions... Oh My! +DTSTART:20250418T113000 +DTEND:20250418T123000 +CATEGORIES:Erica Mendez +DESCRIPTION:Track: Guest of Honor\nTags: Erica Mendez\n\nKill la Kill\, Ge + nshin Impact\, Sword Art Online\, Sailor Moon… these are just some of ma + ny\nthe fun titles that Erica has been a part of. Don’t lose your way an + d come ask questions about some of your favorite projects she’s been in! +LOCATION:Relations Panels - 433-434 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Brandon McInnis and J. Michael Tatum Q&A +DTSTART:20250418T123000 +DTEND:20250418T133000 +CATEGORIES:Brandon McInnis,Guest of Honor,J. Michael Tatum +DESCRIPTION:Track: Guest of Honor\nTags: Brandon McInnis\,Guest of Honor\, + J. Michael Tatum\n\n +LOCATION:Relations Panels - 437-439 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Sora Tokui Panel +DTSTART:20250418T123000 +DTEND:20250418T133000 +CATEGORIES:Guest of Honor,Sora Tokui +DESCRIPTION:Track: Guest of Honor\nTags: Guest of Honor\,Sora Tokui\n\nSor + a Tokui is a voice actress\, voice of Nico Yazawa\, T.M. Opera O\, Hook an + d more! But she’s also a singer\, manga artist\, and yes\, even a VTuber + ! Come hear some stories about her experience working in the industry\, a + nd on some beloved fan franchises! +LOCATION:Relations Panels/Premiers - Ballroom 3 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Casey Mongillo Q&A +DTSTART:20250418T130000 +DTEND:20250418T140000 +CATEGORIES:Casey Mongillo,Guest of Honor +DESCRIPTION:Track: Guest of Honor\nTags: Casey Mongillo\,Guest of Honor\n\ + n +LOCATION:Relations Panels - 433-434 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Women in Anime +DTSTART:20250418T133000 +DTEND:20250418T143000 +CATEGORIES:Abby Trott,Emi Lo,Erica Lindbeck,Trina Nishimura +DESCRIPTION:Track: Guest of Honor\nTags: Abby Trott\,Emi Lo\,Erica Lindbec + k\,Trina Nishimura\n\nJoin some of your favorite voice actresses as they t + alk about what it's like to be a woman working in the anime industry\, the + ir favorite characters\, tropes they love/hate\, and more! +LOCATION:Relations Panels/Premiers - Ballroom 2 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Reol Q&A Panel +DTSTART:20250418T143000 +DTEND:20250418T153000 +CATEGORIES:Reol +DESCRIPTION:Track: Guest of Honor\nTags: Reol\n\n +LOCATION:Relations Panels/Premiers - Ballroom 3 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:VO Workshop 101 with Lucien Dodge +DTSTART:20250418T143000 +DTEND:20250418T153000 +CATEGORIES:Guest of Honor,Lucien Dodge +DESCRIPTION:Track: Guest of Honor\nTags: Guest of Honor\,Lucien Dodge\n\nE + ver wanted to try your hand… err… voice… at voice acting\, or maybe + just get a glimpse behind the production curtain? In this introductory co + urse\, Lucien will group up volunteers to perform scenes from various anim + e and video games\, and give personalized direction to simulate an in-stud + io recording session +LOCATION:Relations Panels - 433-434 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Jordan Dash Cruz Q&A +DTSTART:20250418T160000 +DTEND:20250418T170000 +CATEGORIES:Guest of Honor,Jordan Dash Cruz +DESCRIPTION:Track: Guest of Honor\nTags: Guest of Honor\,Jordan Dash Cruz\ + n\n +LOCATION:Relations Panels - 437-439 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:TurtleMe and Yen Press Presents: Getting Stronger and Stronger—I + nto the World of Action Fantasy +DTSTART:20250418T160000 +DTEND:20250418T170000 +CATEGORIES:Guest of Honor,Industry,TurtleMe,Yen Press +DESCRIPTION:Track: Guest of Honor\nTags: Guest of Honor\,Industry\,TurtleM + e\,Yen Press\n\nAs the creator of The Beginning After the End\, a popular + webnovel which has been adapted to a Crunchyroll anime\, there are few who + are as versed in the world of action fantasy as creator TurtleMe. Join Tu + rtleMe in a fun-filled and informative discussion on the genre! +LOCATION:Relations Panels - 433-434 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Discover GQuuuuuuX!! –“Mobile Suit Gundam GQuuuuuuX -Beginning + -“ Movie Screening +DTSTART:20250418T160000 +DTEND:20250418T180000 +CATEGORIES:Bandai,Industry,Screening,Simba Tsuchiya +DESCRIPTION:Track: Guest of Honor\nTags: Bandai\,Industry\,Screening\,Simb + a Tsuchiya\n\nCome discover and learn about the new “Mobile Suit Gundam + GQuuuuuuX” with a special guest appearance from the voice of Shuji Itō\ + , Simba Tsuchiya!\n*The movie\, “Mobile Suit Gundam GQuuuuuuX –Beginni + ng-“ is a theatrical debut using re-edited episodes from the upcoming TV + series\, “Mobile Suit Gundam GQuuuuuuX” +LOCATION:Relations Panels/Premiers - Ballroom 2 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Sally Amaki Panel +DTSTART:20250418T170000 +DTEND:20250418T180000 +CATEGORIES:Guest of Honor,Sally Amaki +DESCRIPTION:Track: Guest of Honor\nTags: Guest of Honor\,Sally Amaki\n\nBi + lingual voice actress and idol Sally Amaki is the beloved voice of charact + ers such as Fujima Sakura from 22/7\, Carol Olsten from Tomo-chan is a Gir + l!\, Kiriko from Overwatch\, and most recently Peni Parker from Marvel Riv + als. Come enjoy this special panel that talks about her career\, and make + sure to stay until the end as there may be some special prizes! +LOCATION:Relations Panels/Premiers - Ballroom 3 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Oriana Peron - Drag Race +DTSTART:20250418T170000 +DTEND:20250418T190000 +CATEGORIES:Oriana Peron +DESCRIPTION:Track: Guest of Honor\nTags: Oriana Peron\n\nDo you have what + it takes to be a Drag Superstar? Come experience and partake in the Origin + al Cosplay Drag Race created by America’s Premiere Cosplay Drag Queen Or + iana Peron\, Drag King co-host Verna Vendetta\, and local guest Drag Super + stars! Attendee contestants engage in fun and silly games to compete for t + his year's title! No experience needed\, just show up and volunteer to com + pete\, everyone is welcome. Or\, sit back and watch the antics. The quirky + competition events are intermixed with professional Drag performances for + all ages. +LOCATION:Summit Stage +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Dameon Clarke Q&A +DTSTART:20250418T173000 +DTEND:20250418T183000 +CATEGORIES:Dameon Clarke,Guest of Honor +DESCRIPTION:Track: Guest of Honor\nTags: Dameon Clarke\,Guest of Honor\n\n +LOCATION:Relations Panels - 433-434 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Xander Mobus Q&A +DTSTART:20250418T173000 +DTEND:20250418T183000 +CATEGORIES:Guest of Honor,Xander Mobus +DESCRIPTION:Track: Guest of Honor\nTags: Guest of Honor\,Xander Mobus\n\n +LOCATION:Relations Panels - 437-439 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Hitsujibungaku Concert +DTSTART:20250418T190000 +DTEND:20250418T200000 +CATEGORIES:Hitsujibungaku +DESCRIPTION:Track: Guest of Honor\nTags: Hitsujibungaku\n\n +LOCATION:Mainstage - 4AB +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Amalee Q&A +DTSTART:20250419T110000 +DTEND:20250419T120000 +CATEGORIES:AmaLee,Guest of Honor +DESCRIPTION:Track: Guest of Honor\nTags: AmaLee\,Guest of Honor\n\n +LOCATION:Relations Panels - 433-434 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Bandai Namco Filmworks Industry Panel (feat. Simba Tsuchiya) +DTSTART:20250419T110000 +DTEND:20250419T120000 +CATEGORIES:Bandai,Guest of Honor,Industry,Simba Tsuchiya +DESCRIPTION:Track: Guest of Honor\nTags: Bandai\,Guest of Honor\,Industry\ + ,Simba Tsuchiya\n\nCome to the Bandai Namco Filmworks Industry Panel to ge + t our latest news on upcoming anime and to talk about the new “Mobile Su + it Gundam GQuuuuuuX” with a special guest appearance from Simba Tsuchiya + (the voice of Shuji Itō). +LOCATION:Relations Panels/Premiers - Ballroom 3 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Ian Sinclair Q&A +DTSTART:20250419T113000 +DTEND:20250419T123000 +CATEGORIES:Guest of Honor,Ian Sinclair +DESCRIPTION:Track: Guest of Honor\nTags: Guest of Honor\,Ian Sinclair\n\n +LOCATION:Relations Panels - 437-439 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Demon Slayer Chat! +DTSTART:20250419T123000 +DTEND:20250419T133000 +CATEGORIES:Abby Trott,Brandon McInnis,Erica Lindbeck,Guest of Honor +DESCRIPTION:Track: Guest of Honor\nTags: Abby Trott\,Brandon McInnis\,Eric + a Lindbeck\,Guest of Honor\n\nSome familiar voices sit down and chat about + their experiences and memories working on Demon Slayer! +LOCATION:Relations Panels/Premiers - Ballroom 3 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Yen Press Presents: From Webnovel to Anime—The Journey of Turtle + Me\, Creator of The Beginning After t +DTSTART:20250419T123000 +DTEND:20250419T133000 +CATEGORIES:Guest of Honor,Industry,TurtleMe,Yen Press +DESCRIPTION:Track: Guest of Honor\nTags: Guest of Honor\,Industry\,TurtleM + e\,Yen Press\n\nTurtleMe is the creator of The Beginning After the End\, a + long running webnovel which has been adapted into one of today’s most p + opular webcomics and an anime set to air on Crunchyroll. Join TurtleMe and + Yen Press in a brief journey through his career as a creator leading up t + o the exciting premiere of The Beginning After the End’s anime followed + by a Q&A session with fans! +LOCATION:Relations Panels - 433-434 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Sonny Strait Q&A +DTSTART:20250419T130000 +DTEND:20250419T140000 +CATEGORIES:Guest of Honor,Sonny Strait +DESCRIPTION:Track: Guest of Honor\nTags: Guest of Honor\,Sonny Strait\n\n +LOCATION:Relations Panels - 437-439 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:h.NAOTO Doors Open +DTSTART:20250419T140000 +DTEND:20250419T143000 +DESCRIPTION:Track: Guest of Honor\n\n +LOCATION:Summit Stage +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Voice-Over Workout with Erica Mendez +DTSTART:20250419T140000 +DTEND:20250419T150000 +CATEGORIES:Erica Mendez,Guest of Honor +DESCRIPTION:Track: Guest of Honor\nTags: Erica Mendez\,Guest of Honor\n\nH + osted by voice actor and occasional director\, Erica Mendez\, come get a c + hance to read scripts and get a taste of what voice acting can be like wit + h the added pressure of reading in front of an audience of more people tha + n would be at an actual session! +LOCATION:Relations Panels - 433-434 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Damien Haas Q&A +DTSTART:20250419T143000 +DTEND:20250419T153000 +CATEGORIES:Damien Haas,Guest of Honor +DESCRIPTION:Track: Guest of Honor\nTags: Damien Haas\,Guest of Honor\n\n +LOCATION:Relations Panels - 437-439 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:h.NAOTO Fashion Show and Q&A +DTSTART:20250419T143000 +DTEND:20250419T160000 +CATEGORIES:Fashion Show,h.NAOTO +DESCRIPTION:Track: Guest of Honor\nTags: Fashion Show\,h.NAOTO\n\n +LOCATION:Summit Stage +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Seiyuu Idol? Or Idol Seiyuu? Featuring Sally Amaki and Sora Tokui +DTSTART:20250419T153000 +DTEND:20250419T163000 +CATEGORIES:Guest of Honor,Sally Amaki,Sora Tokui +DESCRIPTION:Track: Guest of Honor\nTags: Guest of Honor\,Sally Amaki\,Sora + Tokui\n\nWhat was it like to voice one of the most famous anime idols\, a + nd how is it being part of a real life idol group in Japan? Has Sora Toku + i’s life been altered after Sally introduced her to the mysterious red p + owder (Flaming Hot Ch______)?\nFor answers to these burning questions and + more\, stop by this special collaborative panel! +LOCATION:Relations Panels/Premiers - Ballroom 2 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Trina Nishimura Q&A +DTSTART:20250419T153000 +DTEND:20250419T163000 +CATEGORIES:Guest of Honor,Trina Nishimura +DESCRIPTION:Track: Guest of Honor\nTags: Guest of Honor\,Trina Nishimura\n + \n +LOCATION:Relations Panels - 433-434 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Directing Anime with Jordan Dash Cruz +DTSTART:20250419T160000 +DTEND:20250419T170000 +CATEGORIES:Guest of Honor,Jordan Dash Cruz +DESCRIPTION:Track: Guest of Honor\nTags: Guest of Honor\,Jordan Dash Cruz\ + n\nCurious about what directors are looking for from newer talent when cas + ting for an anime? Come hear Jodan Dash Cruz give the inside scoop! +LOCATION:Relations Panels - 437-439 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Hitsujibungaku Q&A +DTSTART:20250419T160000 +DTEND:20250419T170000 +CATEGORIES:Guest of Honor,Hitsujibungaku +DESCRIPTION:Track: Guest of Honor\nTags: Guest of Honor\,Hitsujibungaku\n\ + n +LOCATION:Relations Panels/Premiers - Ballroom 3 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Emi Lo Q&A +DTSTART:20250419T170000 +DTEND:20250419T180000 +CATEGORIES:Emi Lo,Guest of Honor +DESCRIPTION:Track: Guest of Honor\nTags: Emi Lo\,Guest of Honor\n\n +LOCATION:Relations Panels - 433-434 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Q&A with Lucien Dodge +DTSTART:20250419T173000 +DTEND:20250419T183000 +CATEGORIES:Guest of Honor,Lucien Dodge +DESCRIPTION:Track: Guest of Honor\nTags: Guest of Honor\,Lucien Dodge\n\n +LOCATION:Relations Panels - 437-439 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Sally Amaki Concert +DTSTART:20250419T190000 +DTEND:20250419T193000 +CATEGORIES:concert,Sally Amaki +DESCRIPTION:Track: Guest of Honor\nTags: concert\,Sally Amaki\n\n +LOCATION:Mainstage - 4AB +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Reol Concert +DTSTART:20250419T194500 +DTEND:20250419T204500 +CATEGORIES:concert,Reol +DESCRIPTION:Track: Guest of Honor\nTags: concert\,Reol\n\n +LOCATION:Mainstage - 4AB +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Oriana Peron - Drag Show +DTSTART:20250419T210000 +DTEND:20250419T220000 +CATEGORIES:Drag Show,Oriana Peron +DESCRIPTION:Track: Guest of Honor\nTags: Drag Show\,Oriana Peron\n\nGet re + ady for The Original Cosplay Drag Show starring Oriana Peron and featuring + some of the hottest Drag Cosplay talents\, including local stars! Oriana + has brought you some wild and exciting queer entertainment\, so come and e + njoy the show. All ages\, gender identities\, sexualities\, and humans are + welcome to enjoy this award-winning lineup that’s been thrilling conven + tion attendees across the USA since 2012. +LOCATION:Summit Stage +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Dameon Clarke Panel 2 +DTSTART:20250420T110000 +DTEND:20250420T120000 +CATEGORIES:Dameon Clarke,Guest of Honor +DESCRIPTION:Track: Guest of Honor\nTags: Dameon Clarke\,Guest of Honor\n\n +LOCATION:Relations Panels - 437-439 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Xander Mobus Panel 2 +DTSTART:20250420T113000 +DTEND:20250420T123000 +CATEGORIES:Guest of Honor,Xander Mobus +DESCRIPTION:Track: Guest of Honor\nTags: Guest of Honor\,Xander Mobus\n\n +LOCATION:Relations Panels - 433-434 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:J. Michael Tatum Q&A +DTSTART:20250420T130000 +DTEND:20250420T140000 +CATEGORIES:Guest of Honor,J. Michael Tatum +DESCRIPTION:Track: Guest of Honor\nTags: Guest of Honor\,J. Michael Tatum\ + n\n +LOCATION:Relations Panels - 433-434 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Delicious in Dungeon with Damien Haas & Casey Mongillo +DTSTART:20250420T140000 +DTEND:20250420T150000 +CATEGORIES:Casey Mongillo,Damien Haas,Guest of Honor +DESCRIPTION:Track: Guest of Honor\nTags: Casey Mongillo\,Damien Haas\,Gues + t of Honor\n\nWhat dungeon monster would you like to try? Do you think you + could make it as an adventurer? The voices of Laios and Chilchuck answer + these questions and many more! +LOCATION:Relations Panels/Premiers - Ballroom 3 +STATUS:ACTIVE +END:VEVENT +END:VCALENDAR diff --git a/calendar_Industry_Panel.ics b/calendar_Industry_Panel.ics new file mode 100644 index 0000000..c797a4d --- /dev/null +++ b/calendar_Industry_Panel.ics @@ -0,0 +1,103 @@ +BEGIN:VCALENDAR +VERSION:2.0 +PRODID:-//Industry Panel Schedule//eventeny.com// +X-WR-CALNAME:Industry Panel +BEGIN:VEVENT +SUMMARY:The Beginning After the End Episodes 1-2 Special Screening +DTSTART:20250418T120000 +DTEND:20250418T130000 +CATEGORIES:Crunchyroll,premiere,Screening +DESCRIPTION:Track: Industry Panel\nTags: Crunchyroll\,premiere\,Screening\ + n\nAfter a mysterious death\, King Grey is reborn as Arthur Leywin on the + magical continent of Dicathen. Although he enters his second life as a bab + y\, his previous wisdom remains. He begins to master magic and forge his o + wn path as the years go by\, seeking to correct the mistakes of his past l + ife. +LOCATION:Relations Panels/Premiers - Ballroom 2 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Yen Press Industry Panel +DTSTART:20250418T143000 +DTEND:20250418T153000 +CATEGORIES:Industry,Yen Press +DESCRIPTION:Track: Industry Panel\nTags: Industry\,Yen Press\n\nFor over a + decade\, Yen Press has been one of the biggest publishers of manga\, rele + asing the likes of Black Butler\, Fruits Basket and Toilet-bound Hanako-ku + n. Additionally\, Yen Press has stood out as an innovative force in the pu + blishing world\, giving a home to fan favorite categories\, such as light + novels through Yen On\, audiobooks through Yen Audio\, and Korean content + through Ize Press. Join Yen Press as they make groundbreaking announcement + s\, hand out amazing gifts and prizes\, and answer your most pressing ques + tions! +LOCATION:Relations Panels - 437-439 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Crunchyroll Premieres: Sakura-Con Edition +DTSTART:20250419T113000 +DTEND:20250419T133000 +CATEGORIES:Crunchyroll,premiere,Screening +DESCRIPTION:Track: Industry Panel\nTags: Crunchyroll\,premiere\,Screening\ + n\nDon't miss your chance to be the first to watch upcoming anime coming s + oon to Crunchyroll! Featuring premieres for Solo Camping for Two\, Dekin n + o Mogura: The Earthbound Mole\, Konosuba Bonus Stage\, plus a special scre + ening for Can a Boy-Girl Friendship Survive?. +LOCATION:Relations Panels/Premiers - Ballroom 2 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Aniplex of America Industry Panel +DTSTART:20250419T183000 +DTEND:20250419T193000 +CATEGORIES:Aniplex,Industry +DESCRIPTION:Track: Industry Panel\nTags: Aniplex\,Industry\n\nDo titles li + ke Demon Slayer: Kimetsu no Yaiba\, Sword Art Online\, or WIND BREAKER mak + e your otaku heart skip a beat? Then you don’t want to miss the Aniplex + of America Industry Panel! Join us as we bring you the latest news on all + your favorite Aniplex shows! +LOCATION:Relations Panels - 433-434 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:My Hero Academia Vigilantes 1-2 Special Screening +DTSTART:20250420T110000 +DTEND:20250420T120000 +CATEGORIES:Crunchyroll,premiere,Screening +DESCRIPTION:Track: Industry Panel\nTags: Crunchyroll\,premiere\,Screening\ + n\nKoichi Haimawari is a dull college student who aspires to be a hero but + has given up on his dream. Although 80% of the world’s population has s + uperhuman powers called Quirks\, few are chosen to become heroes and prote + ct people. Everything changes for Koichi when he and Pop☆Step are saved + by the vigilante Knuckleduster and get recruited to become vigilantes them + selves! +LOCATION:Relations Panels/Premiers - Ballroom 3 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Aniplex of America Games Panel +DTSTART:20250420T123000 +DTEND:20250420T133000 +CATEGORIES:Aniplex,Industry +DESCRIPTION:Track: Industry Panel\nTags: Aniplex\,Industry\n\nWant to leve + l up your fandom for your favorite Aniplex of America titles? Join us for + the Aniplex of America Games panel where you can learn about the latest ne + ws and updates on all your favorite Aniplex of America game titles! +LOCATION:Relations Panels - 437-439 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Publang: Inside the BL Publishing Industry (18+) +DTSTART:20250420T140000 +DTEND:20250420T150000 +CATEGORIES:BL,Industry,Publang +DESCRIPTION:Track: Industry Panel\nTags: BL\,Industry\,Publang\n\nEver won + dered what happens when passionate\, life-long fujoshis come together? The + y build a BL publishing powerhouse! Publang proudly brings you hit Korean + BL novels like Payback\, Define the Relationship\, and Semantic Error\, al + ong with Danmei series like Wine and Gun through partnerships. Join us for + exclusive new license reveals and exciting prizes! +LOCATION:Relations Panels - 437-439 +STATUS:ACTIVE +END:VEVENT +END:VCALENDAR diff --git a/calendar_Main_Stage.ics b/calendar_Main_Stage.ics new file mode 100644 index 0000000..e43943c --- /dev/null +++ b/calendar_Main_Stage.ics @@ -0,0 +1,113 @@ +BEGIN:VCALENDAR +VERSION:2.0 +PRODID:-//Main Stage Schedule//eventeny.com// +X-WR-CALNAME:Main Stage +BEGIN:VEVENT +SUMMARY:Opening Ceremonies Doors Open +DTSTART:20250418T093000 +DTEND:20250418T100000 +CATEGORIES:Ceremonies +DESCRIPTION:Track: Main Stage\nTags: Ceremonies\n\n +LOCATION:Mainstage - 4AB +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Opening Ceremonies +DTSTART:20250418T100000 +DTEND:20250418T110000 +CATEGORIES:Ceremonies,SC-ALL +DESCRIPTION:Track: Main Stage\nTags: Ceremonies\,SC-ALL\n\n +LOCATION:Mainstage - 4AB +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Friday Dance +DTSTART:20250418T220000 +DTEND:20250419T040000 +CATEGORIES:Dance +DESCRIPTION:Track: Main Stage\nTags: Dance\n\n +LOCATION:Mainstage - 4AB +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Friday Dance +DTSTART:20250418T220000 +DTEND:20250419T040000 +CATEGORIES:Dance +DESCRIPTION:Track: Main Stage\nTags: Dance\n\n +LOCATION:Mainstage - 4AB +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:AMV Contest Doors Open +DTSTART:20250419T120000 +DTEND:20250419T123000 +CATEGORIES:AMV,Contest +DESCRIPTION:Track: Main Stage\nTags: AMV\,Contest\n\n +LOCATION:Mainstage - 4AB +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:AMV Contest +DTSTART:20250419T123000 +DTEND:20250419T150000 +CATEGORIES:AMV,Contest,SC-13 +DESCRIPTION:Track: Main Stage\nTags: AMV\,Contest\,SC-13\n\n +LOCATION:Mainstage - 4AB +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Saturday Dance +DTSTART:20250419T230000 +DTEND:20250420T040000 +CATEGORIES:Dance +DESCRIPTION:Track: Main Stage\nTags: Dance\n\n +LOCATION:Mainstage - 4AB +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Saturday Dance +DTSTART:20250419T230000 +DTEND:20250420T040000 +CATEGORIES:Dance +DESCRIPTION:Track: Main Stage\nTags: Dance\n\n +LOCATION:Mainstage - 4AB +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:AMV Winners Showcase Doors Open +DTSTART:20250420T130000 +DTEND:20250420T133000 +CATEGORIES:AMV,Contest +DESCRIPTION:Track: Main Stage\nTags: AMV\,Contest\n\n +LOCATION:Mainstage - 4AB +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:AMV Winners Showcase +DTSTART:20250420T133000 +DTEND:20250420T143000 +CATEGORIES:AMV,Contest,SC-13 +DESCRIPTION:Track: Main Stage\nTags: AMV\,Contest\,SC-13\n\n +LOCATION:Mainstage - 4AB +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Closing Ceremonies Doors Open +DTSTART:20250420T153000 +DTEND:20250420T160000 +CATEGORIES:Ceremonies +DESCRIPTION:Track: Main Stage\nTags: Ceremonies\n\n +LOCATION:Mainstage - 4AB +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Closing Ceremonies +DTSTART:20250420T160000 +DTEND:20250420T170000 +CATEGORIES:Ceremonies,SC-ALL +DESCRIPTION:Track: Main Stage\nTags: Ceremonies\,SC-ALL\n\n +LOCATION:Mainstage - 4AB +STATUS:ACTIVE +END:VEVENT +END:VCALENDAR diff --git a/calendar_Sakura-Con_Presents.ics b/calendar_Sakura-Con_Presents.ics new file mode 100644 index 0000000..09847fc --- /dev/null +++ b/calendar_Sakura-Con_Presents.ics @@ -0,0 +1,1059 @@ +BEGIN:VCALENDAR +VERSION:2.0 +PRODID:-//Sakura-Con Presents Schedule//eventeny.com// +X-WR-CALNAME:Sakura-Con Presents +BEGIN:VEVENT +SUMMARY:Registration +DTSTART:20250418T060000 +DTEND:20250418T220000 +CATEGORIES:registration +DESCRIPTION:Track: Sakura-Con Presents\nTags: registration\n\n +LOCATION:Registration - Flex B & C +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Open Mic +DTSTART:20250418T090000 +DTEND:20250418T143000 +DESCRIPTION:Track: Sakura-Con Presents\n\n +LOCATION:Karaoke - Terrace Suite +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Manga Swaps Open +DTSTART:20250418T090000 +DTEND:20250418T200000 +DESCRIPTION:Track: Sakura-Con Presents\n\n +LOCATION:Manga Swap - 435 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Manga Library Open +DTSTART:20250418T090000 +DTEND:20250418T220000 +DESCRIPTION:Track: Sakura-Con Presents\n\n +LOCATION:Manga Library - 427-429 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:AMV Showcase +DTSTART:20250418T090000 +DTEND:20250418T230000 +CATEGORIES:AMV,SC-13 +DESCRIPTION:Track: Sakura-Con Presents\nTags: AMV\,SC-13\n\nAMVs to make y + ou laugh\, cry\, cheer and just plain enjoy. +LOCATION:AMV - 6C +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:AMVs From the Vault +DTSTART:20250418T100000 +DTEND:20250418T110000 +CATEGORIES:AMV,SC-13 +DESCRIPTION:Track: Sakura-Con Presents\nTags: AMV\,SC-13\n\nIs there an AM + V you once saw at a con years ago and have been longing to watch again? Yo + u just may find it here! We’ll be showing some obscure and hard-to-find + AMVs from our extensive 20-year-old vault. Requests are encouraged! +LOCATION:AMV Workshop - 613 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Free Build Session +DTSTART:20250418T100000 +DTEND:20250418T113000 +CATEGORIES:Mecha,Modeling +DESCRIPTION:Track: Sakura-Con Presents\nTags: Mecha\,Modeling\n\nThere wil + l be a limited number of FREE kits available at each Free Build Session. T + hese kits are first come\, first serve. We highly recommend queuing in adv + ance of each session. Registration will be required at the door for you to + enter and work on your kit at one of our stations. Tools and assistance w + ill be available along with both beginner and more advanced kits. You are + also welcome to bring a kit of your own to any build session and use our t + ools or get assistance from one of our room staff members. All free build + stations will need to be cleared at the end of the session to prepare for + the next session. +LOCATION:Model Building Workshop - 327 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Learn to Ballroom Dance 101 +DTSTART:20250418T100000 +DTEND:20250418T120000 +CATEGORIES:Ball,Dance,Masquerade,SC-ALL +DESCRIPTION:Track: Sakura-Con Presents\nTags: Ball\,Dance\,Masquerade\,SC- + ALL\n\n +LOCATION:Dance Lessons - 420-422 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Artist Alley +DTSTART:20250418T100000 +DTEND:20250418T180000 +CATEGORIES:artist alley +DESCRIPTION:Track: Sakura-Con Presents\nTags: artist alley\n\n +LOCATION:Artist Alley - 4EF +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Exhibits Hall +DTSTART:20250418T100000 +DTEND:20250418T180000 +CATEGORIES:exhibit hall +DESCRIPTION:Track: Sakura-Con Presents\nTags: exhibit hall\n\n +LOCATION:Exhibits Hall +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Scavenger Hunt HQ +DTSTART:20250418T100000 +DTEND:20250418T200000 +DESCRIPTION:Track: Sakura-Con Presents\n\n +LOCATION:Prog Office - 323 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Multi-Editor Projects +DTSTART:20250418T110000 +DTEND:20250418T123000 +CATEGORIES:AMV,SC-13 +DESCRIPTION:Track: Sakura-Con Presents\nTags: AMV\,SC-13\n\nCome see some + long form videos\, featuring multiple editors working together. +LOCATION:AMV - 6C +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Free Build Session +DTSTART:20250418T120000 +DTEND:20250418T133000 +CATEGORIES:Mecha,Modeling +DESCRIPTION:Track: Sakura-Con Presents\nTags: Mecha\,Modeling\n\nThere wil + l be a limited number of FREE kits available at each Free Build Session. T + hese kits are first come\, first serve. We highly recommend queuing in adv + ance of each session. Registration will be required at the door for you to + enter and work on your kit at one of our stations. Tools and assistance w + ill be available along with both beginner and more advanced kits. You are + also welcome to bring a kit of your own to any build session and use our t + ools or get assistance from one of our room staff members. All free build + stations will need to be cleared at the end of the session to prepare for + the next session. +LOCATION:Model Building Workshop - 327 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:AMVs that Represent +DTSTART:20250418T123000 +DTEND:20250418T133000 +CATEGORIES:AMV,SC-13 +DESCRIPTION:Track: Sakura-Con Presents\nTags: AMV\,SC-13\n\nA collection o + f AMVs Showcasing diversity and inclusion of all. +LOCATION:AMV - 6C +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Learn to Ballroom Dance 201 +DTSTART:20250418T130000 +DTEND:20250418T150000 +CATEGORIES:Ball,Dance,Masquerade,SC-ALL +DESCRIPTION:Track: Sakura-Con Presents\nTags: Ball\,Dance\,Masquerade\,SC- + ALL\n\n +LOCATION:Dance Lessons - 420-422 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:AMV Gameshow +DTSTART:20250418T133000 +DTEND:20250418T150000 +CATEGORIES:AMV,SC-13 +DESCRIPTION:Track: Sakura-Con Presents\nTags: AMV\,SC-13\n\nThink you know + AMVs? Even if not\, everybody’s got a shot in this ultimate game of AMV + trivia filled with chances to win awesome prizes and the glory of AMV Gam + eshow Champion. You do NOT want to miss this. +LOCATION:AMV - 6C +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Free Build Session +DTSTART:20250418T140000 +DTEND:20250418T153000 +CATEGORIES:Mecha,Modeling +DESCRIPTION:Track: Sakura-Con Presents\nTags: Mecha\,Modeling\n\nThere wil + l be a limited number of FREE kits available at each Free Build Session. T + hese kits are first come\, first serve. We highly recommend queuing in adv + ance of each session. Registration will be required at the door for you to + enter and work on your kit at one of our stations. Tools and assistance w + ill be available along with both beginner and more advanced kits. You are + also welcome to bring a kit of your own to any build session and use our t + ools or get assistance from one of our room staff members. All free build + stations will need to be cleared at the end of the session to prepare for + the next session. +LOCATION:Model Building Workshop - 327 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:AMV Creators Showcase +DTSTART:20250418T141500 +DTEND:20250418T154500 +CATEGORIES:AMV,SC-13 +DESCRIPTION:Track: Sakura-Con Presents\nTags: AMV\,SC-13\n\nCome meet some + of the creators of the AMVs you've come to know and love. +LOCATION:AMV Workshop - 613 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Grandpa's AMV Stash +DTSTART:20250418T150000 +DTEND:20250418T160000 +CATEGORIES:AMV,SC-13 +DESCRIPTION:Track: Sakura-Con Presents\nTags: AMV\,SC-13\n\nThe old farts + have been AMV fans since long before you were a twinkle in your momma's ey + e. Come see what was popular when they were your age! +LOCATION:AMV - 6C +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Karaoke Idol Round 1 +DTSTART:20250418T150000 +DTEND:20250418T170000 +DESCRIPTION:Track: Sakura-Con Presents\n\n +LOCATION:Karaoke - Terrace Suite +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:AMV Category Courtroom Improv +DTSTART:20250418T160000 +DTEND:20250418T173000 +CATEGORIES:AMV,SC-13 +DESCRIPTION:Track: Sakura-Con Presents\nTags: AMV\,SC-13\n\nSome AMVs are + hard to categorize! Is it Drama\, or Comedy? Join us for improvisational s + illiness as we recruit “Category Lawyers” from the audience to zealous + ly litigate categories for some very troublesome AMVs! YOU get to be the j + ury! +LOCATION:AMV - 6C +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Free Build Session +DTSTART:20250418T160000 +DTEND:20250418T173000 +CATEGORIES:Mecha,Modeling +DESCRIPTION:Track: Sakura-Con Presents\nTags: Mecha\,Modeling\n\nThere wil + l be a limited number of FREE kits available at each Free Build Session. T + hese kits are first come\, first serve. We highly recommend queuing in adv + ance of each session. Registration will be required at the door for you to + enter and work on your kit at one of our stations. Tools and assistance w + ill be available along with both beginner and more advanced kits. You are + also welcome to bring a kit of your own to any build session and use our t + ools or get assistance from one of our room staff members. All free build + stations will need to be cleared at the end of the session to prepare for + the next session. +LOCATION:Model Building Workshop - 327 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Open Mic +DTSTART:20250418T170000 +DTEND:20250418T220000 +DESCRIPTION:Track: Sakura-Con Presents\n\n +LOCATION:Karaoke - Terrace Suite +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:All the Feels +DTSTART:20250418T173000 +DTEND:20250418T183000 +CATEGORIES:AMV,SC-13 +DESCRIPTION:Track: Sakura-Con Presents\nTags: AMV\,SC-13\n\nWhy settle for + just one feels\, when you can feel ALL the feels. +LOCATION:AMV - 6C +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Pixel-Perfect GMVs +DTSTART:20250418T174500 +DTEND:20250418T184500 +CATEGORIES:AMV,SC-13 +DESCRIPTION:Track: Sakura-Con Presents\nTags: AMV\,SC-13\n\nWant to see mo + re video games during the con? Then drop by and celebrate your gamer pride + with this GMV playlist of K.O. inducing hits and rapid tap action! +LOCATION:AMV Workshop - 613 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Free Build Session +DTSTART:20250418T180000 +DTEND:20250418T193000 +DESCRIPTION:Track: Sakura-Con Presents\n\nThere will be a limited number o + f FREE kits available at each Free Build Session. These kits are first com + e\, first serve. We highly recommend queuing in advance of each session. R + egistration will be required at the door for you to enter and work on your + kit at one of our stations. Tools and assistance will be available along + with both beginner and more advanced kits. You are also welcome to bring a + kit of your own to any build session and use our tools or get assistance + from one of our room staff members. All free build stations will need to b + e cleared at the end of the session to prepare for the next session. +LOCATION:Model Building Workshop - 327 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Masquerade Ball +DTSTART:20250418T180000 +DTEND:20250418T200000 +CATEGORIES:Ball,Dance,Masquerade,SC-ALL +DESCRIPTION:Track: Sakura-Con Presents\nTags: Ball\,Dance\,Masquerade\,SC- + ALL\n\n +LOCATION:SakuraDome - 6E +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:A Brief History of the Yuriverse: AMV Edition +DTSTART:20250418T190000 +DTEND:20250418T200000 +CATEGORIES:AMV,SC-13 +DESCRIPTION:Track: Sakura-Con Presents\nTags: AMV\,SC-13\n\nWe’ll be wal + king through the history of yuri\, now illustrated with AMVs! Join us as w + e explore the transformation and growth of yuri from its humble beginnings + in religious all-girls’ schools to its modern multigenre explosion enco + mpassing complex adult relationships. +LOCATION:AMV Workshop - 613 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Koi-Koi: Best Overflow Contest (Audience Voting) +DTSTART:20250418T190000 +DTEND:20250418T210000 +CATEGORIES:AMV,SC-13 +DESCRIPTION:Track: Sakura-Con Presents\nTags: AMV\,SC-13\n\nThere are so m + any fierce entries in the AMV contest that it breaks our hearts to have to + narrow it down at all. Come let us know which video deserves justice by v + oting for your favorite of the non-finalists! +LOCATION:AMV - 6C +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Open Build Session +DTSTART:20250418T200000 +DTEND:20250418T220000 +CATEGORIES:Mecha,Modeling +DESCRIPTION:Track: Sakura-Con Presents\nTags: Mecha\,Modeling\n\nOpen Buil + d Sessions will not have any free build stations (unless we have any left + over kits from the day's free build sessions). These sessions are purely f + or bring your own kit building and fun. +LOCATION:Model Building Workshop - 327 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Hollywood in your Basement! Using Special Effects in AMVs +DTSTART:20250418T201500 +DTEND:20250418T211500 +CATEGORIES:AMV,SC-10 +DESCRIPTION:Track: Sakura-Con Presents\nTags: AMV\,SC-10\n\nStep inside th + ree award winning videos heavily altered with special effects made by Vlad + (Chronicles of Ghibli\, We Need You! & Once Upon a Time in Russia) and se + e how they were made! +LOCATION:AMV Workshop - 613 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:WatchJojo Presents: AMVs That Go Full Ham with Lip Sync +DTSTART:20250418T210000 +DTEND:20250418T220000 +CATEGORIES:AMV,SC-13 +DESCRIPTION:Track: Sakura-Con Presents\nTags: AMV\,SC-13\n\nWatchJojo is b + ack! This time we'll be counting down our top picks for AMVs that hysteric + ally or impressively go over the top with the lip sync. +LOCATION:AMV - 6C +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:When Manga and Music Collide +DTSTART:20250418T213000 +DTEND:20250418T223000 +CATEGORIES:AMV,SC-13 +DESCRIPTION:Track: Sakura-Con Presents\nTags: AMV\,SC-13\n\nHave you ever + wanted to see your favorite manga come to life? Witness characters leap of + f the page as we explore the incredible artistry of Manga Music Videos. Wi + th custom rigging\, animation\, and color\, we can even pretend that our f + avorite mangas got the anime we knew they deserved! +LOCATION:AMV Workshop - 613 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:AMV Hell 8.0 +DTSTART:20250418T220000 +DTEND:20250419T000000 +CATEGORIES:AMV,SC-13 +DESCRIPTION:Track: Sakura-Con Presents\nTags: AMV\,SC-13\n\nJust when you + thought there would be no more AMV Hell! Come and celebrate the 20th Anniv + ersary of AMV Hell with 'AMV Hell 8: The Deepest Point'. This iconic serie + s of AMV comedy shorts was made especially for cons and we are excited to + show it at Sakura-Con on the big screen. Don't miss your chance to see it\ + , as you never know it could be the last one! +LOCATION:AMV - 6C +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Do It For The Vine: A Celebration of the Shortform AMV +DTSTART:20250418T224500 +DTEND:20250418T234500 +CATEGORIES:AMV,SC-13 +DESCRIPTION:Track: Sakura-Con Presents\nTags: AMV\,SC-13\n\nVine compilati + ons! We’ve seen the memes\, but what else did this unique video platform + have to offer? This panel will focus on a lesser known but equally import + ant part of the Vine ecosystem\, the #edit community. Come down and snack + on some AMV bites that pack as many calories as a four course meal! +LOCATION:AMV Workshop - 613 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Cosplay Chess - Late Night Edition +DTSTART:20250418T230000 +DTEND:20250419T010000 +CATEGORIES:Chess,Cosplay,SC-MA +DESCRIPTION:Track: Sakura-Con Presents\nTags: Chess\,Cosplay\,SC-MA\n\n +LOCATION:SakuraDome - 6E +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:AMV Hell 8.0 +DTSTART:20250418T220000 +DTEND:20250419T000000 +CATEGORIES:AMV,SC-13 +DESCRIPTION:Track: Sakura-Con Presents\nTags: AMV\,SC-13\n\nJust when you + thought there would be no more AMV Hell! Come and celebrate the 20th Anniv + ersary of AMV Hell with 'AMV Hell 8: The Deepest Point'. This iconic serie + s of AMV comedy shorts was made especially for cons and we are excited to + show it at Sakura-Con on the big screen. Don't miss your chance to see it\ + , as you never know it could be the last one! +LOCATION:AMV - 6C +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Cosplay Chess - Late Night Edition +DTSTART:20250418T230000 +DTEND:20250419T010000 +CATEGORIES:Chess,Cosplay,SC-MA +DESCRIPTION:Track: Sakura-Con Presents\nTags: Chess\,Cosplay\,SC-MA\n\n +LOCATION:SakuraDome - 6E +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:The Midnight Run: Toonami Tribute +DTSTART:20250419T000000 +DTEND:20250419T020000 +CATEGORIES:AMV,SC-13 +DESCRIPTION:Track: Sakura-Con Presents\nTags: AMV\,SC-13\n\nThink you know + Toonami? It's older than you realize! Celebrate action packed AMVs paying + tribute to the American block that started it all! Stay gold. +LOCATION:AMV - 6C +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Registration +DTSTART:20250419T060000 +DTEND:20250419T220000 +CATEGORIES:registration +DESCRIPTION:Track: Sakura-Con Presents\nTags: registration\n\n +LOCATION:Registration - Flex B & C +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:AMV Showcase +DTSTART:20250419T080000 +DTEND:20250419T100000 +CATEGORIES:AMV,SC-13 +DESCRIPTION:Track: Sakura-Con Presents\nTags: AMV\,SC-13\n\nAMVs to make y + ou laugh\, cry\, cheer and just plain enjoy. +LOCATION:AMV - 6C +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Free Build Session +DTSTART:20250419T090000 +DTEND:20250419T103000 +CATEGORIES:Mecha,Modeling +DESCRIPTION:Track: Sakura-Con Presents\nTags: Mecha\,Modeling\n\nThere wil + l be a limited number of FREE kits available at each Free Build Session. T + hese kits are first come\, first serve. We highly recommend queuing in adv + ance of each session. Registration will be required at the door for you to + enter and work on your kit at one of our stations. Tools and assistance w + ill be available along with both beginner and more advanced kits. You are + also welcome to bring a kit of your own to any build session and use our t + ools or get assistance from one of our room staff members. All free build + stations will need to be cleared at the end of the session to prepare for + the next session. +LOCATION:Model Building Workshop - 327 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Open Mic +DTSTART:20250419T090000 +DTEND:20250419T143000 +DESCRIPTION:Track: Sakura-Con Presents\n\n +LOCATION:Karaoke - Terrace Suite +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Manga Swaps Open +DTSTART:20250419T090000 +DTEND:20250419T200000 +DESCRIPTION:Track: Sakura-Con Presents\n\n +LOCATION:Manga Swap - 435 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Scavenger Hunt HQ +DTSTART:20250419T090000 +DTEND:20250419T210000 +DESCRIPTION:Track: Sakura-Con Presents\n\n +LOCATION:Prog Office - 323 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Manga Library Open +DTSTART:20250419T090000 +DTEND:20250419T220000 +DESCRIPTION:Track: Sakura-Con Presents\n\n +LOCATION:Manga Library - 427-429 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:And Now a Word from our Sponsors +DTSTART:20250419T100000 +DTEND:20250419T110000 +CATEGORIES:AMV,SC-13 +DESCRIPTION:Track: Sakura-Con Presents\nTags: AMV\,SC-13\n\nTrailers\, Ads + and Commercial AMVs. +LOCATION:AMV - 6C +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Artist Alley +DTSTART:20250419T100000 +DTEND:20250419T180000 +CATEGORIES:artist alley +DESCRIPTION:Track: Sakura-Con Presents\nTags: artist alley\n\n +LOCATION:Artist Alley - 4EF +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:The Sounds of Seattle +DTSTART:20250419T110000 +DTEND:20250419T120000 +CATEGORIES:AMV,SC-13 +DESCRIPTION:Track: Sakura-Con Presents\nTags: AMV\,SC-13\n\nAMVs featuring + tracks from Seattle's rich music scene. +LOCATION:AMV - 6C +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Free Build Session +DTSTART:20250419T110000 +DTEND:20250419T123000 +CATEGORIES:Mecha,Modeling +DESCRIPTION:Track: Sakura-Con Presents\nTags: Mecha\,Modeling\n\nThere wil + l be a limited number of FREE kits available at each Free Build Session. T + hese kits are first come\, first serve. We highly recommend queuing in adv + ance of each session. Registration will be required at the door for you to + enter and work on your kit at one of our stations. Tools and assistance w + ill be available along with both beginner and more advanced kits. You are + also welcome to bring a kit of your own to any build session and use our t + ools or get assistance from one of our room staff members. All free build + stations will need to be cleared at the end of the session to prepare for + the next session. +LOCATION:Model Building Workshop - 327 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Cosplay Chess - The Main Event +DTSTART:20250419T120000 +DTEND:20250419T140000 +CATEGORIES:Chess,Cosplay,SC-13 +DESCRIPTION:Track: Sakura-Con Presents\nTags: Chess\,Cosplay\,SC-13\n\n +LOCATION:SakuraDome - 6E +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Free Build Session +DTSTART:20250419T130000 +DTEND:20250419T143000 +CATEGORIES:Mecha,Modeling +DESCRIPTION:Track: Sakura-Con Presents\nTags: Mecha\,Modeling\n\nThere wil + l be a limited number of FREE kits available at each Free Build Session. T + hese kits are first come\, first serve. We highly recommend queuing in adv + ance of each session. Registration will be required at the door for you to + enter and work on your kit at one of our stations. Tools and assistance w + ill be available along with both beginner and more advanced kits. You are + also welcome to bring a kit of your own to any build session and use our t + ools or get assistance from one of our room staff members. All free build + stations will need to be cleared at the end of the session to prepare for + the next session. +LOCATION:Model Building Workshop - 327 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:AMV Showcase +DTSTART:20250419T150000 +DTEND:20250419T153000 +CATEGORIES:AMV,SC-13 +DESCRIPTION:Track: Sakura-Con Presents\nTags: AMV\,SC-13\n\nAMVs to make y + ou laugh\, cry\, cheer and just plain enjoy. +LOCATION:AMV - 6C +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Free Build Session +DTSTART:20250419T150000 +DTEND:20250419T163000 +CATEGORIES:Mecha,Modeling +DESCRIPTION:Track: Sakura-Con Presents\nTags: Mecha\,Modeling\n\nThere wil + l be a limited number of FREE kits available at each Free Build Session. T + hese kits are first come\, first serve. We highly recommend queuing in adv + ance of each session. Registration will be required at the door for you to + enter and work on your kit at one of our stations. Tools and assistance w + ill be available along with both beginner and more advanced kits. You are + also welcome to bring a kit of your own to any build session and use our t + ools or get assistance from one of our room staff members. All free build + stations will need to be cleared at the end of the session to prepare for + the next session. +LOCATION:Model Building Workshop - 327 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Karaoke Idol Round 2 +DTSTART:20250419T150000 +DTEND:20250419T170000 +DESCRIPTION:Track: Sakura-Con Presents\n\n +LOCATION:Karaoke - Terrace Suite +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Life Through AMVs +DTSTART:20250419T153000 +DTEND:20250419T163000 +CATEGORIES:AMV,SC-13 +DESCRIPTION:Track: Sakura-Con Presents\nTags: AMV\,SC-13\n\nIt's storytime + ! Come and listen to a featured member of the AMV community as they show + you AMVs that have earned a special place in their heart through the years + . +LOCATION:AMV - 6C +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:The Wide World of Disney AMVs +DTSTART:20250419T163000 +DTEND:20250419T173000 +CATEGORIES:AMV,SC-13 +DESCRIPTION:Track: Sakura-Con Presents\nTags: AMV\,SC-13\n\nDon your M-O-U + -S-E ears and sing along to Disney favorites\, AMV style. +LOCATION:AMV - 6C +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Free Build Session +DTSTART:20250419T170000 +DTEND:20250419T183000 +CATEGORIES:Mecha,Modeling +DESCRIPTION:Track: Sakura-Con Presents\nTags: Mecha\,Modeling\n\nThere wil + l be a limited number of FREE kits available at each Free Build Session. T + hese kits are first come\, first serve. We highly recommend queuing in adv + ance of each session. Registration will be required at the door for you to + enter and work on your kit at one of our stations. Tools and assistance w + ill be available along with both beginner and more advanced kits. You are + also welcome to bring a kit of your own to any build session and use our t + ools or get assistance from one of our room staff members. All free build + stations will need to be cleared at the end of the session to prepare for + the next session. +LOCATION:Model Building Workshop - 327 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Open Mic +DTSTART:20250419T170000 +DTEND:20250419T220000 +DESCRIPTION:Track: Sakura-Con Presents\n\n +LOCATION:Karaoke - Terrace Suite +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Mecha Modeling Contest +DTSTART:20250419T180000 +DTEND:20250419T200000 +CATEGORIES:Contest,Mecha,Modeling +DESCRIPTION:Track: Sakura-Con Presents\nTags: Contest\,Mecha\,Modeling\n\n + The contest will have prizes across five categories: \n\n1. Best Over All\ + n\n2. Custom Build\n\n3. Advanced Build\n\n4. Straight Build\n\n5. People + ’s Choice \n\nBest Custom Build\, Best Advanced Build\, Best Straight Bu + ild\, and People’s Choice. While we do recommend pre-registering for the + contest\, on-site registration will also be available until 2 pm on Satur + day\, with judging and the awards ceremony taking place on Saturday at 6pm + .\n\nPre-registration can be done using the form here : \n\nhttps://forms. + gle/Hp2gxn8mH3soNG3ZA +LOCATION:Model Building Workshop - 327 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:AMV Iron Editor +DTSTART:20250419T180000 +DTEND:20250419T210000 +CATEGORIES:AMV,SC-13 +DESCRIPTION:Track: Sakura-Con Presents\nTags: AMV\,SC-13\n\nOne of the AMV + Theater's most popular events! Two Editors will go head-to-head in a live + editing competition where they will have to make an AMV on the spot to th + e theme "Seeing Red". There will be games and prizes so audience participa + tion is a must! +LOCATION:AMV - 6C +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Free Build Session +DTSTART:20250419T200000 +DTEND:20250419T220000 +CATEGORIES:Mecha,Modeling +DESCRIPTION:Track: Sakura-Con Presents\nTags: Mecha\,Modeling\n\nThere wil + l be a limited number of FREE kits available at each Free Build Session. T + hese kits are first come\, first serve. We highly recommend queuing in adv + ance of each session. Registration will be required at the door for you to + enter and work on your kit at one of our stations. Tools and assistance w + ill be available along with both beginner and more advanced kits. You are + also welcome to bring a kit of your own to any build session and use our t + ools or get assistance from one of our room staff members. All free build + stations will need to be cleared at the end of the session to prepare for + the next session. +LOCATION:Model Building Workshop - 327 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:"Are you kidding me?!" Strangest AMV Ideas Ever +DTSTART:20250419T210000 +DTEND:20250419T220000 +CATEGORIES:AMV,SC-13 +DESCRIPTION:Track: Sakura-Con Presents\nTags: AMV\,SC-13\n\nWant to come a + nd watch some of the most strangest ideas ever made into a AMV? Then this + is the block for you as you'll never believe what your eyes and ears will + see and hear! +LOCATION:AMV - 6C +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:AMVs on Canvas +DTSTART:20250419T210000 +DTEND:20250419T220000 +CATEGORIES:AMV,SC-13 +DESCRIPTION:Track: Sakura-Con Presents\nTags: AMV\,SC-13\n\nCome see your + AMV Contest Coordinator's favorite AMVs from the last 10 years and the art + work she created to represent them! +LOCATION:AMV Workshop - 613 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:AMVs on the Gaydar +DTSTART:20250419T220000 +DTEND:20250419T230000 +CATEGORIES:AMV,SC-13 +DESCRIPTION:Track: Sakura-Con Presents\nTags: AMV\,SC-13\n\nWe're showing + a curated list of our favorite Anime Music Videos from the last few years + that showcase LGBT themes. To the delight of yuri and yaoi fans alike\, wi + th bi and trans works included in the lineup\, these AMVs are just so gay! +LOCATION:AMV Workshop - 613 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Drop the Beat! (Dance/Rhythm AMVs) +DTSTART:20250419T220000 +DTEND:20250419T230000 +CATEGORIES:AMV,SC-13 +DESCRIPTION:Track: Sakura-Con Presents\nTags: AMV\,SC-13\n\nCome feel the + rhythm with AMVs featuring some of your favorite jams. +LOCATION:AMV - 6C +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:The Witching Hour +DTSTART:20250419T230000 +DTEND:20250420T000000 +CATEGORIES:AMV,SC-13 +DESCRIPTION:Track: Sakura-Con Presents\nTags: AMV\,SC-13\n\nThe midnight h + our is close at hand. Time for all the scary\, spooky... and sometimes sil + ly... AMVs to creep about. +LOCATION:AMV - 6C +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:The Witching Hour +DTSTART:20250419T230000 +DTEND:20250420T000000 +CATEGORIES:AMV,SC-13 +DESCRIPTION:Track: Sakura-Con Presents\nTags: AMV\,SC-13\n\nThe midnight h + our is close at hand. Time for all the scary\, spooky... and sometimes sil + ly... AMVs to creep about. +LOCATION:AMV - 6C +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:AMV Time Capsule: 2005 +DTSTART:20250420T000000 +DTEND:20250420T010000 +CATEGORIES:AMV,SC-13 +DESCRIPTION:Track: Sakura-Con Presents\nTags: AMV\,SC-13\n\nJump in the ti + me machine with us and travel to a time when phones were dumb\, candy moun + tain was magical and media wasn't yet social. Experience the best AMVs of + 2005. +LOCATION:AMV - 6C +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:AMV Showcase +DTSTART:20250420T010000 +DTEND:20250420T020000 +CATEGORIES:AMV,SC-13 +DESCRIPTION:Track: Sakura-Con Presents\nTags: AMV\,SC-13\n\nAMVs to make y + ou laugh\, cry\, cheer and just plain enjoy. +LOCATION:AMV - 6C +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:AMV Showcase +DTSTART:20250420T080000 +DTEND:20250420T083000 +CATEGORIES:AMV,SC-13 +DESCRIPTION:Track: Sakura-Con Presents\nTags: AMV\,SC-13\n\nAMVs to make y + ou laugh\, cry\, cheer and just plain enjoy. +LOCATION:AMV - 6C +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Registration +DTSTART:20250420T080000 +DTEND:20250420T120000 +CATEGORIES:registration +DESCRIPTION:Track: Sakura-Con Presents\nTags: registration\n\n +LOCATION:Registration - Flex B & C +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:AMV Best of the Non-Finalists Contest 2025 Encore +DTSTART:20250420T083000 +DTEND:20250420T103000 +CATEGORIES:AMV,SC-13 +DESCRIPTION:Track: Sakura-Con Presents\nTags: AMV\,SC-13\n\nEncore present + ation of our Best of the Non-Finalists Contest. Follow this block up with + the presentation of winners in Main Events! +LOCATION:AMV - 6C +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Free Build Session +DTSTART:20250420T090000 +DTEND:20250420T103000 +CATEGORIES:Mecha,Modeling +DESCRIPTION:Track: Sakura-Con Presents\nTags: Mecha\,Modeling\n\nThere wil + l be a limited number of FREE kits available at each Free Build Session. T + hese kits are first come\, first serve. We highly recommend queuing in adv + ance of each session. Registration will be required at the door for you to + enter and work on your kit at one of our stations. Tools and assistance w + ill be available along with both beginner and more advanced kits. You are + also welcome to bring a kit of your own to any build session and use our t + ools or get assistance from one of our room staff members. All free build + stations will need to be cleared at the end of the session to prepare for + the next session. +LOCATION:Model Building Workshop - 327 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Cosplay Contest Judging Feedback +DTSTART:20250420T090000 +DTEND:20250420T110000 +DESCRIPTION:Track: Sakura-Con Presents\n\nThis panel is for contestants of + the Cosplay Contest who would like feedback from the official judges. Thi + s is for main contest only and not for 18+ Skit Contest. +LOCATION:Social Deception Games - 201 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Open Mic +DTSTART:20250420T090000 +DTEND:20250420T130000 +DESCRIPTION:Track: Sakura-Con Presents\n\n +LOCATION:Karaoke - Terrace Suite +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Manga Library Open +DTSTART:20250420T090000 +DTEND:20250420T143000 +DESCRIPTION:Track: Sakura-Con Presents\n\n +LOCATION:Manga Library - 427-429 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Manga Swaps Open +DTSTART:20250420T090000 +DTEND:20250420T150000 +DESCRIPTION:Track: Sakura-Con Presents\n\n +LOCATION:Manga Swap - 435 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Scavenger Hunt HQ +DTSTART:20250420T090000 +DTEND:20250420T160000 +DESCRIPTION:Track: Sakura-Con Presents\n\n +LOCATION:Prog Office - 323 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Cosplay Chess - Improv Edition +DTSTART:20250420T100000 +DTEND:20250420T113000 +CATEGORIES:Chess,Cosplay,SC-ALL +DESCRIPTION:Track: Sakura-Con Presents\nTags: Chess\,Cosplay\,SC-ALL\n\n +LOCATION:SakuraDome - 6E +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Artist Alley +DTSTART:20250420T100000 +DTEND:20250420T160000 +CATEGORIES:artist alley +DESCRIPTION:Track: Sakura-Con Presents\nTags: artist alley\n\n +LOCATION:Artist Alley - 4EF +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:How to Storyboard Your AMV +DTSTART:20250420T103000 +DTEND:20250420T113000 +CATEGORIES:AMV,SC-10 +DESCRIPTION:Track: Sakura-Con Presents\nTags: AMV\,SC-10\n\nHave a solid c + oncept in mind but aren't sure how to flesh it out? Rider4Z has some tips + on how to lay down "pillars" to serve as building blocks for creating a co + hesive narrative\, whether you're trying to portray a specific story or no + t. +LOCATION:AMV Workshop - 613 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:AMV Contest 2025 Encore +DTSTART:20250420T103000 +DTEND:20250420T130000 +CATEGORIES:AMV,SC-13 +DESCRIPTION:Track: Sakura-Con Presents\nTags: AMV\,SC-13\n\nEncore present + ation of this year's AMV Contest. Join us in Main Events afterward for the + winners presentation. +LOCATION:AMV - 6C +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Free Build Session +DTSTART:20250420T110000 +DTEND:20250420T123000 +CATEGORIES:Mecha,Modeling +DESCRIPTION:Track: Sakura-Con Presents\nTags: Mecha\,Modeling\n\nThere wil + l be a limited number of FREE kits available at each Free Build Session. T + hese kits are first come\, first serve. We highly recommend queuing in adv + ance of each session. Registration will be required at the door for you to + enter and work on your kit at one of our stations. Tools and assistance w + ill be available along with both beginner and more advanced kits. You are + also welcome to bring a kit of your own to any build session and use our t + ools or get assistance from one of our room staff members. All free build + stations will need to be cleared at the end of the session to prepare for + the next session. +LOCATION:Model Building Workshop - 327 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Spell it Out For Me: Amazing Usages of Text in AMVs +DTSTART:20250420T113000 +DTEND:20250420T120000 +CATEGORIES:AMV,SC-13 +DESCRIPTION:Track: Sakura-Con Presents\nTags: AMV\,SC-13\n\nText is a powe + rful tool! It can enhance an AMV when used carefully\, but it can harm it + when used lazily and excessively. Join us for discussion as we review seve + ral incredible examples of text in AMVs! A picture may be worth a thousand + words\, but sometimes just the right one is all you need! +LOCATION:AMV Workshop - 613 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:An AMV is Worth a Thousand Words +DTSTART:20250420T120000 +DTEND:20250420T130000 +CATEGORIES:AMV,SC-13 +DESCRIPTION:Track: Sakura-Con Presents\nTags: AMV\,SC-13\n\nIf a picture i + s worth a thousand words\, these AMVs need not speak a single one! Join us + as we highlight AMVs that speak volumes through songs that have no lyrics + whatsoever. These transcend beyond all languages and speak directly to th + e heart! +LOCATION:AMV Workshop - 613 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Free Build Session +DTSTART:20250420T130000 +DTEND:20250420T143000 +CATEGORIES:Mecha,Modeling +DESCRIPTION:Track: Sakura-Con Presents\nTags: Mecha\,Modeling\n\nThere wil + l be a limited number of FREE kits available at each Free Build Session. T + hese kits are first come\, first serve. We highly recommend queuing in adv + ance of each session. Registration will be required at the door for you to + enter and work on your kit at one of our stations. Tools and assistance w + ill be available along with both beginner and more advanced kits. You are + also welcome to bring a kit of your own to any build session and use our t + ools or get assistance from one of our room staff members. All free build + stations will need to be cleared at the end of the session to prepare for + the next session. +LOCATION:Model Building Workshop - 327 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:AMV Gauntlet Finals +DTSTART:20250420T143000 +DTEND:20250420T160000 +CATEGORIES:AMV,SC-13 +DESCRIPTION:Track: Sakura-Con Presents\nTags: AMV\,SC-13\n\nCome see the f + inale of Sakura-Con's first weekend-long editing competition! In the style + of Iron Editor\, editing teams who take on the AMV Gauntlet must race to + complete their edits while overcoming challenging hurdles. This is your ch + ance to watch the final videos and cheer for your favorites. +LOCATION:AMV - 6C +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Fandom Remixed Showcase +DTSTART:20250420T143000 +DTEND:20250420T160000 +CATEGORIES:AMV,SC-13 +DESCRIPTION:Track: Sakura-Con Presents\nTags: AMV\,SC-13\n\nWe all love AM + Vs\, but have you ever wanted something different? A music video celebrati + on of all things fandom\, this playlist is sure to entertain and surprise! +LOCATION:AMV Workshop - 613 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Open Build Session +DTSTART:20250420T143000 +DTEND:20250420T160000 +CATEGORIES:Mecha,Modeling +DESCRIPTION:Track: Sakura-Con Presents\nTags: Mecha\,Modeling\n\nOpen Buil + d Sessions will not have any free build stations (unless we have any left + over kits from the day's free build sessions). These sessions are purely f + or bring your own kit building and fun. +LOCATION:Model Building Workshop - 327 +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:The Chessies - Cosplay Chess Awards +DTSTART:20250420T143000 +DTEND:20250420T160000 +CATEGORIES:Chess,Cosplay,SC-13 +DESCRIPTION:Track: Sakura-Con Presents\nTags: Chess\,Cosplay\,SC-13\n\nChe + ssies is an award show and comical love letter from the Cosplay Chess staf + f to the players of our chess games from the year previous. This award cer + emony is a celebration of the previous years’ chess games\, accolades\, + hilarities\, and escapades by the chess participants. Featuring highlight + reels and “clever” editing\, the Chessies award inventive achievements + in the form of trophies. +LOCATION:Relations Panels/Premiers - Ballroom 2 +STATUS:ACTIVE +END:VEVENT +END:VCALENDAR diff --git a/calendar_Summit_Stage.ics b/calendar_Summit_Stage.ics new file mode 100644 index 0000000..85167cc --- /dev/null +++ b/calendar_Summit_Stage.ics @@ -0,0 +1,32 @@ +BEGIN:VCALENDAR +VERSION:2.0 +PRODID:-//Summit Stage Schedule//eventeny.com// +X-WR-CALNAME:Summit Stage +BEGIN:VEVENT +SUMMARY:18+ Cosplay Skit Contest +DTSTART:20250418T123000 +DTEND:20250418T141500 +CATEGORIES:Contest,Cosplay,SC-MA +DESCRIPTION:Track: Summit Stage\nTags: Contest\,Cosplay\,SC-MA\n\n +LOCATION:Summit Stage +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Cosplay Contest Doors Open +DTSTART:20250419T163000 +DTEND:20250419T170000 +CATEGORIES:Contest,Cosplay +DESCRIPTION:Track: Summit Stage\nTags: Contest\,Cosplay\n\n +LOCATION:Summit Stage +STATUS:ACTIVE +END:VEVENT +BEGIN:VEVENT +SUMMARY:Cosplay Contest +DTSTART:20250419T170000 +DTEND:20250419T200000 +CATEGORIES:Contest,Cosplay,SC-13 +DESCRIPTION:Track: Summit Stage\nTags: Contest\,Cosplay\,SC-13\n\n +LOCATION:Summit Stage +STATUS:ACTIVE +END:VEVENT +END:VCALENDAR diff --git a/poetry.lock b/poetry.lock new file mode 100755 index 0000000..135b18d --- /dev/null +++ b/poetry.lock @@ -0,0 +1,368 @@ +# This file is automatically @generated by Poetry 2.1.2 and should not be changed by hand. + +[[package]] +name = "backports-zoneinfo" +version = "0.2.1" +description = "Backport of the standard library zoneinfo module" +optional = false +python-versions = ">=3.6" +groups = ["main"] +markers = "python_version == \"3.8\"" +files = [ + {file = "backports.zoneinfo-0.2.1-cp36-cp36m-macosx_10_14_x86_64.whl", hash = "sha256:da6013fd84a690242c310d77ddb8441a559e9cb3d3d59ebac9aca1a57b2e18bc"}, + {file = "backports.zoneinfo-0.2.1-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:89a48c0d158a3cc3f654da4c2de1ceba85263fafb861b98b59040a5086259722"}, + {file = "backports.zoneinfo-0.2.1-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:1c5742112073a563c81f786e77514969acb58649bcdf6cdf0b4ed31a348d4546"}, + {file = "backports.zoneinfo-0.2.1-cp36-cp36m-win32.whl", hash = "sha256:e8236383a20872c0cdf5a62b554b27538db7fa1bbec52429d8d106effbaeca08"}, + {file = "backports.zoneinfo-0.2.1-cp36-cp36m-win_amd64.whl", hash = "sha256:8439c030a11780786a2002261569bdf362264f605dfa4d65090b64b05c9f79a7"}, + {file = "backports.zoneinfo-0.2.1-cp37-cp37m-macosx_10_14_x86_64.whl", hash = "sha256:f04e857b59d9d1ccc39ce2da1021d196e47234873820cbeaad210724b1ee28ac"}, + {file = "backports.zoneinfo-0.2.1-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:17746bd546106fa389c51dbea67c8b7c8f0d14b5526a579ca6ccf5ed72c526cf"}, + {file = "backports.zoneinfo-0.2.1-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:5c144945a7752ca544b4b78c8c41544cdfaf9786f25fe5ffb10e838e19a27570"}, + {file = "backports.zoneinfo-0.2.1-cp37-cp37m-win32.whl", hash = "sha256:e55b384612d93be96506932a786bbcde5a2db7a9e6a4bb4bffe8b733f5b9036b"}, + {file = "backports.zoneinfo-0.2.1-cp37-cp37m-win_amd64.whl", hash = "sha256:a76b38c52400b762e48131494ba26be363491ac4f9a04c1b7e92483d169f6582"}, + {file = "backports.zoneinfo-0.2.1-cp38-cp38-macosx_10_14_x86_64.whl", hash = "sha256:8961c0f32cd0336fb8e8ead11a1f8cd99ec07145ec2931122faaac1c8f7fd987"}, + {file = "backports.zoneinfo-0.2.1-cp38-cp38-manylinux1_i686.whl", hash = "sha256:e81b76cace8eda1fca50e345242ba977f9be6ae3945af8d46326d776b4cf78d1"}, + {file = "backports.zoneinfo-0.2.1-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:7b0a64cda4145548fed9efc10322770f929b944ce5cee6c0dfe0c87bf4c0c8c9"}, + {file = "backports.zoneinfo-0.2.1-cp38-cp38-win32.whl", hash = "sha256:1b13e654a55cd45672cb54ed12148cd33628f672548f373963b0bff67b217328"}, + {file = "backports.zoneinfo-0.2.1-cp38-cp38-win_amd64.whl", hash = "sha256:4a0f800587060bf8880f954dbef70de6c11bbe59c673c3d818921f042f9954a6"}, + {file = "backports.zoneinfo-0.2.1.tar.gz", hash = "sha256:fadbfe37f74051d024037f223b8e001611eac868b5c5b06144ef4d8b799862f2"}, +] + +[package.extras] +tzdata = ["tzdata"] + +[[package]] +name = "certifi" +version = "2025.1.31" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +groups = ["main"] +files = [ + {file = "certifi-2025.1.31-py3-none-any.whl", hash = "sha256:ca78db4565a652026a4db2bcdf68f2fb589ea80d0be70e03929ed730746b84fe"}, + {file = "certifi-2025.1.31.tar.gz", hash = "sha256:3d5da6925056f6f18f119200434a4780a94263f10d1c21d032a6f6b2baa20651"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.4.1" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7" +groups = ["main"] +files = [ + {file = "charset_normalizer-3.4.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:91b36a978b5ae0ee86c394f5a54d6ef44db1de0815eb43de826d41d21e4af3de"}, + {file = "charset_normalizer-3.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7461baadb4dc00fd9e0acbe254e3d7d2112e7f92ced2adc96e54ef6501c5f176"}, + {file = "charset_normalizer-3.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e218488cd232553829be0664c2292d3af2eeeb94b32bea483cf79ac6a694e037"}, + {file = "charset_normalizer-3.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:80ed5e856eb7f30115aaf94e4a08114ccc8813e6ed1b5efa74f9f82e8509858f"}, + {file = "charset_normalizer-3.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b010a7a4fd316c3c484d482922d13044979e78d1861f0e0650423144c616a46a"}, + {file = "charset_normalizer-3.4.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4532bff1b8421fd0a320463030c7520f56a79c9024a4e88f01c537316019005a"}, + {file = "charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:d973f03c0cb71c5ed99037b870f2be986c3c05e63622c017ea9816881d2dd247"}, + {file = "charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3a3bd0dcd373514dcec91c411ddb9632c0d7d92aed7093b8c3bbb6d69ca74408"}, + {file = "charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:d9c3cdf5390dcd29aa8056d13e8e99526cda0305acc038b96b30352aff5ff2bb"}, + {file = "charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:2bdfe3ac2e1bbe5b59a1a63721eb3b95fc9b6817ae4a46debbb4e11f6232428d"}, + {file = "charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:eab677309cdb30d047996b36d34caeda1dc91149e4fdca0b1a039b3f79d9a807"}, + {file = "charset_normalizer-3.4.1-cp310-cp310-win32.whl", hash = "sha256:c0429126cf75e16c4f0ad00ee0eae4242dc652290f940152ca8c75c3a4b6ee8f"}, + {file = "charset_normalizer-3.4.1-cp310-cp310-win_amd64.whl", hash = "sha256:9f0b8b1c6d84c8034a44893aba5e767bf9c7a211e313a9605d9c617d7083829f"}, + {file = "charset_normalizer-3.4.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:8bfa33f4f2672964266e940dd22a195989ba31669bd84629f05fab3ef4e2d125"}, + {file = "charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:28bf57629c75e810b6ae989f03c0828d64d6b26a5e205535585f96093e405ed1"}, + {file = "charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f08ff5e948271dc7e18a35641d2f11a4cd8dfd5634f55228b691e62b37125eb3"}, + {file = "charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:234ac59ea147c59ee4da87a0c0f098e9c8d169f4dc2a159ef720f1a61bbe27cd"}, + {file = "charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fd4ec41f914fa74ad1b8304bbc634b3de73d2a0889bd32076342a573e0779e00"}, + {file = "charset_normalizer-3.4.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:eea6ee1db730b3483adf394ea72f808b6e18cf3cb6454b4d86e04fa8c4327a12"}, + {file = "charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:c96836c97b1238e9c9e3fe90844c947d5afbf4f4c92762679acfe19927d81d77"}, + {file = "charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:4d86f7aff21ee58f26dcf5ae81a9addbd914115cdebcbb2217e4f0ed8982e146"}, + {file = "charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:09b5e6733cbd160dcc09589227187e242a30a49ca5cefa5a7edd3f9d19ed53fd"}, + {file = "charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:5777ee0881f9499ed0f71cc82cf873d9a0ca8af166dfa0af8ec4e675b7df48e6"}, + {file = "charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:237bdbe6159cff53b4f24f397d43c6336c6b0b42affbe857970cefbb620911c8"}, + {file = "charset_normalizer-3.4.1-cp311-cp311-win32.whl", hash = "sha256:8417cb1f36cc0bc7eaba8ccb0e04d55f0ee52df06df3ad55259b9a323555fc8b"}, + {file = "charset_normalizer-3.4.1-cp311-cp311-win_amd64.whl", hash = "sha256:d7f50a1f8c450f3925cb367d011448c39239bb3eb4117c36a6d354794de4ce76"}, + {file = "charset_normalizer-3.4.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:73d94b58ec7fecbc7366247d3b0b10a21681004153238750bb67bd9012414545"}, + {file = "charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dad3e487649f498dd991eeb901125411559b22e8d7ab25d3aeb1af367df5efd7"}, + {file = "charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c30197aa96e8eed02200a83fba2657b4c3acd0f0aa4bdc9f6c1af8e8962e0757"}, + {file = "charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2369eea1ee4a7610a860d88f268eb39b95cb588acd7235e02fd5a5601773d4fa"}, + {file = "charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc2722592d8998c870fa4e290c2eec2c1569b87fe58618e67d38b4665dfa680d"}, + {file = "charset_normalizer-3.4.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ffc9202a29ab3920fa812879e95a9e78b2465fd10be7fcbd042899695d75e616"}, + {file = "charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:804a4d582ba6e5b747c625bf1255e6b1507465494a40a2130978bda7b932c90b"}, + {file = "charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:0f55e69f030f7163dffe9fd0752b32f070566451afe180f99dbeeb81f511ad8d"}, + {file = "charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:c4c3e6da02df6fa1410a7680bd3f63d4f710232d3139089536310d027950696a"}, + {file = "charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:5df196eb874dae23dcfb968c83d4f8fdccb333330fe1fc278ac5ceeb101003a9"}, + {file = "charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:e358e64305fe12299a08e08978f51fc21fac060dcfcddd95453eabe5b93ed0e1"}, + {file = "charset_normalizer-3.4.1-cp312-cp312-win32.whl", hash = "sha256:9b23ca7ef998bc739bf6ffc077c2116917eabcc901f88da1b9856b210ef63f35"}, + {file = "charset_normalizer-3.4.1-cp312-cp312-win_amd64.whl", hash = "sha256:6ff8a4a60c227ad87030d76e99cd1698345d4491638dfa6673027c48b3cd395f"}, + {file = "charset_normalizer-3.4.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:aabfa34badd18f1da5ec1bc2715cadc8dca465868a4e73a0173466b688f29dda"}, + {file = "charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:22e14b5d70560b8dd51ec22863f370d1e595ac3d024cb8ad7d308b4cd95f8313"}, + {file = "charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8436c508b408b82d87dc5f62496973a1805cd46727c34440b0d29d8a2f50a6c9"}, + {file = "charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2d074908e1aecee37a7635990b2c6d504cd4766c7bc9fc86d63f9c09af3fa11b"}, + {file = "charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:955f8851919303c92343d2f66165294848d57e9bba6cf6e3625485a70a038d11"}, + {file = "charset_normalizer-3.4.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:44ecbf16649486d4aebafeaa7ec4c9fed8b88101f4dd612dcaf65d5e815f837f"}, + {file = "charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0924e81d3d5e70f8126529951dac65c1010cdf117bb75eb02dd12339b57749dd"}, + {file = "charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:2967f74ad52c3b98de4c3b32e1a44e32975e008a9cd2a8cc8966d6a5218c5cb2"}, + {file = "charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:c75cb2a3e389853835e84a2d8fb2b81a10645b503eca9bcb98df6b5a43eb8886"}, + {file = "charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:09b26ae6b1abf0d27570633b2b078a2a20419c99d66fb2823173d73f188ce601"}, + {file = "charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:fa88b843d6e211393a37219e6a1c1df99d35e8fd90446f1118f4216e307e48cd"}, + {file = "charset_normalizer-3.4.1-cp313-cp313-win32.whl", hash = "sha256:eb8178fe3dba6450a3e024e95ac49ed3400e506fd4e9e5c32d30adda88cbd407"}, + {file = "charset_normalizer-3.4.1-cp313-cp313-win_amd64.whl", hash = "sha256:b1ac5992a838106edb89654e0aebfc24f5848ae2547d22c2c3f66454daa11971"}, + {file = "charset_normalizer-3.4.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f30bf9fd9be89ecb2360c7d94a711f00c09b976258846efe40db3d05828e8089"}, + {file = "charset_normalizer-3.4.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:97f68b8d6831127e4787ad15e6757232e14e12060bec17091b85eb1486b91d8d"}, + {file = "charset_normalizer-3.4.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7974a0b5ecd505609e3b19742b60cee7aa2aa2fb3151bc917e6e2646d7667dcf"}, + {file = "charset_normalizer-3.4.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fc54db6c8593ef7d4b2a331b58653356cf04f67c960f584edb7c3d8c97e8f39e"}, + {file = "charset_normalizer-3.4.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:311f30128d7d333eebd7896965bfcfbd0065f1716ec92bd5638d7748eb6f936a"}, + {file = "charset_normalizer-3.4.1-cp37-cp37m-musllinux_1_2_aarch64.whl", hash = "sha256:7d053096f67cd1241601111b698f5cad775f97ab25d81567d3f59219b5f1adbd"}, + {file = "charset_normalizer-3.4.1-cp37-cp37m-musllinux_1_2_i686.whl", hash = "sha256:807f52c1f798eef6cf26beb819eeb8819b1622ddfeef9d0977a8502d4db6d534"}, + {file = "charset_normalizer-3.4.1-cp37-cp37m-musllinux_1_2_ppc64le.whl", hash = "sha256:dccbe65bd2f7f7ec22c4ff99ed56faa1e9f785482b9bbd7c717e26fd723a1d1e"}, + {file = "charset_normalizer-3.4.1-cp37-cp37m-musllinux_1_2_s390x.whl", hash = "sha256:2fb9bd477fdea8684f78791a6de97a953c51831ee2981f8e4f583ff3b9d9687e"}, + {file = "charset_normalizer-3.4.1-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:01732659ba9b5b873fc117534143e4feefecf3b2078b0a6a2e925271bb6f4cfa"}, + {file = "charset_normalizer-3.4.1-cp37-cp37m-win32.whl", hash = "sha256:7a4f97a081603d2050bfaffdefa5b02a9ec823f8348a572e39032caa8404a487"}, + {file = "charset_normalizer-3.4.1-cp37-cp37m-win_amd64.whl", hash = "sha256:7b1bef6280950ee6c177b326508f86cad7ad4dff12454483b51d8b7d673a2c5d"}, + {file = "charset_normalizer-3.4.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:ecddf25bee22fe4fe3737a399d0d177d72bc22be6913acfab364b40bce1ba83c"}, + {file = "charset_normalizer-3.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8c60ca7339acd497a55b0ea5d506b2a2612afb2826560416f6894e8b5770d4a9"}, + {file = "charset_normalizer-3.4.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b7b2d86dd06bfc2ade3312a83a5c364c7ec2e3498f8734282c6c3d4b07b346b8"}, + {file = "charset_normalizer-3.4.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dd78cfcda14a1ef52584dbb008f7ac81c1328c0f58184bf9a84c49c605002da6"}, + {file = "charset_normalizer-3.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6e27f48bcd0957c6d4cb9d6fa6b61d192d0b13d5ef563e5f2ae35feafc0d179c"}, + {file = "charset_normalizer-3.4.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:01ad647cdd609225c5350561d084b42ddf732f4eeefe6e678765636791e78b9a"}, + {file = "charset_normalizer-3.4.1-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:619a609aa74ae43d90ed2e89bdd784765de0a25ca761b93e196d938b8fd1dbbd"}, + {file = "charset_normalizer-3.4.1-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:89149166622f4db9b4b6a449256291dc87a99ee53151c74cbd82a53c8c2f6ccd"}, + {file = "charset_normalizer-3.4.1-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:7709f51f5f7c853f0fb938bcd3bc59cdfdc5203635ffd18bf354f6967ea0f824"}, + {file = "charset_normalizer-3.4.1-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:345b0426edd4e18138d6528aed636de7a9ed169b4aaf9d61a8c19e39d26838ca"}, + {file = "charset_normalizer-3.4.1-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:0907f11d019260cdc3f94fbdb23ff9125f6b5d1039b76003b5b0ac9d6a6c9d5b"}, + {file = "charset_normalizer-3.4.1-cp38-cp38-win32.whl", hash = "sha256:ea0d8d539afa5eb2728aa1932a988a9a7af94f18582ffae4bc10b3fbdad0626e"}, + {file = "charset_normalizer-3.4.1-cp38-cp38-win_amd64.whl", hash = "sha256:329ce159e82018d646c7ac45b01a430369d526569ec08516081727a20e9e4af4"}, + {file = "charset_normalizer-3.4.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:b97e690a2118911e39b4042088092771b4ae3fc3aa86518f84b8cf6888dbdb41"}, + {file = "charset_normalizer-3.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:78baa6d91634dfb69ec52a463534bc0df05dbd546209b79a3880a34487f4b84f"}, + {file = "charset_normalizer-3.4.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1a2bc9f351a75ef49d664206d51f8e5ede9da246602dc2d2726837620ea034b2"}, + {file = "charset_normalizer-3.4.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:75832c08354f595c760a804588b9357d34ec00ba1c940c15e31e96d902093770"}, + {file = "charset_normalizer-3.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0af291f4fe114be0280cdd29d533696a77b5b49cfde5467176ecab32353395c4"}, + {file = "charset_normalizer-3.4.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0167ddc8ab6508fe81860a57dd472b2ef4060e8d378f0cc555707126830f2537"}, + {file = "charset_normalizer-3.4.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:2a75d49014d118e4198bcee5ee0a6f25856b29b12dbf7cd012791f8a6cc5c496"}, + {file = "charset_normalizer-3.4.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:363e2f92b0f0174b2f8238240a1a30142e3db7b957a5dd5689b0e75fb717cc78"}, + {file = "charset_normalizer-3.4.1-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:ab36c8eb7e454e34e60eb55ca5d241a5d18b2c6244f6827a30e451c42410b5f7"}, + {file = "charset_normalizer-3.4.1-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:4c0907b1928a36d5a998d72d64d8eaa7244989f7aaaf947500d3a800c83a3fd6"}, + {file = "charset_normalizer-3.4.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:04432ad9479fa40ec0f387795ddad4437a2b50417c69fa275e212933519ff294"}, + {file = "charset_normalizer-3.4.1-cp39-cp39-win32.whl", hash = "sha256:3bed14e9c89dcb10e8f3a29f9ccac4955aebe93c71ae803af79265c9ca5644c5"}, + {file = "charset_normalizer-3.4.1-cp39-cp39-win_amd64.whl", hash = "sha256:49402233c892a461407c512a19435d1ce275543138294f7ef013f0b63d5d3765"}, + {file = "charset_normalizer-3.4.1-py3-none-any.whl", hash = "sha256:d98b1668f06378c6dbefec3b92299716b931cd4e6061f3c875a71ced1780ab85"}, + {file = "charset_normalizer-3.4.1.tar.gz", hash = "sha256:44251f18cd68a75b56585dd00dae26183e102cd5e0f9f1466e6df5da2ed64ea3"}, +] + +[[package]] +name = "datetime" +version = "5.5" +description = "This package provides a DateTime data type, as known from Zope. Unless you need to communicate with Zope APIs, you're probably better off using Python's built-in datetime module." +optional = false +python-versions = ">=3.7" +groups = ["main"] +files = [ + {file = "DateTime-5.5-py3-none-any.whl", hash = "sha256:0abf6c51cb4ba7cee775ca46ccc727f3afdde463be28dbbe8803631fefd4a120"}, + {file = "DateTime-5.5.tar.gz", hash = "sha256:21ec6331f87a7fcb57bd7c59e8a68bfffe6fcbf5acdbbc7b356d6a9a020191d3"}, +] + +[package.dependencies] +pytz = "*" +"zope.interface" = "*" + +[[package]] +name = "icalendar" +version = "6.1.3" +description = "iCalendar parser/generator" +optional = false +python-versions = ">=3.8" +groups = ["main"] +files = [ + {file = "icalendar-6.1.3-py3-none-any.whl", hash = "sha256:11eb5d21a1a9e119a6efc0f9e38f2cf1622ef97777cd25fb0dd7074d393a2a8d"}, + {file = "icalendar-6.1.3.tar.gz", hash = "sha256:4aef710ff205925b3947fe69ed00f4e142c6a49b5533fca6cc2fdde5a6f62e66"}, +] + +[package.dependencies] +backports-zoneinfo = {version = "*", markers = "python_version < \"3.9\""} +python-dateutil = "*" +tzdata = "*" + +[package.extras] +test = ["coverage", "hypothesis", "pytest", "pytz"] + +[[package]] +name = "idna" +version = "3.10" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.6" +groups = ["main"] +files = [ + {file = "idna-3.10-py3-none-any.whl", hash = "sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3"}, + {file = "idna-3.10.tar.gz", hash = "sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9"}, +] + +[package.extras] +all = ["flake8 (>=7.1.1)", "mypy (>=1.11.2)", "pytest (>=8.3.2)", "ruff (>=0.6.2)"] + +[[package]] +name = "python-dateutil" +version = "2.9.0.post0" +description = "Extensions to the standard Python datetime module" +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" +groups = ["main"] +files = [ + {file = "python-dateutil-2.9.0.post0.tar.gz", hash = "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3"}, + {file = "python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427"}, +] + +[package.dependencies] +six = ">=1.5" + +[[package]] +name = "pytz" +version = "2025.2" +description = "World timezone definitions, modern and historical" +optional = false +python-versions = "*" +groups = ["main"] +files = [ + {file = "pytz-2025.2-py2.py3-none-any.whl", hash = "sha256:5ddf76296dd8c44c26eb8f4b6f35488f3ccbf6fbbd7adee0b7262d43f0ec2f00"}, + {file = "pytz-2025.2.tar.gz", hash = "sha256:360b9e3dbb49a209c21ad61809c7fb453643e048b38924c765813546746e81c3"}, +] + +[[package]] +name = "requests" +version = "2.32.3" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.8" +groups = ["main"] +files = [ + {file = "requests-2.32.3-py3-none-any.whl", hash = "sha256:70761cfe03c773ceb22aa2f671b4757976145175cdfca038c02654d061d6dcc6"}, + {file = "requests-2.32.3.tar.gz", hash = "sha256:55365417734eb18255590a9ff9eb97e9e1da868d4ccd6402399eaf68af20a760"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "setuptools" +version = "75.3.2" +description = "Easily download, build, install, upgrade, and uninstall Python packages" +optional = false +python-versions = ">=3.8" +groups = ["main"] +files = [ + {file = "setuptools-75.3.2-py3-none-any.whl", hash = "sha256:90ab613b6583fc02d5369cbca13ea26ea0e182d1df2d943ee9cbe81d4c61add9"}, + {file = "setuptools-75.3.2.tar.gz", hash = "sha256:3c1383e1038b68556a382c1e8ded8887cd20141b0eb5708a6c8d277de49364f5"}, +] + +[package.extras] +check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1) ; sys_platform != \"cygwin\"", "ruff (>=0.5.2) ; sys_platform != \"cygwin\""] +core = ["importlib-metadata (>=6) ; python_version < \"3.10\"", "importlib-resources (>=5.10.2) ; python_version < \"3.9\"", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1) ; python_version < \"3.11\"", "wheel (>=0.43.0)"] +cover = ["pytest-cov"] +doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] +enabler = ["pytest-enabler (>=2.2)"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21) ; python_version >= \"3.9\" and sys_platform != \"cygwin\"", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf ; sys_platform != \"cygwin\"", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "ruff (<=0.7.1)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2) ; python_version < \"3.10\"", "jaraco.develop (>=7.21) ; sys_platform != \"cygwin\"", "mypy (==1.12.*)", "pytest-mypy"] + +[[package]] +name = "six" +version = "1.17.0" +description = "Python 2 and 3 compatibility utilities" +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" +groups = ["main"] +files = [ + {file = "six-1.17.0-py2.py3-none-any.whl", hash = "sha256:4721f391ed90541fddacab5acf947aa0d3dc7d27b2e1e8eda2be8970586c3274"}, + {file = "six-1.17.0.tar.gz", hash = "sha256:ff70335d468e7eb6ec65b95b99d3a2836546063f63acc5171de367e834932a81"}, +] + +[[package]] +name = "tzdata" +version = "2025.2" +description = "Provider of IANA time zone data" +optional = false +python-versions = ">=2" +groups = ["main"] +files = [ + {file = "tzdata-2025.2-py2.py3-none-any.whl", hash = "sha256:1a403fada01ff9221ca8044d701868fa132215d84beb92242d9acd2147f667a8"}, + {file = "tzdata-2025.2.tar.gz", hash = "sha256:b60a638fcc0daffadf82fe0f57e53d06bdec2f36c4df66280ae79bce6bd6f2b9"}, +] + +[[package]] +name = "urllib3" +version = "2.2.3" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.8" +groups = ["main"] +files = [ + {file = "urllib3-2.2.3-py3-none-any.whl", hash = "sha256:ca899ca043dcb1bafa3e262d73aa25c465bfb49e0bd9dd5d59f1d0acba2f8fac"}, + {file = "urllib3-2.2.3.tar.gz", hash = "sha256:e7d814a81dad81e6caf2ec9fdedb284ecc9c73076b62654547cc64ccdcae26e9"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9) ; platform_python_implementation == \"CPython\"", "brotlicffi (>=0.8.0) ; platform_python_implementation != \"CPython\""] +h2 = ["h2 (>=4,<5)"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "zope-interface" +version = "7.2" +description = "Interfaces for Python" +optional = false +python-versions = ">=3.8" +groups = ["main"] +files = [ + {file = "zope.interface-7.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ce290e62229964715f1011c3dbeab7a4a1e4971fd6f31324c4519464473ef9f2"}, + {file = "zope.interface-7.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:05b910a5afe03256b58ab2ba6288960a2892dfeef01336dc4be6f1b9ed02ab0a"}, + {file = "zope.interface-7.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:550f1c6588ecc368c9ce13c44a49b8d6b6f3ca7588873c679bd8fd88a1b557b6"}, + {file = "zope.interface-7.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0ef9e2f865721553c6f22a9ff97da0f0216c074bd02b25cf0d3af60ea4d6931d"}, + {file = "zope.interface-7.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:27f926f0dcb058211a3bb3e0e501c69759613b17a553788b2caeb991bed3b61d"}, + {file = "zope.interface-7.2-cp310-cp310-win_amd64.whl", hash = "sha256:144964649eba4c5e4410bb0ee290d338e78f179cdbfd15813de1a664e7649b3b"}, + {file = "zope.interface-7.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:1909f52a00c8c3dcab6c4fad5d13de2285a4b3c7be063b239b8dc15ddfb73bd2"}, + {file = "zope.interface-7.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:80ecf2451596f19fd607bb09953f426588fc1e79e93f5968ecf3367550396b22"}, + {file = "zope.interface-7.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:033b3923b63474800b04cba480b70f6e6243a62208071fc148354f3f89cc01b7"}, + {file = "zope.interface-7.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a102424e28c6b47c67923a1f337ede4a4c2bba3965b01cf707978a801fc7442c"}, + {file = "zope.interface-7.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:25e6a61dcb184453bb00eafa733169ab6d903e46f5c2ace4ad275386f9ab327a"}, + {file = "zope.interface-7.2-cp311-cp311-win_amd64.whl", hash = "sha256:3f6771d1647b1fc543d37640b45c06b34832a943c80d1db214a37c31161a93f1"}, + {file = "zope.interface-7.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:086ee2f51eaef1e4a52bd7d3111a0404081dadae87f84c0ad4ce2649d4f708b7"}, + {file = "zope.interface-7.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:21328fcc9d5b80768bf051faa35ab98fb979080c18e6f84ab3f27ce703bce465"}, + {file = "zope.interface-7.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f6dd02ec01f4468da0f234da9d9c8545c5412fef80bc590cc51d8dd084138a89"}, + {file = "zope.interface-7.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8e7da17f53e25d1a3bde5da4601e026adc9e8071f9f6f936d0fe3fe84ace6d54"}, + {file = "zope.interface-7.2-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cab15ff4832580aa440dc9790b8a6128abd0b88b7ee4dd56abacbc52f212209d"}, + {file = "zope.interface-7.2-cp312-cp312-win_amd64.whl", hash = "sha256:29caad142a2355ce7cfea48725aa8bcf0067e2b5cc63fcf5cd9f97ad12d6afb5"}, + {file = "zope.interface-7.2-cp313-cp313-macosx_10_9_x86_64.whl", hash = "sha256:3e0350b51e88658d5ad126c6a57502b19d5f559f6cb0a628e3dc90442b53dd98"}, + {file = "zope.interface-7.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:15398c000c094b8855d7d74f4fdc9e73aa02d4d0d5c775acdef98cdb1119768d"}, + {file = "zope.interface-7.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:802176a9f99bd8cc276dcd3b8512808716492f6f557c11196d42e26c01a69a4c"}, + {file = "zope.interface-7.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:eb23f58a446a7f09db85eda09521a498e109f137b85fb278edb2e34841055398"}, + {file = "zope.interface-7.2-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a71a5b541078d0ebe373a81a3b7e71432c61d12e660f1d67896ca62d9628045b"}, + {file = "zope.interface-7.2-cp313-cp313-win_amd64.whl", hash = "sha256:4893395d5dd2ba655c38ceb13014fd65667740f09fa5bb01caa1e6284e48c0cd"}, + {file = "zope.interface-7.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:d3a8ffec2a50d8ec470143ea3d15c0c52d73df882eef92de7537e8ce13475e8a"}, + {file = "zope.interface-7.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:31d06db13a30303c08d61d5fb32154be51dfcbdb8438d2374ae27b4e069aac40"}, + {file = "zope.interface-7.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e204937f67b28d2dca73ca936d3039a144a081fc47a07598d44854ea2a106239"}, + {file = "zope.interface-7.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:224b7b0314f919e751f2bca17d15aad00ddbb1eadf1cb0190fa8175edb7ede62"}, + {file = "zope.interface-7.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baf95683cde5bc7d0e12d8e7588a3eb754d7c4fa714548adcd96bdf90169f021"}, + {file = "zope.interface-7.2-cp38-cp38-win_amd64.whl", hash = "sha256:7dc5016e0133c1a1ec212fc87a4f7e7e562054549a99c73c8896fa3a9e80cbc7"}, + {file = "zope.interface-7.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:7bd449c306ba006c65799ea7912adbbfed071089461a19091a228998b82b1fdb"}, + {file = "zope.interface-7.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a19a6cc9c6ce4b1e7e3d319a473cf0ee989cbbe2b39201d7c19e214d2dfb80c7"}, + {file = "zope.interface-7.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:72cd1790b48c16db85d51fbbd12d20949d7339ad84fd971427cf00d990c1f137"}, + {file = "zope.interface-7.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:52e446f9955195440e787596dccd1411f543743c359eeb26e9b2c02b077b0519"}, + {file = "zope.interface-7.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2ad9913fd858274db8dd867012ebe544ef18d218f6f7d1e3c3e6d98000f14b75"}, + {file = "zope.interface-7.2-cp39-cp39-win_amd64.whl", hash = "sha256:1090c60116b3da3bfdd0c03406e2f14a1ff53e5771aebe33fec1edc0a350175d"}, + {file = "zope.interface-7.2.tar.gz", hash = "sha256:8b49f1a3d1ee4cdaf5b32d2e738362c7f5e40ac8b46dd7d1a65e82a4872728fe"}, +] + +[package.dependencies] +setuptools = "*" + +[package.extras] +docs = ["Sphinx", "furo", "repoze.sphinx.autointerface"] +test = ["coverage[toml]", "zope.event", "zope.testing"] +testing = ["coverage[toml]", "zope.event", "zope.testing"] + +[metadata] +lock-version = "2.1" +python-versions = ">=3.8" +content-hash = "6dc18425e69014e0863dc396d91475c6419e6e27b357735689eb11f55edc316a" diff --git a/pyproject.toml b/pyproject.toml new file mode 100755 index 0000000..d71fe19 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,20 @@ +[project] +name = "toical" +version = "0.1.0" +description = "" +authors = [ + {name = "Your Name",email = "you@example.com"} +] +readme = "README.md" +requires-python = ">=3.8" +dependencies = [ + "icalendar (>=6.1.3,<7.0.0)", + "datetime (>=5.5,<6.0)", + "pytz (>=2025.2,<2026.0)", + "requests (>=2.32.3,<3.0.0)" +] + + +[build-system] +requires = ["poetry-core>=2.0.0,<3.0.0"] +build-backend = "poetry.core.masonry.api" diff --git a/toical.py b/toical.py new file mode 100755 index 0000000..48747eb --- /dev/null +++ b/toical.py @@ -0,0 +1,87 @@ +import requests +from icalendar import Calendar, Event +from datetime import datetime +from collections import defaultdict + +# Send multiple POST requests to fetch schedule data +url = "https://www.eventeny.com/funcs/event/event-page-elements-2022-03-06.php" +base_form_data = { + "post_type": "fetch_schedule_list", + "biz_id": "233997", + "event_id": "13462", + "tag_filter": "", + "track_filter": "50949|50946|50955|50947|50954|50950|53643|53642|50956|50948", + "embed": "1" +} + +# why are the values here stupid and arbitrary? why does only the first request use date_group_setup 0? +# why do we send three requests when the time limits for the first clearly span the whole event? +# what are they hiding? who the hell knows? i just scraped it off the sakuracon site +requests_data = [ + {**base_form_data, "date_group_setup": "0", "time_limit_min": "1744948800", "time_limit_max": "1745207999"}, + {**base_form_data, "date_group_setup": "1", "time_limit_min": "1745035200", "time_limit_max": "1745121599"}, + {**base_form_data, "date_group_setup": "1", "time_limit_min": "1745121600", "time_limit_max": "1745207999"} +] + +all_events = [] +all_tracks = {} + +for form_data in requests_data: + response = requests.post(url, data=form_data) + response.raise_for_status() + data = response.json() + all_events.extend(data['list']) + all_tracks.update(data['track']) + +# Group events by track_title +calendars = defaultdict(Calendar) + +for event in all_events: + track_id = event.get("tag_id") + track_title = all_tracks.get(track_id) + + cal = calendars[track_title] + + # Initialize calendar if empty + if not cal.get("prodid"): + cal.add("prodid", f"-//{track_title} Schedule - SC//") + cal.add("version", "2.0") + cal.add("X-WR-CALNAME", track_title) + + # Retrieve description for event + form_data = { + "post_type": "fetch_schedule_item", + "biz_id": "233997", + "event_id": "13462", + "ticket_cross_sell": "no", + "id": event["id"], + } + response = requests.post(url, data=form_data) + response.raise_for_status() + data = response.json() + desc = data["schedule"]["overview"]["description"] + tags_str = "" + + # Create event + ical_event = Event() + ical_event.add("summary", event['title']) + ical_event.add("dtstart", datetime.fromisoformat(event['start_calendar'])) + ical_event.add("dtend", datetime.fromisoformat(event['end_calendar'])) + ical_event.add("location", event['location'].replace('&', '&')) + ical_event.add("status", event['status'].upper()) + + # Add hashtags as categories if available + if 'hashtag_title' in event and event['hashtag_title']: + ical_event.add('categories', event['hashtag_title']) + tags_str = f"Tags: {','.join(event['hashtag_title'])}\n" + + ical_event.add("description", f"Track: {track_title}\n{tags_str}\n{desc}") + + cal.add_component(ical_event) + +# Write out each calendar to a .ics file +for track_title, cal in calendars.items(): + filename = f"calendar_{track_title.replace(' ', '_')}.ics" + with open(filename, 'wb') as f: + f.write(cal.to_ical()) + print(f"Wrote: {filename}")